2007-01-19 Kazunori Asayama <asayama@sm.sony.co.jp>
* spu/syscalls.c: Replace vector with __vector.
This commit is contained in:
parent
8212f7686e
commit
bdc75f5bf1
@ -1,3 +1,7 @@
|
|||||||
|
2007-01-19 Kazunori Asayama <asayama@sm.sony.co.jp>
|
||||||
|
|
||||||
|
* spu/syscalls.c: Replace vector with __vector.
|
||||||
|
|
||||||
2007-01-09 Ben Elliston <bje@au.ibm.com>
|
2007-01-09 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
|
* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
|
||||||
|
@ -29,7 +29,6 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
|
Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
|
||||||
*/
|
*/
|
||||||
#include <spu_intrinsics.h>
|
|
||||||
#include "jsre.h"
|
#include "jsre.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -38,7 +37,7 @@ _send_to_ppe (unsigned int signalcode, unsigned int opcode, void *data)
|
|||||||
|
|
||||||
unsigned int combined = ( ( opcode<<24 )&0xff000000 ) | ( ( unsigned int )data & 0x00ffffff );
|
unsigned int combined = ( ( opcode<<24 )&0xff000000 ) | ( ( unsigned int )data & 0x00ffffff );
|
||||||
|
|
||||||
vector unsigned int stopfunc = {
|
__vector unsigned int stopfunc = {
|
||||||
signalcode, /* stop */
|
signalcode, /* stop */
|
||||||
(unsigned int) combined,
|
(unsigned int) combined,
|
||||||
0x4020007f, /* nop */
|
0x4020007f, /* nop */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user