move riscv64 register index constants to signal.h
[musl.git] / arch / mips / ksigaction.h
blob63fdfab00b01fc6d780107bacfbfbd386a9b6c81
1 #include <features.h>
3 struct k_sigaction {
4 unsigned flags;
5 void (*handler)(int);
6 unsigned long mask[4];
7 /* The following field is past the end of the structure the
8 * kernel will read or write, and exists only to avoid having
9 * mips-specific preprocessor conditionals in sigaction.c. */
10 void (*restorer)();
13 hidden void __restore(), __restore_rt();