英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

deadlock    音标拼音: [d'ɛdl,ɑk]
n. 僵局,停顿
vt.
vi. (使)停顿,(使)相持不下

僵局,停顿(使)停顿,(使)相持不下

deadlock
死锁

deadlock
死锁

deadlock
n 1: a situation in which no progress can be made or no
advancement is possible; "reached an impasse on the
negotiations" [synonym: {deadlock}, {dead end}, {impasse},
{stalemate}, {standstill}]

deadlock \dead"lock`\, n.
1. A lock which is not self-latching, but requires a key to
throw the bolt forward.
[1913 Webster]

2. A counteraction of things, which produces an entire
stoppage; a complete obstruction of action.
[1913 Webster]

Things are at a deadlock. --London
Times.
[1913 Webster]

The Board is much more likely to be at a deadlock of
two to two. --The Century.
[1913 Webster]

83 Moby Thesaurus words for "deadlock":
Tweedledum and Tweedledee, arrest, bell, blind alley, block, box,
brake, bring to, bring up short, cessation, check, checkmate,
condition, corner, cul-de-sac, cut short, cutoff, dam, dead end,
dead heat, dead set, dead stand, dead stop, dead-end street,
dilemma, draw, draw rein, dying down, ebb, ebbing, end, endgame,
ending, even break, extremity, fair shake, final whistle, freeze,
full stop, grinding halt, gun, halt, hole, impasse, knotted score,
lock, lockout, neck-and-neck race, photo finish, plight, posture,
predicament, pull up, put paid to, quandary, sit-down strike,
situation, slow down, stalemate, stall, stand, stand-off, standoff,
standstill, state, stay, stem, stem the tide, stillstand, stop,
stop cold, stop dead, stop short, stoppage, strike, stymie,
subsidence, the same, tie, walkout, wane, waning, work stoppage

A situation where two or more
{processes} are unable to proceed because each is waiting for
one of the others to do something.

A common example is a program waiting for output from a server
while the server is waiting for more input from the
controlling program before outputting anything. It is
reported that this particular flavour of deadlock is sometimes
called a "starvation deadlock", though the term "starvation"
is more properly used for situations where a program can never
run simply because it never gets high enough priority.

Another common flavour is "constipation", in which each
process is trying to send stuff to the other but all buffers
are full because nobody is reading anything). See {deadly
embrace}.

Another example, common in {database} programming, is two
processes that are sharing some resource (e.g. read access to
a {table}) but then both decide to wait for exclusive
(e.g. write) access.

The term "deadly embrace" is mostly synonymous, though usually
used only when exactly two processes are involved. This is
the more popular term in Europe, while {deadlock} predominates
in the United States.

Compare: {livelock}. See also {safety property}, {liveness
property}.

[{Jargon File}]

(2000-07-26)

deadlock: n. 1. [techspeak] A situation wherein two or more processes are unable
to proceed because each is waiting for one of the others to do something.
A common example is a program communicating to a server, which may find
itself waiting for output from the server before sending anything more to
it, while the server is similarly waiting for more input from the
controlling program before outputting anything. (It is reported that this
particular flavor of deadlock is sometimes called a starvation deadlock, though the term starvation is more properly used for situations
where a program can never run simply because it never gets high enough
priority. Another common flavor is constipation, in which each process is trying
to send stuff to the other but all buffers are full because nobody is
reading anything.) See deadly embrace.


请选择你想看的字典辞典:
单词字典翻译
deadlock查看 deadlock 在百度字典中的解释百度英翻中〔查看〕
deadlock查看 deadlock 在Google字典中的解释Google英翻中〔查看〕
deadlock查看 deadlock 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • multithreading - What is a deadlock? - Stack Overflow
    A deadlock is a state of a system in which no single process thread is capable of executing an action As mentioned by others, a deadlock is typically the result of a situation where each process thread wishes to acquire a lock to a resource that is already locked by another (or even the same) process thread
  • What is a deadlock in a database? - Stack Overflow
    What is a deadlock A deadlock happens when two concurrent transactions cannot make progress because each one waits for the other to release a lock, as illustrated in the following diagram Because both transactions are in the lock acquisition phase, neither one releases a lock prior to acquiring the next one Recovering from a deadlock situation
  • Whats the difference between deadlock and livelock?
    DEADLOCK Deadlock is a condition in which a task waits indefinitely for conditions that can never be satisfied - task claims exclusive control over shared resources - task holds resources while waiting for other resources to be released - tasks cannot be forced to relinguish resources - a circular waiting condition exists
  • multithreading - Simple Deadlock Examples - Stack Overflow
    * It is a program that purposely causes deadlock between two threads that * are both trying to acquire locks for the same two resources * To avoid this sort of deadlock when locking multiple resources, all threads * should always acquire their locks in the same order
  • What are common reasons for deadlocks? - Stack Overflow
    The classic deadlock scenario is A is holding lock X and wants to acquire lock Y, while B is holding lock Y and wants to acquire lock X Since neither can complete what they are trying to do both will end up waiting forever (unless timeouts are used) In this case a deadlock can be avoided if A and B acquire the locks in the same order
  • Difference between a race and a dead lock - Stack Overflow
    A deadlock occurs when two threads each lock a different variable at the same time and then try to lock the variable that the other thread already locked As a result, each thread stops executing and waits for the other thread to release the variable
  • How to catch SqlException caused by deadlock? - Stack Overflow
    A deadlock detected by the database will effectively rollback the transaction in which you were running (if any), while the connection is kept open in NET Retrying that operation (in that same connection), means it will be executed in a transactionless context and this could lead to data corruption
  • Deadlocks in Oracle - Stack Overflow
    Oracle detects a deadlock automatically, throws ORA-00060: deadlock detected while waiting for resource, and rolls back one of the transactions involved in the deadlock which Oracle decided as the victim The previous successful transactions are not rolled back
  • c# - await vs Task. Wait - Deadlock? - Stack Overflow
    On my blog, I go into the details of how blocking in asynchronous code causes deadlock await will asynchronously wait until the task completes This means the current method is "paused" (its state is captured) and the method returns an incomplete task to its caller
  • Difference between racearound condition and deadlock
    A deadlock is when two (or more) threads are blocking each other Usually this has something to do with threads trying to acquire shared resources For example if threads T1 and T2 need to acquire both resources A and B in order to do their work





中文字典-英文字典  2005-2009