APUE:高级进程间通信

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了APUE:高级进程间通信相关的知识,希望对你有一定的参考价值。

这一章核心内容:使用 UNIX 域套接字传送文件描述符。

 

/* Create two new sockets, of type TYPE in domain DOMAIN and using
   protocol PROTOCOL, which are connected to each other, and put file
   descriptors for them in FDS[0] and FDS[1].  If PROTOCOL is zero,
   one will be chosen automatically.  Returns 0 on success, -1 for errors.  */
extern int socketpair (int __domain, int __type, int __protocol,
		       int __fds[2]) __THROW;

 

文件描述符的传送以来 cmsghdr 结构体。具体直接看书上源码。

以上是关于APUE:高级进程间通信的主要内容,如果未能解决你的问题,请参考以下文章

APUE读书笔记-15进程内部通信(5)

进程间通信---管道

linux 进程间通信的3种高级方式及优缺点

高级IO中socketpair实现进程间通信以及重定向

Unix环境高级编程(十六)进程间通信

Linux C语言高级编程之使用消息队列实现进程间通信!重点内容!!!