lib/sema.txt
author mjsousa
Wed, 05 Feb 2014 20:04:50 +0000
changeset 855 a3109442e166
parent 251 5e7457efbb8f
permissions -rw-r--r--
Start using the called_fb_declaration annotation when generating C code from FB calls in ST.
(*
 * (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