Difference between revisions of "Notifyall"
From Mesham
Jump to navigationJump to search (Created page with '== Overview == This notifyall() function will notify all other process, all these target process can wait on or test for a notification. This is non-blocking and will continue a…') |
m (1 revision imported) |
(No difference)
|
Latest revision as of 15:45, 15 April 2019
Overview
This notifyall() function will notify all other process, all these target process can wait on or test for a notification. This is non-blocking and will continue as soon as the function is called.
- Pass: Nothing
- Returns: Nothing
Example
#include <parallel> function void main() { proc 1 { notifyall(); }; };
Since: Version 1.00