2006-08-30 Kazunori Asayama <asayama@sm.sony.co.jp>

* spu/syscalls.c: Add a new argument to _send_to_ppe() to
        specify signal code.
        * spu/jsre.h: Update declaration of _send_to_ppe().
        * spu/close.c: Replace _send_to_ppe_0x2101() by _send_to_ppe().
        * spu/fstat.c: Ditto.
        * spu/lseek.c: Ditto.
        * spu/open.c: Ditto.
        * spu/read.c: Ditto.
        * spu/stat.c: Ditto.
        * spu/unlink.c: Ditto.
        * spu/write.c: Ditto.
This commit is contained in:
Jeff Johnston
2006-08-30 19:06:48 +00:00
parent 6f91c38b89
commit 52d82ba527
11 changed files with 29 additions and 11 deletions

View File

@@ -30,14 +30,16 @@ POSSIBILITY OF SUCH DAMAGE.
Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
*/
#include "jsre.h"
void
_send_to_ppe_0x2101 (int opcode, void *data)
_send_to_ppe (unsigned int signalcode, unsigned int opcode, void *data)
{
unsigned int combined = ( ( opcode<<24 )&0xff000000 ) | ( ( unsigned int )data & 0x00ffffff );
vector unsigned int stopfunc = {
0x00002101, /* stop 0x2101 */
signalcode, /* stop */
(unsigned int) combined,
0x4020007f, /* nop */
0x35000000 /* bi $0 */