Thread 如何使用软件来保护数据结构
大家好, 我开始阅读有关线程的内容,并开始了解线程使用软件而进程使用硬件来保护数据结构......但是有人可以更详细地阐述这个事实吗?
Hii ALL,
I started reading about Threads and came to know about Thread uses software and Process uses hardware to protect datastructure...But could anyone elaborate this fact more??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Linux 中,线程和线程都是线程。进程是相同的,只是它们之间共享虚拟内存的区别。线程在进程的地址空间中运行。线程也有一个关联的task_struct。
In Linux both threads & process are same, only difference between them sharing of Virtual memory. Threads run in address space of process. Threads also have a associated task_struct.