lib/sema.txt
author mjsousa
Fri, 26 Dec 2014 12:43:13 +0000
changeset 973 f86d5d6bb04e
parent 251 5e7457efbb8f
permissions -rw-r--r--
Do constant propagation of configuration/resource variables, taking into account scope of variables.
(*
 * (c) 2011 Edouard Tisserant
 *
 * Fake semaphore support, for non preemptive implementation.
 *
 *)


FUNCTION_BLOCK SEMA
  VAR_INPUT
    CLAIM : BOOL;
    RELEASE : BOOL;
  END_VAR
  VAR_OUTPUT
    BUSY : BOOL;
  END_VAR
  VAR
    Q_INTERNAL : BOOL;
  END_VAR

  Q_INTERNAL := CLAIM OR ( Q_INTERNAL AND (NOT RELEASE));
  BUSY := Q_INTERNAL;

END_FUNCTION_BLOCK