lib/sema.txt
author laurent
Fri, 03 Feb 2012 00:09:52 +0100
changeset 399 55b074ea7255
parent 251 5e7457efbb8f
permissions -rw-r--r--
Fix bug with functions like LEN and TRUNC that have overloaded return type for same inputs type
(*
 * (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