1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
5 * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 #ifndef _LTTNG_WRAPPER_FDTABLE_H
9 #define _LTTNG_WRAPPER_FDTABLE_H
11 #include <linux/version.h>
12 #include <linux/fdtable.h>
14 #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,7,0))
16 int lttng_iterate_fd(struct files_struct
*files
,
18 int (*cb
)(const void *, struct file
*, unsigned int),
24 * iterate_fd() appeared at commit
25 * c3c073f808b22dfae15ef8412b6f7b998644139a in the Linux kernel (first
26 * released kernel: v3.7).
28 #define lttng_iterate_fd iterate_fd
32 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
34 static inline bool lttng_close_on_exec(int fd
, const struct fdtable
*fdt
)
36 return close_on_exec(fd
, fdt
);
41 static inline bool lttng_close_on_exec(int fd
, const struct fdtable
*fdt
)
43 return FD_ISSET(fd
, fdt
->close_on_exec
);
48 #endif /* _LTTNG_WRAPPER_FDTABLE_H */
This page took 0.038358 seconds and 4 git commands to generate.