您的位置:首页 > 运维架构 > Linux

linux程序和进程入门了解

2012-11-21 15:44 225 查看
   程序存放在磁盘上,存储在某个磁盘上的可执行文件,使用6个exec函数中的一个由内核将进程读入存储器.

   UNIX为每个进程分配一个唯一的数字标识,称为进车个ID,进程ID总是非负数.

   #include<stdio.h>
#include<sys/stat.h>
#include<unistd.h>

int main()
{
int pid = getpid();
printf("the process of this program's pid is %d\n", pid);
return 0;
}

ustcqi@ubuntu:~/workplace/linux/APUE/Demo1$ gcc -o getPID getPID.c

ustcqi@ubuntu:~/workplace/linux/APUE/Demo1$ ./getPID

the process of this program's pid is 6091
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: