美文网首页
python基础 -- fork函数

python基础 -- fork函数

作者: fada492daf5b | 来源:发表于2018-01-25 12:17 被阅读0次

1. 作用

调用函数,创建一个进程,返回两次, 类似linux c函数fork

2. 操作

# 进程与多进程

# fork 只能在Unix类的操作系统运行

import os

print('Process {} start...'.format(os.getpid())) 
pid = os.fork() 
# fork 一个进程,fork函数返回两次
# 子进程返回0
# 父进程返回子进程ID
if pid == 0:
    print('I am child process {} and my parent is {}.'
        .format(os.getpid(), os.getppid())) # 子进程执行区
else:
    print('I {} just created a child process {}.'
        .format(os.getpid(), pid)) # 父进程执行区
   

相关文章

网友评论

      本文标题:python基础 -- fork函数

      本文链接:https://www.haomeiwen.com/subject/kvqvaxtx.html