等待锁定 meaning in English
wait lock
Examples
- The default number of milliseconds that a transaction will wait for a lock
某个事务将等待锁定的默认毫秒数。 - In turn , uses atomic variables to maintain the queue of threads waiting for the lock
使用原子变量来维护等待锁定的线程队列。 - A reference to a waiting queue , which contains the threads that are waiting for notification of a change in the state of the locked object
对等待队列的引用,它包含正在等待锁定对象状态变化通知的线程。 - Because threads do not ever have to wait for a lock sometimes called a mutex or critical section , depending on the terminology of your threading platform
无锁定算法,因为线程不必再等待锁定(有时称为互斥或关键部分,这取决于线程平台的术语) 。 - But as anyone who s written a concurrent application can tell you , simply dividing up the work across multiple threads isn t enough to achieve good hardware utilization - you must ensure that your threads spend most of their time actually doing work , rather than waiting for more work to do , or waiting for locks on shared data structures
但是正如任何编写并发应用程序的人可以告诉你的那样,要获得好的硬件利用率,只是简单地在多个线程中分割工作是不够的,还必须确保线程确实大部分时间都在工作,而不是在等待更多的工作,或等待锁定共享数据结构。