blob: c40e356842561c8269cda7c84ac7e2cffb1c90e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <features.h>
struct k_sigaction {
void (*handler)(int);
unsigned long flags;
void (*restorer)(void);
unsigned mask[2];
};
hidden void __restore_rt();
#define __restore __restore_rt
|