socketpair()函數是一個創建一對相互連接的套接字的系統調用,用于在本地進程間進行通信。以下是C語言中socketpair()的常見用法:
int sockets[2];
if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockets) == -1) {
perror("socketpair");
exit(1);
}
// sockets[0] 和 sockets[1] 是一對互相連接的套接字
pid_t child_pid = fork();
if (child_pid == -1) {
perror("fork");
exit(1);
}
if (child_pid == 0) {
// 子進程
close(sockets[0]); // 關閉子進程不需要的套接字
// 在 sockets[1] 上進行進程間通信
// ...
} else {
// 父進程
close(sockets[1]); // 關閉父進程不需要的套接字
// 在 sockets[0] 上進行進程間通信
// ...
}
void* thread_function(void* arg) {
int* sockets = (int*)arg;
close(sockets[0]); // 關閉不需要的套接字
// 在 sockets[1] 上進行線程間通信
// ...
return NULL;
}
int main() {
pthread_t thread_id;
if (pthread_create(&thread_id, NULL, thread_function, sockets) != 0) {
perror("pthread_create");
exit(1);
}
close(sockets[1]); // 關閉不需要的套接字
// 在 sockets[0] 上進行線程間通信
// ...
pthread_join(thread_id, NULL);
return 0;
}
需要注意的是,socketpair()函數是UNIX特有的,不適用于所有操作系統。在Windows系統上,可以使用其他機制來進行進程間通信,如命名管道、共享內存等。