模擬實現進程建立函數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
相關文章
相關標籤/搜索