Skip to content

Commit

Permalink
Add 64bit time
Browse files Browse the repository at this point in the history
This fixes a bunch of libc-test issues:
   src/functional/clocale_mbfuncs-static.exe [timed out]
   src/functional/clocale_mbfuncs.exe [timed out]
   src/functional/ipc_msg-static.exe [status 1]
   src/functional/ipc_msg.exe [status 1]
   src/functional/ipc_sem-static.exe [status 1]
   src/functional/ipc_sem.exe [status 1]
   src/functional/ipc_shm-static.exe [status 1]
   src/functional/ipc_shm.exe [status 1]
   src/functional/pthread_mutex-static.exe [status 1]
   src/functional/pthread_mutex.exe [status 1]
   src/functional/pthread_mutex_pi-static.exe [timed out]
   src/functional/sem_init-static.exe [status 1]
   src/functional/sem_init.exe [status 1]
   src/regression/pthread_cond-smasher-static.exe [status 1]
   src/regression/pthread_cond-smasher.exe [status 1]
   src/regression/pthread_cond_wait-cancel_ignored-static.exe [status 1]
   src/regression/pthread_cond_wait-cancel_ignored.exe [status 1]
  • Loading branch information
SidManning committed Apr 28, 2020
1 parent ece78c5 commit b792b07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions linux-user/hexagon/syscall_nr.h
Expand Up @@ -104,7 +104,7 @@
#define TARGET_NR_waitid 95
#define TARGET_NR_set_tid_address 96
#define TARGET_NR_unshare 97
#define TARGET_NR_futex 98
#define TARGET_NR_futex_time64 98
#define TARGET_NR_set_robust_list 99
#define TARGET_NR_get_robust_list 100
#define TARGET_NR_nanosleep 101
Expand All @@ -118,8 +118,8 @@
#define TARGET_NR_timer_getoverrun 109
#define TARGET_NR_timer_settime 110
#define TARGET_NR_timer_delete 111
#define TARGET_NR_clock_settime 112
#define TARGET_NR_clock_gettime 113
#define TARGET_NR_clock_settime64 112
#define TARGET_NR_clock_gettime64 113
#define TARGET_NR_clock_getres 114
#define TARGET_NR_clock_nanosleep 115
#define TARGET_NR_syslog 116
Expand Down

0 comments on commit b792b07

Please sign in to comment.