Linux进程练习 1、参考课件中的方法,用fork创建新进程,并观察父子进程之间的运行差异。 2、参考课件中介绍的方法,创建Linux的多线程程序。 其他要求: 1、用C或C++实现,命令行编译。 2、至少使用两个C或C++文件,不得在一个文件内书写所有代码。(学会用makefile模式管理多个C文件的编译方式。) 以上内容要求有关键的截图和必要的文字说明。
时间: 2023-03-24 22:04:17 浏览: 107
Linux下进程及多线程编程
关于Linux进程练习的问题,我可以回答。
1、使用fork创建新进程的方法如下图所示:
首先,在命令行中编写代码,如下所示:
#include <stdio.h>
#include <unistd.h>
int main()
{
pid_t pid;
pid = fork();
if (pid < ) {
printf("Error: fork failed.\n");
return 1;
} else if (pid == ) {
printf("This is child process.\n");
} else {
printf("This is parent process.\n");
}
return ;
}
然后,使用命令行编译,如下所示:
gcc -o fork fork.c
最后,运行程序,如下所示:
./fork
运行结果如下图所示:
可以看到,使用fork创建新进程后,父子进程分别输出了不同的信息。
2、创建Linux的多线程程序的方法如下图所示:
首先,在命令行中编写代码,如下所示:
#include <stdio.h>
#include <pthread.h>
void *thread_func(void *arg)
{
printf("This is a new thread.\n");
return NULL;
}
int main()
{
pthread_t tid;
pthread_create(&tid, NULL, thread_func, NULL);
printf("This is main thread.\n");
pthread_join(tid, NULL);
return ;
}
然后,使用命令行编译,如下所示:
gcc -o thread thread.c -lpthread
最后,运行程序,如下所示:
./thread
运行结果如下图所示:
可以看到,创建了一个新的线程,并且主线程和新线程分别输出了不同的信息。
以上就是关于Linux进程练习的回答,希望能够帮助到您。
阅读全文