diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-10-31 19:19:08 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-10-31 19:19:08 +0000 |
commit | 75241b15dbe979163b1cc95df6a5c16e30ddde7b (patch) | |
tree | 0b3d11e5730816f974785eb6ff133500620cac8f /libgloss/syscall.h | |
parent | 747e5773319f36839927dd67005ceab836ede48d (diff) | |
download | cygnal-75241b15dbe979163b1cc95df6a5c16e30ddde7b.tar.gz cygnal-75241b15dbe979163b1cc95df6a5c16e30ddde7b.tar.bz2 cygnal-75241b15dbe979163b1cc95df6a5c16e30ddde7b.zip |
2001-10-31 David Howells <dhowells@redhat.com>
* syscall.h: Added SYS_times, SYS_gettimeofday, SYS_link values.
* mn10300/times.c: Renamed "times" to "_times" so that it can be
referenced by newlib.
* mn10300/cygmon.c: New file.
* mn10300/crt0_redboot.S: Ditto.
* mn10300/crt0_cygmon.S: Ditto.
* mn10300/Makefile.in: Added RedBoot and Cygmon support.
* mn10300/configure.in: Changed to allow for future
evaluation boards to be added.
* mn10300/configure: Regenerated.
Diffstat (limited to 'libgloss/syscall.h')
-rw-r--r-- | libgloss/syscall.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/libgloss/syscall.h b/libgloss/syscall.h index da785625a..665cfe892 100644 --- a/libgloss/syscall.h +++ b/libgloss/syscall.h @@ -38,10 +38,12 @@ #define SYS_argv 13 /* These are extras added for one reason or another. */ -#define SYS_chdir 14 -#define SYS_stat 15 -#define SYS_chmod 16 -#define SYS_utime 17 -#define SYS_time 18 - +#define SYS_chdir 14 +#define SYS_stat 15 +#define SYS_chmod 16 +#define SYS_utime 17 +#define SYS_time 18 +#define SYS_gettimeofday 19 +#define SYS_times 20 +#define SYS_link 21 #endif |