91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

socketpair實現進程通信

發布時間:2020-07-23 06:55:50 來源:網絡 閱讀:1032 作者:小止1995 欄目:編程語言

pipe用來創建管道,但是單個管道只能單向通信,一端用于讀,而另一端用于寫。如果要實現進程雙向通信,必須創建一對管道。具體實現忽略。而socketpair則可以用來創建雙向通信的管道。取決于底層實現,打開的還是一個文件,fd[0],fd[1],管道中f[0]讀端,f[1]寫端。

#include <sys/types.h>   

#include <sys/socket.h>

int socketpair(int domain, int type, int protocol, int sv[2]);

domain:選用AF_LOCAL;

type:SOCK_STREAM

protocol:默認0

socketpair實現進程通信

#include<stdio.h>                                                                      
#include<stdlib.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<unistd.h>
#include<errno.h>
#include<string.h>
int main()
{
    int fd[2];
    if(socketpair(AF_LOCAL,SOCK_STREAM,0,fd)<0){
        perror("sockpair");
        return 1;
    }
    pid_t id=fork();
    if(id<0){
        perror("fork");
        return 2;
    }
    else if(id==0){
        close(fd[0]);
        char buf[1024];
        while(1)
                {
            ssize_t _s;
            strcpy(buf,"hello bit");
            write(fd[1],buf,strlen(buf));
            _s=read(fd[1],buf,sizeof(buf)-1);
            buf[_s]='\0';
            printf("father->child%s\n",buf);
        }
        close(fd[1]);
    }
    else{
        close(fd[1]);
        char buf[1024];
        while(1)
        {
            ssize_t _s=read(fd[0],buf,sizeof(buf)-1);
            if(_s>0){
                buf[_s]='\0';
                printf("child -> father %s\n",buf);
            }
            strcpy(buf,"hello world");
            write(fd[0],buf,strlen(buf));
        }              
        close(fd[0]);
        //wait child
    }
    return 0;

運行截圖:

socketpair實現進程通信

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蚌埠市| 淳安县| 沂南县| 马龙县| 镶黄旗| 克什克腾旗| 锦州市| 宁晋县| 凌云县| 怀安县| 巴南区| 永嘉县| 阳山县| 察哈| 莱州市| 台湾省| 汝南县| 富川| 红桥区| 田东县| 夏河县| 方城县| 东源县| 瓮安县| 大宁县| 平乡县| 德兴市| 芦溪县| 沂南县| 正镶白旗| 桃园市| 白水县| 砚山县| 黄石市| 金乡县| 濮阳市| 锦屏县| 连云港市| 苏尼特左旗| 青海省| 郎溪县|