blob: 857b31b5983e210709685af56fcd9214026c3117 [file] [log] [blame]
Christopher Ferris7ac54f52024-08-07 21:07:12 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
7#ifndef __LINUX_NTSYNC_H
8#define __LINUX_NTSYNC_H
9#include <linux/types.h>
10struct ntsync_sem_args {
11 __u32 sem;
12 __u32 count;
13 __u32 max;
14};
15#define NTSYNC_IOC_CREATE_SEM _IOWR('N', 0x80, struct ntsync_sem_args)
16#define NTSYNC_IOC_SEM_POST _IOWR('N', 0x81, __u32)
17#endif