- 9
- 0
- 约5.06万字
- 约 13页
- 2017-06-23 发布于河南
- 举报
用Pro C开发多线程应用程序(国外英语资料)
用Pro C开发多线程应用程序(国外英语资料)
One. What is multithreading?
In a multithreaded application, threads run in shared address space. Threads are lightweight, sub - processes that execute within the process and share code segments and data segments, but have their own programs, counters, registers, and stacks. Global and static variables are shared between threads, therefore usually need some kind of mutual exclusion mechanism used in the program to manage threads access to these variables, the mutex Mutexes is used to ensure the integrity of data synchronization device.
For more discussion of mutex, see
原创力文档

文档评论(0)