chickadee » srfi-18 » make-condition-variable

make-condition-variable #!optional nameprocedure

Returns a new empty condition variable. The optional name is an arbitrary Scheme object which identifies the condition variable (useful for debugging); it defaults to an unspecified value. The condition variable's specific field is set to an unspecified value.

    (make-condition-variable)  ==>  ''an empty condition variable''