Promotes all threads waiting on a specified monitor to a ready state.
#include <prmon.h> PRStatus PR_NotifyAll(PRMonitor *mon);
The function has the following parameter:
monPRMonitor. The monitor object referenced must be one for which the calling thread currently holds the lock.The function returns one of the following values:
PR_SUCCESS.PR_FAILURE.A call to PR_NotifyAll causes all of the threads waiting on the monitor to be scheduled to be promoted to a ready state. If no threads are waiting, the operation is no-op.
PR_NotifyAll should be used with some care. The expense of scheduling multiple threads increases dramatically as the number of threads increases.