summaryrefslogtreecommitdiff
path: root/include/arch/x86_64/linux/eventfd.h
blob: de0187e7bb808458cfa7376d35467a2e1a20bd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _LINUX_EVENTFD_H
#define _LINUX_EVENTFD_H

#include <linux/fcntl.h>

#define EFD_SEMAPHORE (1 << 0)
#define EFD_CLOEXEC   O_CLOEXEC
#define EFD_NONBLOCK  O_NONBLOCK

#endif /* _LINUX_EVENTFD_H */