Unix高级编程
Cheery2018
努力努力再努力,加油!
展开
-
Linux进程间的通信方式
http://blog.csdn.net/ta893115871/article/details/7506403转载 2015-06-01 20:34:32 · 290 阅读 · 0 评论 -
linux实验二---fork()的用法,产生子进程
include#define MASKVALH 0x0000ff00#define MASKVALL 0x000000ff#define HBYTE(x) ((x & MASKVALH)>0)#define LBYTE(x) (x & MASKVALL)main(){ int getpid(),getppid(),pid,status; puts("Befo原创 2015-06-01 20:26:52 · 1131 阅读 · 0 评论 -
linux实验四---管道
#define MSGSIZE 25main(){int pfd[2],pid;static charmsgsend[MSGSIZE+1]=”Hi!Kid.\n”;static charmsgrev[MSGSIZE+1];if(pipe(pfd)==-1){perror(“pipe”);exit(1);}if((pid=fork())==0)原创 2015-06-01 20:32:34 · 967 阅读 · 0 评论