Re: Signals, messages and exceptions

2006-12-01 Thread Thomas Bushnell BSG
On Fri, 2006-12-01 at 15:03 -0300, Leonardo Pereira wrote: > I think he isn't, Mach Exceptions are just another aproach of signals, > they were used on Mach_US and Lites to implement Unix-compatible > signals. The unique 'problem' is that Mach Exceptions handle not only > process but also threads,

Re: Signals, messages and exceptions

2006-12-01 Thread Leonardo Pereira
I think he isn't, Mach Exceptions are just another aproach of signals, they were used on Mach_US and Lites to implement Unix-compatible signals. The unique 'problem' is that Mach Exceptions handle not only process but also threads, so, this is a very fundamental difference. I also dunno why Mach

Re: Signals, messages and exceptions

2001-07-07 Thread Igor Khavkine
On Sat, Jul 07, 2001 at 09:04:56PM -0400, Roland McGrath wrote: > > Yes, that is what I was getting at. Signals and interrupts are > > a very old concept, and I've always thought that exceptions are > > a more evolved version of the same concept. So it would make > > sense to use a more versatile

Re: Signals, messages and exceptions

2001-07-07 Thread Igor Khavkine
On Sat, Jul 07, 2001 at 05:40:03PM -0400, Roland McGrath wrote: > Yes, sorry for the short response. That was before the coffee. > > I don't really know how to answer your message, since it wasn't quite clear > what the question was. Were you suggesting that Hurd signals should work > by sendin

Re: Signals, messages and exceptions

2001-07-07 Thread Roland McGrath
Yes, sorry for the short response. That was before the coffee. I don't really know how to answer your message, since it wasn't quite clear what the question was. Were you suggesting that Hurd signals should work by sending exception_raise messages to task or thread exception ports? __

Re: Signals, messages and exceptions

2001-07-07 Thread Igor Khavkine
On Sat, Jul 07, 2001 at 02:57:09PM -0400, Roland McGrath wrote: > I think you are confused about what Mach exceptions are. This is also possible. The Mach kernel interfaces docs are a bit thin on the subject. Could you enlighten me? Thanks. Igor ___

Re: Signals, messages and exceptions

2001-07-07 Thread Roland McGrath
I think you are confused about what Mach exceptions are. ___ Bug-hurd mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-hurd

Signals, messages and exceptions

2001-07-07 Thread Igor Khavkine
I've been looking through the glibc code that handles signals for Hurd. At the same time I'm writing up a some docs on that so someone else won't have to do it again. What I'm surprised by is that signals are passed between processes using simple RPC messages. Mach has an exception facility for t