aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/liburing/src/int_flags.h
blob: 548dd1094cdfe8709e065cbdb98e5b84cc6b9d27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: MIT */
#ifndef LIBURING_INT_FLAGS
#define LIBURING_INT_FLAGS

enum {
	INT_FLAG_REG_RING	= 1,
	INT_FLAG_REG_REG_RING	= 2,
	INT_FLAG_APP_MEM	= 4,
};

#endif