forked from vitasdk/newlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2007-02-21 Patrick Mansfield <[email protected]>
* libgloss/spu/gettimeofday.c: New file which adds SPU gettimeofday. * libgloss/spu/jsre.h: Remove time, add gettimeofday. * libgloss/spu/Makefile.in: Ditto.
- Loading branch information
Showing
4 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2007-02-21 Patrick Mansfield <[email protected]> | ||
|
||
* libgloss/spu/gettimeofday.c: New file which adds SPU gettimeofday. | ||
* libgloss/spu/jsre.h: Remove time, add gettimeofday. | ||
* libgloss/spu/Makefile.in: Ditto. | ||
|
||
2007-02-21 Hans-Peter Nilsson <[email protected]> | ||
|
||
* cris/crt0.S: Use jump, not ba, to skip the interrupt table. Use | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,7 @@ Author: Andreas Neukoetter ([email protected]) | |
|
||
#define JSRE_CLOSE 2 | ||
#define JSRE_FSTAT 4 | ||
#define JSRE_GETTIMEOFDAY 7 | ||
#define JSRE_LSEEK 9 | ||
#define JSRE_OPEN 15 | ||
#define JSRE_READ 16 | ||
|
@@ -65,7 +66,6 @@ Author: Andreas Neukoetter ([email protected]) | |
#define JSRE_FTRUNCATE 28 | ||
#define JSRE_ACCESS 29 | ||
#define JSRE_DUP 30 | ||
#define JSRE_TIME 31 | ||
|
||
typedef struct | ||
{ | ||
|
@@ -137,9 +137,11 @@ typedef struct | |
|
||
typedef struct | ||
{ | ||
unsigned int time; | ||
unsigned int tv; | ||
unsigned int pad0[ 3 ]; | ||
} syscall_time_t; | ||
unsigned int tz; | ||
unsigned int pad1[ 3 ]; | ||
} syscall_gettimeofday_t; | ||
|
||
typedef struct | ||
{ | ||
|