func unlock()
Relinquishes a previously acquired lock.
以前獲得されたロックを放棄します。
Availability 有効性
Technology
func lock()
An application protects a critical section of code by requiring a thread to acquire a lock before executing the code. Once the critical section is completed, the thread relinquishes the lock by invoking unlock()
.
アプリケーションは、コードのクリティカルセクションの保護を、コードの実行の前にロックを獲得するためにあるスレッドを要請することによって行います。一旦クリティカルセクションが完了するならば、スレッドはロックをunlock()
発動することで放棄します。
func unlock()