xref: /haiku/headers/posix/arch/mipsel/signal.h (revision 893988af824e65e49e55f517b157db8386e8002b)
1 /*
2  * Copyright 2008, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _ARCH_SIGNAL_H_
6 #define _ARCH_SIGNAL_H_
7 
8 /*
9  * Architecture-specific structure passed to signal handlers
10  */
11 
12 #if __MIPSEL__
13 struct vregs
14 {
15 	ulong r0;
16 	/* r1, r2, ... */
17 
18 #warning MIPSEL: fixme
19 };
20 #endif /* __MIPSEL__ */
21 
22 
23 #endif /* _ARCH_SIGNAL_H_ */
24