Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
arch
mips64
ksigaction.h
pretty
plain
permalink
blame
history
•
10 lines
•
168 B
1
#include <features.h>
2
3
struct k_sigaction {
4
	unsigned flags;
5
	void (*handler)(int);
6
	unsigned long mask[2];
7
	void *unused;
8
};
9
10
hidden void __restore(), __restore_rt();