aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux-x86/include/sys/signal.h
blob: 02ea369ddf4ecc5c15a269811ecd3bf87a278527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _ARCH_SIGNAL_H
#define _ARCH_SIGNAL_H

#include <stdbool.h>
#include <stdlib.h>
#include <ucontext.h>

#ifdef CONFIG_X86_32
# include "signal_32.h"
#else
# include "signal_64.h"
#endif

struct compilation_unit;

bool signal_from_native(void *ctx);
struct compilation_unit *get_signal_source_cu(void *ctx);

#endif