2 * Copyright (C) 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef _COMPAT_PRCTL_H
9 #define _COMPAT_PRCTL_H
12 #include <sys/prctl.h>
15 int lttng_prctl(int option
, unsigned long arg2
, unsigned long arg3
,
16 unsigned long arg4
, unsigned long arg5
)
18 return prctl(option
, arg2
, arg3
, arg4
, arg5
);
25 #endif /* PR_SET_NAME */
28 int lttng_prctl(int option
, unsigned long arg2
, unsigned long arg3
,
29 unsigned long arg4
, unsigned long arg5
)
34 #endif /* __linux__ */
36 #endif /* _COMPAT_PRCTL_H */
This page took 0.049962 seconds and 4 git commands to generate.