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