Releases a reference to a semaphore.

Use this VI in conjunction with the other Semaphore VIs to implement a semaphore in LabVIEW.


icon

Inputs/Outputs

  • cdlrn.png semaphore

    semaphore is a reference to a semaphore.

  • cbool.png force destroy? (F)

    force destroy? specifies whether to destroy the semaphore.

    If FALSE (default), LabVIEW destroys the semaphore only if no other references to the semaphore exist. If TRUE, LabVIEW releases all references to the semaphore and destroys the semaphore.

  • cerrcodeclst.png error in (no error)

    error in describes error conditions that occur before this node runs. With the following exception, this input provides standard error in functionality.

    This node runs normally even if an error occurred before this node runs.

  • istr.png semaphore name

    semaphore name is the name of the semaphore.

  • ierrcodeclst.png error out

    error out contains error information. This output provides standard error out functionality.

  • All Acquire Semaphore VIs that are currently waiting on this reference to the semaphore time out immediately and return an error. This does not affect any Acquire Semaphore VIs that are waiting on a different reference to the same semaphore. However, if force destroy? is TRUE, all Acquire Semaphore VIs, including those that are waiting on a different reference to the semaphore, time out immediately and return an error.

    Examples

    Refer to the following example files included with LabVIEW.

    • labview\examples\Synchronization\Semaphore\Simple Semaphore.vi