模拟实现进程建立函数process_create

利用fork( )、wait( )等函数模拟实现进程建立函数process_create函数 #include<stdio.h> #include<unistd.h> #include<stdlib.h> typedef void *(*FUNC)(void *); typedef struct Arg{ int reg; } Arg; void* func(void *paramet
相关文章
相关标签/搜索