a0DisposeCondition()

Destroys the condition variable cond.


Syntax

a0tError a0DisposeCondition(
a0tCondition *cond);

Arguments

Namerd/wrDescription
cond read Condition to be destroyed.

Description

This function destroys the condition variable specified by cond. The space for destroying condition variable is not freed.

Return Values

If an error condition occurs, it returns the error code, otherwise it returns A0ErrOk. Possible values are as follows:
Error CodeDescription
A0Err...Some error occurred.
A0ErrOkSuccessful completion.

See Also

a0NewCondition() a0SignalCondition() a0BroadcastCondition() a0WaitCondition() a0TimedWaitCondition()