1221

来源:互联网 发布:listview怎么绑定数据 编辑:程序博客网 时间:2024/05/06 00:45
#include <stdio.h>
#include <pthread.h>
#include <unistd.h> /*getpid()*/


void *create(void *arg)
{
    printf("New thread .... \n");
    printf("This thread's id is %u  \n", (unsigned int)pthread_self());
    printf("The process pid is %d  \n",getpid());
    return (void *)0;



int main(int argc,char *argv[])
{
    pthread_t tid;
    int error;


    printf("Main thread is starting ... \n");


    error = pthread_create(&tid, NULL, create, NULL);


    if(error)
    {
        printf("thread is not created ... \n");
        return -1;
    }
    printf("The main process's pid is %d  \n",getpid());
    sleep(1);
    return 0;
}
0 0
原创粉丝点击