xref: /haiku/headers/posix/arch/mipsel/signal.h (revision 1c09002cbee8e797a0f8bbfc5678dfadd39ee1a7)
1 /*
2  * Copyright 2008-2010 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 /*
10  * Architecture-specific structure passed to signal handlers
11  */
12 
13 #if __MIPSEL__
14 struct vregs
15 {
16 	ulong r0;
17 	/* r1, r2, ... */
18 
19 #warning MIPSEL: fixme
20 };
21 #endif /* __MIPSEL__ */
22 
23 
24 #endif /* _ARCH_SIGNAL_H_ */
25