[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]

Signals may be generated from both tasks and system interrupts with the
Signal() function.

    VOID Signal( struct Task *task, ULONG signalSet );

For example Signal(tc,mask) would signal the task with the specified mask
signals.  More than one signal can be specified in the mask.  The
following example code illustrates Wait() and Signal().

     signals.c