diff options
author | Scott Anderson <ascent12@hotmail.com> | 2017-07-09 22:23:54 +1200 |
---|---|---|
committer | Scott Anderson <ascent12@hotmail.com> | 2017-07-09 22:23:54 +1200 |
commit | 3779ef802ddf89067e1588077ed8c72b4674565a (patch) | |
tree | 9ddd98fb283d6f7769cdf875f960f9721f6ed440 /include/session | |
parent | 2f2c8205d841a98649e9697ad5ba8cfe430ffaa7 (diff) |
Stop remembering the drm fd in child.
Diffstat (limited to 'include/session')
-rw-r--r-- | include/session/direct-ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/session/direct-ipc.h b/include/session/direct-ipc.h index a8d9469d..96504f04 100644 --- a/include/session/direct-ipc.h +++ b/include/session/direct-ipc.h @@ -4,8 +4,8 @@ #include <sys/types.h> int direct_ipc_open(int sock, const char *path); -void direct_ipc_setmaster(int sock); -void direct_ipc_dropmaster(int sock); +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_start(pid_t *pid_out); |