進程、線程創建

1.Linux下創建進程 1 #include <stdio.h> 2 3 #include <unistd.h> 4 5 int main() 6 7 { 8 9 pid_t pid; 10 11 /* fork a child process */ 12 13 pid = fork(); 14 15 if (pid < 0) {
相關文章
相關標籤/搜索