linux手册中对pthread_join的介绍是:The pthread_join() function waits for the thread specified by thread to terminate我很好奇这个句子是否意味着主线程和子线程分别运行,但是当子线程结束时,主线程可以结束。Child1 thread: 1结果总是在子线程
我正在Linux上编写多线程程序,希望在线程中创建一个进程,而不结束其他线程。我查看了fork/exec,但是在linux状态的第3p节中的exec手册页中:
A call to any exec function from a process with more than有没有一种方法可以在不终止其他线程的情况下生成一个新进程?