lib/sema.txt
author mjsousa
Sun, 06 Jul 2014 11:39:20 +0100
changeset 905 31224f8cac32
parent 251 5e7457efbb8f
permissions -rw-r--r--
Move standard FBs to a pre-converted C file, insted of converting them every time along with the IEC source.
(*
 * (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