Notifyall

From Mesham
Revision as of 11:15, 19 October 2016 by Polas (talk | contribs) (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…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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