摘要:
常用的进程间通信方式有这几种A.传统的进程间通信方式无名管道(pipe)、有名管道(fifo)和信号(signal)B.System v IPC对象共享内存(share memory)、消息队列(message queue)和信号灯(semaphore)C.BSD套接字(socket)一、无名管道(... 阅读全文
摘要:
1、父子进程通信范例 父子进程通信范例,shm.c源代码如下:#include #include #include #include #include #include #define SIZE 1024int main(){int shmid ;char *shmaddr ;struct shmi... 阅读全文