
并发 and 线程
文章平均质量分 84
高效能人生
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mutex Objects
Mutex Objects A mutex object is a synchronization object whose state is set to signaled when it is not owned by any thread, and nonsignaled when it is owned. Only one thread at a time can own a原创 2015-07-08 22:28:13 · 724 阅读 · 0 评论 -
Critical Section Object
Critical Section Object From MSDN Critical Section Objects A critical section object provides synchronization similar to that provided by a mutex object, except that a critical section can原创 2015-07-08 18:45:54 · 989 阅读 · 0 评论 -
Condition Variables
Condition Variables Condition variables are synchronization primitives that enable threads to wait until a particular condition occurs. Condition variables are user-mode objects that cannot be share原创 2015-07-09 14:00:55 · 950 阅读 · 0 评论 -
Semaphore Objects
Semaphore Objects A semaphore object is a synchronization object that maintains a count between zero and a specified maximum value. The count is decremented each time a thread completes a wait原创 2015-07-09 08:02:48 · 924 阅读 · 0 评论 -
Interlocked Variable Access
Applications must synchronize access to variables that are shared by multiple threads. Applications must also ensure that operations on these variables are performed atomically (performed in their en原创 2015-07-09 10:56:46 · 761 阅读 · 0 评论 -
Proactor 学习1
Proactor An Object Behavioral Pattern for Demultiplexingand Dispatching Handlers for Asynchronous Events Douglas C. Schmidt Known Uses The following are some widely documented uses of the原创 2015-08-16 22:59:31 · 700 阅读 · 0 评论 -
Proactor 学习2
Comparing Two High-Performance I/O Design Patterns by Alexander Libman with Vladimir Gilbourd Reactor and Proactor: two I/O multiplexing approaches In general, I/O multiplexing mechanisms r原创 2015-08-16 23:32:19 · 589 阅读 · 0 评论