diff options
| author | wdenk <wdenk> | 2002-11-19 11:04:11 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2002-11-19 11:04:11 +0000 | 
| commit | c7de829c796978e519984df2f1c8cfcf921a39a4 (patch) | |
| tree | 43e42aa9a09f5265783c1622a5cea080471ef50e /include/syscall.h | |
| parent | 2262cfeef91458b01a1bfe3812ccbbfdf8b82807 (diff) | |
| download | olio-uboot-2014.01-c7de829c796978e519984df2f1c8cfcf921a39a4.tar.xz olio-uboot-2014.01-c7de829c796978e519984df2f1c8cfcf921a39a4.zip | |
* Patch by Thomas Frieden, 13 Nov 2002:
  Add code for AmigaOne board
  (preliminary merge to U-Boot, still WIP)
* Patch by Jon Diekema, 12 Nov 2002:
  - Adding URL for IEEE OUI lookup
  - Making the autoboot #defines dependent on CONFIG_AUTOBOOT_KEYED
    being defined.
  - In the CONFIG_EXTRA_ENV_SETTINGS #define, the root-on-initrd and
    root-on-nfs macros are designed to switch how the default boot
    method gets defined.
Diffstat (limited to 'include/syscall.h')
| -rw-r--r-- | include/syscall.h | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/include/syscall.h b/include/syscall.h index f80d550ee..9b9be0dd5 100644 --- a/include/syscall.h +++ b/include/syscall.h @@ -15,10 +15,13 @@ void mon_install_hdlr(int, interrupt_handler_t*, void*);  void mon_free_hdlr(int);  void *mon_malloc(size_t);  void mon_free(void*); +void mon_udelay(unsigned long); +unsigned long mon_get_timer(unsigned long);  #endif    /* ifndef __ASSEMBLY__ */ -#define NR_SYSCALLS            9        /* number of syscalls */ +#define NR_SYSCALLS            11        /* number of syscalls */ +  /*   * Make sure these functions are in the same order as they @@ -33,5 +36,7 @@ void mon_free(void*);  #define SYSCALL_FREE_HDLR      6  #define SYSCALL_MALLOC         7  #define SYSCALL_FREE           8 +#define SYSCALL_UDELAY         9 +#define SYSCALL_GET_TIMER     10  #endif |