2009-05-02 22:30:28 +04:00
|
|
|
/*
|
2010-11-04 00:46:47 +03:00
|
|
|
* Copyright 2008-2010 Haiku Inc. All Rights Reserved.
|
2009-05-02 22:30:28 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _ARCH_SIGNAL_H_
|
|
|
|
#define _ARCH_SIGNAL_H_
|
|
|
|
|
2010-11-04 00:46:47 +03:00
|
|
|
|
2009-05-02 22:30:28 +04:00
|
|
|
/*
|
|
|
|
* Architecture-specific structure passed to signal handlers
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if __MIPSEL__
|
|
|
|
struct vregs
|
|
|
|
{
|
|
|
|
ulong r0;
|
|
|
|
/* r1, r2, ... */
|
|
|
|
|
|
|
|
#warning MIPSEL: fixme
|
|
|
|
};
|
|
|
|
#endif /* __MIPSEL__ */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _ARCH_SIGNAL_H_ */
|