12 lines
196 B
C
Raw Normal View History

2022-10-26 11:36:15 +02:00
#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