]> granicus.if.org Git - strace/blob - sigevent.h
rtnl_neightbl: always decode struct ndt_config and struct ndt_stats
[strace] / sigevent.h
1 /*
2  * Copyright (c) 2016-2018 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #ifndef STRACE_SIGEVENT_H
9 # define STRACE_SIGEVENT_H
10
11 typedef struct {
12         union {
13                 int sival_int;
14                 unsigned long sival_ptr;
15         } sigev_value;
16         int sigev_signo;
17         int sigev_notify;
18         union {
19                 int tid;
20                 struct {
21                         unsigned long function;
22                         unsigned long attribute;
23                 } sigev_thread;
24         } sigev_un;
25 } struct_sigevent;
26
27 #endif /* !STRACE_SIGEVENT_H */