pid_t 定义

出处:http://www.cnblogs.com/helloBreak/archive/2011/09/27/2193492.html

 

      在创建进程过程中经常会用到定义进程号的数据类型:pid_t,大家都知道是int型,下面是我在Linux C中头文件中找到这个定义的过程:

1,/usr/include/sys/types.h中有如下定义

#include
......
#ifndef __pid_t_defined
typedef __pid_t pid_t;
# define __pid_t_defined
#endif
可以看到pid_t 其实就是__pid_t类型。

 

 

 

2.在/usr/include/bits/types.h中可以看到这样的定义
#include
#if __WORDSIZE == 32
......
# define __STD_TYPE        __extension__ typedef
#elif __WORDSIZE == 64
......
#endif
......
__STD_TYPE __PID_T_TYPE __pid_t;    /* Type of process identifications.  */
可以看出__pid_t 有被定义为 __extension__ typedef  __PID_T_TYPE类型的。

 

 

 


3.在文件/usr/include/bits/typesizes.h中可以看到这样的定义(这个文件中没有包含任何的头文件):
#define __PID_T_TYPE        __S32_TYPE
可以看出__PID_T_TYPE有被定义为__S32_TYPE这种类型。

 

 


4.在文件/usr/include/bits/types.h中我们终于找到了这样的定义:
#define    __S32_TYPE        int
由此我们终于找到了pid_t的真实定义:实际他就是  int  类型的。

 

如代码:

#include
#include "../include/apue.h"
#include

int main()
{
        pid_t    a_pid, b_pid;
        if((a_pid=fork())<0)
                printf("error!");
        else if(a_pid==0)
        {
                printf("the first child's pid=%d\n",a_pid);
                printf("b\n");
        }
        else
        {
                printf("the parent's pid=%d\n",a_pid);
                printf("a\n");
        }

        if((b_pid=fork())<0)
                printf("error!");
        else if(b_pid==0)
        {
                printf("c\n");
        }
        else
        {
                printf("e\n");
        }
        return 0;
}

 

输出:

the first child's pid=0
b
c
e
the parent's pid=12787
a
c
e

 

你可能感兴趣的:(pid_t 定义)