NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
void Release ( mutex  m)
inline

Acquire a mutex.

Release the specified mutex variable. Use this to relinquish a mutex so that it can be acquired by another task. Release should always be called after a matching call to Acquire and as soon as possible after a shared resource is no longer needed.

Parameters
mThe mutex to release.
Examples:
ex_Acquire.nxc, and ex_Release.nxc.