- 1、本文档共20页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
线程thread
* 线程(Thread) 举例:从fork()看线程 main() { int pid = 0; printf(“the parent is going to fork\n”); if ((pid = fork()) != 0) printf(“I am the father of %d\n”, pid); else printf(“I am the child\n”); } Single-threaded vs Multi-threaded(单线程 vs 多线程) 线程间共享内存空间 线程相对于进程的优势 Responsiveness (e.g. Web应用前端) Resource Sharing (e.g. shared variable) Economy (e.g. save memory) Utilization of MP Architectures 用户级线程(User Threads) 线程管理(创建、资源申请、调度、通信等)由user-level threads library“一手包办”,不靠OS内核 举例,Three primary thread libraries: Java threads POSIX pthreads Win32 threads 内核级(Kernel Threads) 线程管理由操作系统内核的kernel-level threads实现 举例 Windows XP/2000 Solaris 多线程(Multithreading)模型 Many-to-One One-to-One Many-to-Many Many-to-One模型 这种模型将多个user-level threads映射至同一个kernel thread。构成一组对应关系。 操作系统运行环境里,可以存在很多组。 举例 Linux GNU Portable Threads,即GNU pth 凡是不支持线程的OS内核,都可以用这个模型 Many-to-One模型 One-to-One模型 这种模型将每个user-level thread映射至一个kernel thread 举例 Windows NT/XP/2000 Solaris 9 and later One-to-one模型 Many-to-Many模型 这种模型将m个user-level threads映射至n个kernel threads 操作系统既可以一对一支持线程,又可以让一个kernel level thread兼顾多个用户级线程 OS内核相对较复杂 举例 Solaris prior to version 9 Windows NT/2000 with the ThreadFiber package Many-to-Many模型 Two-level模型 与m:n的Many-to-Many模型相似,突出了n=1的情形 举例 IRIX HP-UX Tru64 UNIX Solaris 8 and earlier Two-level模型 线程管理相对于进程管理,带来的新问题 fork()操作和exec()操作的语义有变 撤销线程(Thread cancellation) Signal handling Thread pools Thread specific data Scheduler activations ………… fork()操作和exec()操作的语义 某个线程调用了fork(),那么,这次fork()操作仅仅复制调用线程呢?还是复制(与调用线程同属于一个task的)所有线程? 撤销线程(Thread Cancellation) 语义:在线程正常完成操作前,终止它 至少有“撤销”语义: 异步(Asynchrous)撤销:terminates the target thread immediately 延后(Deferred)撤销:allows the target thread to periodically check if it should be cancelled END *
文档评论(0)