"Frank Saar" <[EMAIL PROTECTED]> writes:

> 1. Is there anything like events ?
>     I wonder how to implement an event mechanism without using volatile
> variables and continous testing of those with while();

I'm not sure I understand the question. Exactly what are you trying to
do?

Between processes, you send messages (rpc). Within a process, you'll
either use threads, and condition variables and the like for
signaling, or a select loop, in which case plain variables (no
volatile stuff needed) can be used for signaling.

/Niels


_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to