View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

Home Keywords

Keyword unlock

Description

Used to unlock a declared mutex.

Example

mutex m;

lock m;
    println "Critical section.";
unlock m;