摘要: fork.c #include <stdio.h> #include <stdlib.h> #include <unistd.h> void main(){ int pid; pid = fork(); printf("pid is %d\n", pid); exit(0); } vfork.c # 阅读全文
posted @ 2016-02-27 20:58 盛夏夜 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 进程概念 进程是一个具有一定独立功能的程序的一次运行活动。也就是运行起来的程序。 进程特点 动态性、并发性、独立性、异步性 进程状态 就绪态、执行态、阻塞态 进程ID 进程ID:标识进程的唯一数字 父进程ID:PPID 启动进程ID:UID 进程互斥 进程互斥是指当有若干个进程都要使用某一个资源时, 阅读全文
posted @ 2016-02-27 19:53 盛夏夜 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 时间类型 Coordinated Universal Time(UTC):世界标准时间,也就是格林威治时间(Greenwich Mean Time, GMT)。 Calendar Time:日历时间,是用一个标准时间点(1970年1月1日0点)到此时所经过的秒数来表示的时间。 #include <s 阅读全文
posted @ 2016-02-27 19:16 盛夏夜 阅读(215) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> void main(){ //打开文件 FILE *fp; fp = fopen("test.txt", "r+"); if(fp == NULL){ printf("File open fail!\n"); } //写入数据 char wbuf[10] = "5 阅读全文
posted @ 2016-02-27 15:32 盛夏夜 阅读(190) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> void main(){ //打开文件 int fd; fd = open("./test.c 阅读全文
posted @ 2016-02-27 10:54 盛夏夜 阅读(365) 评论(0) 推荐(0) 编辑