Test notification

From Mesham
Revision as of 15:45, 15 April 2019 by Polas (talk | contribs) (3 revisions imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Overview

This test_notification(n) function will test for a notification from process n, if such a notification is available then this is received (i.e. one need not then call wait or waitany.)

  • Pass: an Int representing the process ID to test for a notification from
  • Returns: a Bool representing whether a notification was received or not

Example

#include <parallel>

function void main() {
   proc 1 {
      notify(0);
   };

  proc 0 {
      while (!test_notification(1)) { };
   };
};

Since: Version 1.00