Partially Causing an Event

The partial cause statement sets the happened state of an event without reactivating any processes that are waiting on the event. The waiting processes cannot reactivate until a later statement causes the event. In addition, any new processes that attempt to wait on the event will immediately continue because the event is already HAPPENED.

The following ALGOL statement partially causes the event EVNT:

SET (EVNT);

The partial cause statement is not available in COBOL.