You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
310 B
13 lines
310 B
7 years ago
|
#ifndef SESSION_DIRECT_IPC
|
||
|
#define SESSION_DIRECT_IPC
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
int direct_ipc_open(int sock, const char *path);
|
||
7 years ago
|
void direct_ipc_setmaster(int sock, int fd);
|
||
|
void direct_ipc_dropmaster(int sock, int fd);
|
||
7 years ago
|
void direct_ipc_finish(int sock, pid_t pid);
|
||
|
int direct_ipc_start(pid_t *pid_out);
|
||
|
|
||
|
#endif
|