This HTML5 document contains 52 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

Namespace Prefixes

PrefixIRI
dcthttp://purl.org/dc/terms/
dbohttp://dbpedia.org/ontology/
foafhttp://xmlns.com/foaf/0.1/
n11http://effbot.org/zone/
n10https://global.dbpedia.org/id/
dbthttp://dbpedia.org/resource/Template:
dbpedia-ukhttp://uk.dbpedia.org/resource/
rdfshttp://www.w3.org/2000/01/rdf-schema#
freebasehttp://rdf.freebase.com/ns/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
owlhttp://www.w3.org/2002/07/owl#
dbpedia-zhhttp://zh.dbpedia.org/resource/
wikipedia-enhttp://en.wikipedia.org/wiki/
dbphttp://dbpedia.org/property/
n7https://web.archive.org/web/20201101025814/http:/effbot.org/zone/
dbchttp://dbpedia.org/resource/Category:
provhttp://www.w3.org/ns/prov#
xsdhhttp://www.w3.org/2001/XMLSchema#
n8http://msdn.microsoft.com/en-us/library/
wikidatahttp://www.wikidata.org/entity/
goldhttp://purl.org/linguistics/gold/
dbrhttp://dbpedia.org/resource/

Statements

Subject Item
dbr:Features_new_to_Windows_XP
dbo:wikiPageWikiLink
dbr:Event_(synchronization_primitive)
Subject Item
dbr:Futures_and_promises
dbo:wikiPageWikiLink
dbr:Event_(synchronization_primitive)
Subject Item
dbr:Real-time_computing
dbo:wikiPageWikiLink
dbr:Event_(synchronization_primitive)
Subject Item
dbr:Asynchronous_method_invocation
dbo:wikiPageWikiLink
dbr:Event_(synchronization_primitive)
Subject Item
dbr:Event
dbo:wikiPageWikiLink
dbr:Event_(synchronization_primitive)
dbo:wikiPageDisambiguates
dbr:Event_(synchronization_primitive)
Subject Item
dbr:Event_(synchronization_primitive)
rdf:type
dbo:Organisation
rdfs:label
事件 (同步原语) Event (synchronization primitive) Подія (Windows)
rdfs:comment
In computer science, an event (also called event semaphore) is a type of synchronization mechanism that is used to indicate to waiting processes when a particular condition has become true. An event is an abstract data type with a boolean state and the following operations: * wait - when executed, causes the suspension of the executing process until the state of the event is set to true. If the state is already set to true before wait was called, wait has no effect. * set - sets the event's state to true, release all waiting processes. * clear - sets the event's state to false. Подія (об'єкт події, event object) в операційній системі Windows — об'єкт для синхронізації виконання процесів (потоків), який може знаходитися у двох станах (сигнальному та несигнальному). Застосунки (прикладні програми) можуть використовувати об'єкти подій у різних ситуаціях, щоб повідомити потік про виникнення потрібної події. В загальному випадку, об’єкти подій використовують для сигналізації очікуючим потокам про досягнення певних умов виконання програми. 事件作为一种同步原语,是计算机科学中的一种同步机制,用来指示等待中的进程特定条件已经变为真。 事件对象一般具有下述操作: * wait - 执行中的线程被挂起直到事件为真。如果执行wait时事件已为真,则空操作。 * set - 设置事件状态为真,所有等待此事件的进程变为可调度。 * clear - 设置事件状态为假。 事件类似于管程中的条件变量。
dct:subject
dbc:Terms_in_science_and_technology dbc:Concurrency_control dbc:Events_(computing)
dbo:wikiPageID
20472593
dbo:wikiPageRevisionID
1086992562
dbo:wikiPageWikiLink
dbr:Critical_section dbc:Terms_in_science_and_technology dbr:Mutual_exclusion dbr:Microsoft_Windows dbc:Concurrency_control dbr:Computer_science dbr:Futures_and_promises dbc:Events_(computing) dbr:Monitor_(synchronization) dbr:Synchronization_(computer_science) dbr:Programmable_interval_timer dbr:Abstract_data_type
dbo:wikiPageExternalLink
n8:ms682655(VS.85).aspx n7:thread-synchronization.htm n11:thread-synchronization.htm
owl:sameAs
n10:4jTqz dbpedia-uk:Подія_(Windows) freebase:m.04zvsx5 wikidata:Q5416692 dbpedia-zh:事件_(同步原语)
dbp:wikiPageUsesTemplate
dbt:Reflist dbt:Webarchive dbt:Compsci-stub dbt:Clarify
dbp:date
2020-11-01
dbp:url
n7:thread-synchronization.htm
dbo:abstract
事件作为一种同步原语,是计算机科学中的一种同步机制,用来指示等待中的进程特定条件已经变为真。 事件对象一般具有下述操作: * wait - 执行中的线程被挂起直到事件为真。如果执行wait时事件已为真,则空操作。 * set - 设置事件状态为真,所有等待此事件的进程变为可调度。 * clear - 设置事件状态为假。 事件类似于管程中的条件变量。 In computer science, an event (also called event semaphore) is a type of synchronization mechanism that is used to indicate to waiting processes when a particular condition has become true. An event is an abstract data type with a boolean state and the following operations: * wait - when executed, causes the suspension of the executing process until the state of the event is set to true. If the state is already set to true before wait was called, wait has no effect. * set - sets the event's state to true, release all waiting processes. * clear - sets the event's state to false. Different implementations of events may provide different subsets of these possible operations; for example, the implementation provided by Microsoft Windows provides the operations wait (WaitForObject and related functions), set (SetEvent), and clear (ResetEvent). An option that may be specified during creation of the event object changes the behaviour of SetEvent so that only a single thread is released and the state is automatically returned to false after that thread is released. Events short of reset function, that is, those which can be completed only once, are known as futures. Monitors are, on the other hand, more general since they combine completion signaling with mutex and do not let the producer and consumer to execute simultaneously in the monitor making it an event+critical section. Подія (об'єкт події, event object) в операційній системі Windows — об'єкт для синхронізації виконання процесів (потоків), який може знаходитися у двох станах (сигнальному та несигнальному). Застосунки (прикладні програми) можуть використовувати об'єкти подій у різних ситуаціях, щоб повідомити потік про виникнення потрібної події. В загальному випадку, об’єкти подій використовують для сигналізації очікуючим потокам про досягнення певних умов виконання програми.
gold:hypernym
dbr:Mechanism
prov:wasDerivedFrom
wikipedia-en:Event_(synchronization_primitive)?oldid=1086992562&ns=0
dbo:wikiPageLength
2695
foaf:isPrimaryTopicOf
wikipedia-en:Event_(synchronization_primitive)
Subject Item
wikipedia-en:Event_(synchronization_primitive)
foaf:primaryTopic
dbr:Event_(synchronization_primitive)