首先看一个例子,让我们lock = threading.Lock() 时(代码第33行),程序会卡死在这里 #!/usr/bin/env python import threading,time def run1(): print("grab the first part data") # 申请锁 lock.acquire() # 将全局的变量,在此声明一下 global num num += 1 # 释放锁 lock.release() return num def run2():
一.GIL是什么 官方解释: In CPython, the global interpreter lock, or GIL, is a mutex that prevents multiple native threads from executing Python bytecodes at once. This lock is necessary mainly because CPython’s memory management is not thread-safe. (However,
#######################总结######### 主要理解 锁 生产者消费者模型 解耦用的 队列 共享资源的时候 是不安全的 所以用到后面的锁 守护进程:p.daemon = True #将该进程设置为守护进程,必须写在start之前,意思如果我的主进程代码运行结束了,你这个子进程不管运行到什么地方,都直接结束 ######### 进程其他方法import time import os from multiprocessing import Process d
进程的其他方法 进程id,进程名字,查看进程是否活着is_alive() terminate()发送结束进程的信号 import time import os from multiprocessing import Process def f1(): print('子进程pid', os.getpid()) print('父进程pid', os.getppid()) print('我是f1') if __name__ == '__main__': p = Process(target=f1)