⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sys_fork.c

📁 操作系统源代码
💻 C
字号:
#include "syslib.h"PUBLIC int sys_fork(parent, child, pid, child_base_or_shadow)int parent;			/* process doing the fork */int child;			/* which proc has been created by the fork */int pid;			/* process id assigned by MM */phys_clicks child_base_or_shadow;	/* position for child [VM386];				 * memory allocated for shadow [68000] */{/* A process has forked.  Tell the kernel. */  message m;  m.m1_i1 = parent;  m.m1_i2 = child;  m.m1_i3 = pid;  m.m1_p1 = (char *) child_base_or_shadow;  return(_taskcall(SYSTASK, SYS_FORK, &m));}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -