Program Thread 和 Process的不同点
- Thread is for execution
- Kernel level thread, physical parallelism
- Cores Divide work amount of physical cores / CPU
- Load balancing
- Data Splitting
- Which will lead to data dependency coodination and message passing
- Bad thing for multiple cores is this is hard for Testing and debugging
- User level thread only have logical parallelism
- Example, Read from user input is blocking; we have to work on it to make it logical parallelism
- Kernel level thread, physical parallelism
- Process is for resource
What is Program
Program是一个存在disk中且断电或重启不会消失可执行文件,存储在存储媒介中,以实体文件的形态存在
A program is an executable file residing on the disk (secondary storage) in a directory. It is also termed as a set of instructions stored in the secondary storage device that are intended to carry out a specific job. It is read into the primary memory and executed by the kernel.
本文来自 Abbymz 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/Abby210/article/details/51225034?utm_source=copy
或者可以称之为persistently 的文件,断电也不会消失。
What is Process ?
当program被执行之后,就变成了进程。执行者的权限和程序所需的资料都会载入到内存中,OS会给予这些内存单元一个pid。
Unit of resource ownership (allocation) and unit of protection
| text, Code of Programmer |
|---|
| Data |
| Heap |
| Stack |
一个program可以创建出很多个进程,关机或停电会死掉
Process的组成
- Permission user or kernel
- Priority
- Files
- ID
- PID
- PPID
- Folk
- UserID
- Protected access to
- Processors
- other process
- Files
- I/O
- A virtual space that holds the process image
What is Thread ?
线程称之为Lightweight Process,一个进程可以有多个线程,他们共享一片内存
- has access to the same data
- When one thread alters a data, other threads see the results
- When one thread open a file, other threads can also access that file.
Unit of dispatch or unit of execution
多线程的好处
- 开启线程要快于开启进程
- 关闭线程要快于关闭进程
- 切换线程要快于切换进程
- 线程可以相互通讯
什么叫Multithreading
The ability of an OS to support multiple, concurrent paths of execution within a single process.
Process and thread states
- Ready
- new process usually set as read state
- At this time scheduler is not pick it up yet.
- If it get picked by scheduler and running in CPU, then goes to Running State
- If it get external event, something like lock, then goes to block
- Running,
- Scheduler picked it up, and CPU is run this instruction
- If it get finished, goes to Exit states
- If it get IO interrupts, goes to ready, blocked status
- If it can not get the resource which is conflict with other process, goes to deadlock
- Scheduler picked it up, and CPU is run this instruction
- Block
- If it lock (wait able ) is release, or IO is completed, then goes to Ready
- Deadlock
- Exit (Zombie State)
- When process is finished, waiting for cleaning up
How Deadlock happen ?
- When process A has resource a, and it need resource b from process B.
- At the same time, process B need resource a from A
- Then those process gonna have deadlock due to both of them can get the resource they need.
Reference
https://slideplayer.com/slide/5219996/
想要看到更多玮哥的学习笔记、考试复习资料、面试准备资料?想要看到IBM工作时期的技术积累和国外初创公司的经验总结?
敬请关注:
Program Thread 和 Process的不同点的更多相关文章
- MS SQL错误:SQL Server failed with error code 0xc0000000 to spawn a thread to process a new login or connection. Check the SQL Server error log and the Windows event logs for information about possible related problems
早晨宁波那边的IT人员打电话告知数据库无法访问了.其实我在早晨也发现Ignite监控下的宁波的数据库服务器出现了异常,但是当时正在检查查看其它服务器发过来的各类邮件,还没等到我去确认具体情 ...
- [CareerCup] 16.1 Thread and Process 线程和进程
16.1 What's the difference between a thread and a process? 进程Process是程序执行时的一个实例.一个进程是被分配系统资源的独立单元,每个 ...
- It is not based on WSGI, and it is typically run with only one thread per process.
Tornado Web Server — Tornado 5.1.1 documentation http://www.tornadoweb.org/en/stable/
- Linux Process/Thread Creation、Linux Process Principle、sys_fork、sys_execve、glibc fork/execve api sourcecode
相关学习资料 linux内核设计与实现+原书第3版.pdf(.3章) 深入linux内核架构(中文版).pdf 深入理解linux内核中文第三版.pdf <独辟蹊径品内核Linux内核源代码导读 ...
- process vs thread
process vs thread http://blog.csdn.net/mishifangxiangdefeng/article/details/7588727 6.进程与线程的区别:系统调度是 ...
- Difference between Process and thread?
What are the differences between a process and a thread? How are they similar? How can 2 threads com ...
- 一个进程(Process)最多可以生成多少个线程(Thread)
1.进程中创建线程的限制 默认情况下,一个线程的栈要预留1M的内存空间,而一个进程中可用的内存空间只有2G,所以理论上一个进程中最多可以开2048个线程,但是内存当然不可能完全拿来作线程的栈,所以实际 ...
- 如何执行一条命令在C#里面。Process
Download source - 4.15 KB Introduction It is normal practice to open the Windows command prompt and ...
- How to Analyze Java Thread Dumps--reference
原文地址:http://architects.dzone.com/articles/how-analyze-java-thread-dumps The Performance Zone is pres ...
随机推荐
- MIP 技术进展月报:储存功能全新上线,MIP-Cache域名升级,校验更严谨
集 ** 瞬时触达用户.高转化率.炫酷闪电标.优质展现形式 ** 等诸多特性为一体的 MIP 页面吸引了众多站点进行改造.为了更好地服务于广大站长,更快地倾听站长们的声音,MIP 技术团队特推出< ...
- Python的re模块
什么是re模块,re模块有什么作用? re模块是Python提供的一个正则表达式相关的模块,主要是针对字符串进行模糊匹配,所以在字符串匹配这一功能上,re相当专业. 什么是模糊匹配? 之前的学习字符串 ...
- 代码转换为html显示
需要将代码转换为 html 使其显示好看一些,可以在这里进行装换: https://tohtml.com/ http://hilite.me/
- 已实现乐观锁功能,FreeSql.DbContext 准备起航
上回说到 FreeSql.DbContext 的规则,以及演示它的执行过程,可惜当时还不支持"乐观锁",对于更新数据来讲并不安全. FreeSql 核心库 v0.3.27 已提供乐 ...
- 如何通过get,set方法访问到父类的私有属性
刚学习继承的时候,总是会有这样的疑问. 子类继承父类时,会继承所有的非私有的属性和方法.那么在用set方法修改父类的私有属性时,怎么没有报空指针异常呢? 后来仔细想过这个问题,既然没有报空指针,那么在 ...
- Python动态绑定属性slots的使用
当我们定义了一个class,创建了一个class的实例后,我们可以给该实例绑定任何属性和方法,这就是动态语言的灵活性.废话不多说,我们看一个例子: class Person(object): pass ...
- C语言超级搞笑的代码,冷笑话我们程序员也会讲的啊!
百年修得足下点击本文 欢迎来到"C语言基础"专题,今天我们放松一天,不学习知识,来看下大千世界的千奇百怪的C语言代码,你见过那些? 1.关于随机数这回事 这个随机数有点意思哦. 2 ...
- html的<h>标签
<h>标签:标题标签. <h>标签只有六个:<h1>........<h6>
- HTML文档编写规范
(1)HTML标记是由尖括号包围的关键词.所有标记均以“<”开始,以“>”结束.结束的标记在开始名称前加上斜杠“/”.例如头部标记格式如下所示:<head> ……</he ...
- Windows -- cmd命令: ipconfig 和 nbtstat
1. ipconfig 命令格式及参数如下: 2. nbtstat 命令格式及参数如下: