2008-07-17 Ken Werner <ken.werner@de.ibm.com>
* spu/syscalls.c: Check and set the errno value.
This commit is contained in:
parent
eb19b8f95a
commit
7f48e8a8b3
@ -1,3 +1,7 @@
|
|||||||
|
2008-07-17 Ken Werner <ken.werner@de.ibm.com>
|
||||||
|
|
||||||
|
* spu/syscalls.c: Check and set the errno value.
|
||||||
|
|
||||||
2008-06-17 Ken Werner <ken.werner@de.ibm.com>
|
2008-06-17 Ken Werner <ken.werner@de.ibm.com>
|
||||||
|
|
||||||
* spu/Makefile.in: Add new file.
|
* spu/Makefile.in: Add new file.
|
||||||
|
@ -29,6 +29,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
|
Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
|
||||||
*/
|
*/
|
||||||
|
#include <spu_intrinsics.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include "jsre.h"
|
#include "jsre.h"
|
||||||
|
|
||||||
@ -36,6 +37,7 @@ int
|
|||||||
__send_to_ppe (unsigned int signalcode, unsigned int opcode, void *data)
|
__send_to_ppe (unsigned int signalcode, unsigned int opcode, void *data)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
int newerrno;
|
||||||
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 = {
|
||||||
@ -48,7 +50,13 @@ __send_to_ppe (unsigned int signalcode, unsigned int opcode, void *data)
|
|||||||
void (*f) (void) = (void *) &stopfunc;
|
void (*f) (void) = (void *) &stopfunc;
|
||||||
asm ("sync");
|
asm ("sync");
|
||||||
f ();
|
f ();
|
||||||
errno = ((unsigned int *) data)[3];
|
newerrno = ((unsigned int *) data)[3];
|
||||||
|
/*
|
||||||
|
* Note: branchless code to conditionally set errno using
|
||||||
|
* spu_cmpeq and spu_sel used more space than the following.
|
||||||
|
*/
|
||||||
|
if (newerrno)
|
||||||
|
errno = newerrno;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return the rc code stored in slot 0.
|
* Return the rc code stored in slot 0.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user