Changeset 3c45353 in mainline
- Timestamp:
- 2018-08-25T21:34:54Z (6 years ago)
- Children:
- 231b3fd
- Parents:
- 72df613
- Location:
- uspace/lib/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/time.c
r72df613 r3c45353 717 717 } 718 718 719 void udelay( usec_t time)719 void udelay(sysarg_t time) 720 720 { 721 721 (void) __SYSCALL1(SYS_THREAD_UDELAY, (sysarg_t) time); -
uspace/lib/c/include/time.h
r72df613 r3c45353 152 152 extern errno_t time_local2str(const time_t, char *); 153 153 154 extern void udelay( usec_t);154 extern void udelay(sysarg_t); 155 155 156 156 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.