aboutsummaryrefslogtreecommitdiff
path: root/include/backend/session/direct-ipc.h
blob: c660b58fd290080ae82348a702bbea9b0c301d05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef BACKEND_SESSION_DIRECT_IPC_H
#define BACKEND_SESSION_DIRECT_IPC_H

#include <sys/types.h>

int direct_ipc_open(int sock, const char *path);
void direct_ipc_setmaster(int sock, int fd);
void direct_ipc_dropmaster(int sock, int fd);
void direct_ipc_finish(int sock, pid_t pid);
int direct_ipc_init(pid_t *pid_out);

#endif