Bordeaux-Threads

Version 0.8.8

Common Lisp threading library

Function MAKE-CONDITION-VARIABLE

Syntax:

make-condition-variable &key name => condition-variable

Arguments and values:

name -> a string or nil.
condition-variable -> a condition-variable object.

Description:

Creates a condition variable named name.

Exceptional situations:

Signals a condition of type type-error if name is neither a string nor nil.

See also:

condition-variable

Notes:

On some implementations the library exposes the native type directly, while on others there is a custom implementations using semaphores and locks.

Last updated on 2022-01-07
Published on 2022-01-07
Edit on GitHub