lock-and-unlock-methods: Lock and Unlock a Mutex

Description Usage Arguments Details Value Examples

Description

The lock and unlock functions allow a user to specify exclusive or shared access to a resource.

Usage

1
2
3
4
5
6
7

Arguments

m

a mutex.

...

options associated with the mutex being used including block which forces the mutex to return immediately after trying to acquire a lock

Details

A call to lock gives exclusive access to a resource; no other mutex may acquire a lock. A call to to lock.shared allows other mutexes to acquire a shared lock on the resource. When shared lock is called while a exclusive lock has been acquired, the shared lock will block until the exclusive lock is release. Likewise, if an exclusive lock is called while a shared lock has been acquired, the exclusive lock will block until the shared lock is released.

Value

The function returns TRUE if the lock is successfully called and FALSE otherwise

Examples

1
2
3
4
m = boost.mutex()
lock(m)
# Some code that needs to be synchronized...
unlock(m)

Example output

[1] TRUE
[1] TRUE

synchronicity documentation built on May 2, 2019, 8:58 a.m.