Commit | Line | Data |
---|---|---|
b728d87e MD |
1 | #ifndef _LTTNG_UST_H |
2 | #define _LTTNG_UST_H | |
3 | ||
a5fd9b03 | 4 | /* |
b728d87e | 5 | * Copyright (c) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
a5fd9b03 | 6 | * |
b728d87e MD |
7 | * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED |
8 | * OR IMPLIED. ANY USE IS AT YOUR OWN RISK. | |
a5fd9b03 | 9 | * |
b728d87e MD |
10 | * Permission is hereby granted to use or copy this program |
11 | * for any purpose, provided the above notices are retained on all copies. | |
12 | * Permission to modify the code and to distribute modified code is granted, | |
13 | * provided the above notices are retained, and a notice that the code was | |
14 | * modified is included with the above copyright notice. | |
a5fd9b03 MD |
15 | */ |
16 | ||
1ea2c2df MD |
17 | #ifdef __cplusplus |
18 | extern "C" { | |
19 | #endif | |
20 | ||
b728d87e MD |
21 | extern void ust_before_fork(sigset_t *save_sigset); |
22 | extern void ust_after_fork_parent(sigset_t *restore_sigset); | |
23 | extern void ust_after_fork_child(sigset_t *restore_sigset); | |
a5fd9b03 | 24 | |
1ea2c2df MD |
25 | #ifdef __cplusplus |
26 | } | |
27 | #endif | |
28 | ||
b728d87e | 29 | #endif /* _LTTNG_UST_H */ |