为什么在这种情况下,呼叫过程和新线程的PID相同?

发布于 2025-02-07 22:18:22 字数 828 浏览 1 评论 0原文

//compile and link with -pthread

#include <stdio.h>    
#include <stdlib.h>    
#include <pthread.h>         

void *pthread_function( void *ptr ){

     printf("Hello from the new thread, my pid is %d\n", getpid());

}
    
int main() {

     printf("Hello from the calling process, my pid is %d\n", getpid());
     pthread_t thread;
     int ret;

     ret = pthread_create( &thread, NULL, pthread_function, NULL);

     if (ret){

         printf("ERROR; return code from pthread_create() is %d\n", ret);

         exit(-1);    
      }

     /* Last thing that main() should do */

     pthread_exit(NULL);

}

当我运行此程序时,我得到了这个结果

呼叫过程中的你好,我的pid是4445

新线程中的你好,我的pid是4445

为什么在这种情况下,呼叫过程的PID和新线程相同?

//compile and link with -pthread

#include <stdio.h>    
#include <stdlib.h>    
#include <pthread.h>         

void *pthread_function( void *ptr ){

     printf("Hello from the new thread, my pid is %d\n", getpid());

}
    
int main() {

     printf("Hello from the calling process, my pid is %d\n", getpid());
     pthread_t thread;
     int ret;

     ret = pthread_create( &thread, NULL, pthread_function, NULL);

     if (ret){

         printf("ERROR; return code from pthread_create() is %d\n", ret);

         exit(-1);    
      }

     /* Last thing that main() should do */

     pthread_exit(NULL);

}

When I run this program, I got this result

Hello from the calling process, my pid is 4445

Hello from the new thread, my pid is 4445

Why in this case the pid of the calling process and the new thread are the same?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文