Move to kernel style SPDX license identifiers
[lttng-ust.git] / include / lttng / ust.h
index 593598b42dc27a7ba599426ad5f2567bd35b31c3..b3ae582b6bf2b765820ac47b373eea6f5b5cdc87 100644 (file)
@@ -1,39 +1,34 @@
 /*
- * Copyright (C) 2009  Pierre-Marc Fournier
- * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * SPDX-License-Identifier: MIT
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; version 2.1 of
- * the License.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ * Copyright (C) 2011-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  */
 
-#ifndef _UST_H
-#define _UST_H
+#ifndef _LTTNG_UST_H
+#define _LTTNG_UST_H
+
+#include <signal.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-typedef struct ust_fork_info {
-       sigset_t orig_sigs;
-} ust_fork_info_t;
+extern void ust_before_fork(sigset_t *save_sigset);
+extern void ust_after_fork_parent(sigset_t *restore_sigset);
+extern void ust_after_fork_child(sigset_t *restore_sigset);
+extern void ust_after_setns(void);
+extern void ust_after_unshare(void);
+extern void ust_after_setuid(void);
+extern void ust_after_setgid(void);
+extern void ust_after_seteuid(void);
+extern void ust_after_setegid(void);
+extern void ust_after_setreuid(void);
+extern void ust_after_setregid(void);
+extern void ust_after_setresuid(void);
+extern void ust_after_setresgid(void);
 
-extern void ust_before_fork(ust_fork_info_t *fork_info);
-extern void ust_after_fork_parent(ust_fork_info_t *fork_info);
-extern void ust_after_fork_child(ust_fork_info_t *fork_info);
-
-#ifdef __cplusplus 
+#ifdef __cplusplus
 }
 #endif
 
-#endif /* _UST_H */
+#endif /* _LTTNG_UST_H */
This page took 0.024204 seconds and 4 git commands to generate.