lib/sema.txt
author mjsousa
Sun, 20 Jul 2014 21:57:10 +0100
changeset 915 ec3759689efe
parent 251 5e7457efbb8f
permissions -rw-r--r--
With -Op option --> Place implicitly defined datatypes in the .h file corresponding to the POU where they are used.
(*
 * (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