Adds a client to the RCP task scheduler
#include <ultra64.h> /* ultra64.h */ void osScAddClient(OSSched *s, OSScClient *c, OSMesgQueue *msgQ);
The Scheduler shows the VI manager and receives all retrace messages. However, clients of the Scheduler can receive a copy of the retrace message by providing a message queue when they sign in. This is accomplished by calling the osScAddClient function.
One of the arguments to this call is the message queue msgQ on which you want to receive retrace messages. Make sure that the queue is big enough if you do not want to lose messages because the Scheduler does not block when the queue is full.
osCreateScheduler, osScGetTaskQ
1999/04/30 Changed format