Create a thread under linux

使用pthread_create()创建一个线程。

在linux下有几点注意的。

 

1. 编译时,加上-pthread 选项,查看man gcc

2.

 

输出结果为
main thread: pid 19475 tid 3086771904 (0xb7fc66c0)
new thread:  pid 19475 tid 3086769040 (0xb7fc5b90)

可以看到pid是一样的了。。。。 我用的是RHLE AS5吧。

这和书上说的,linux用进程模拟线程不一样了。难道改了?

 

下面是代码

#include <pthread.h>
#include <syslog.h>
#include <fcntl.h>
#include <sys/resource.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <termios.h>
#include <unistd.h>

pthread_t ntid;

void
printids(const char *s)
{
    pid_t      pid;
    pthread_t  tid;

    pid = getpid();
    tid = pthread_self();
    printf("%s pid %u tid %u (0x%x)/n", s, (unsigned int)pid,
      (unsigned int)tid, (unsigned int)tid);
}

void *
thr_fn(void *arg)
{
    printids("new thread: ");
    return((void *)0);
}

int
main(void)
{
    int     err;

    err = pthread_create(&ntid, NULL, thr_fn, NULL);
    if (err != 0)
    {
        printf("can't create thread: %s/n", strerror(err));
        return -1;
    }
    printids("main thread:");
    sleep(1);
    exit(0);
}

你可能感兴趣的:(Create a thread under linux)