- Timestamp:
- 2006-05-29T17:09:10Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 79460ae
- Parents:
- 854387b
- Location:
- libc
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/time.c
r854387b rf25b73d6 27 27 */ 28 28 29 #include < time.h>29 #include <sys/time.h> 30 30 #include <unistd.h> 31 31 #include <ipc/ipc.h> -
libc/include/async.h
r854387b rf25b73d6 4 4 #include <ipc/ipc.h> 5 5 #include <psthread.h> 6 #include < time.h>6 #include <sys/time.h> 7 7 8 8 typedef ipc_callid_t aid_t; -
libc/include/time.h
r854387b rf25b73d6 30 30 #define __libc_TIME_H__ 31 31 32 #include <types.h>33 34 #define DST_NONE 035 36 typedef sysarg_t time_t;37 typedef sysarg_t suseconds_t;38 39 struct timeval {40 time_t tv_sec; /* seconds */41 suseconds_t tv_usec; /* microseconds */42 };43 44 struct timezone {45 int tz_minuteswest; /* minutes W of Greenwich */46 int tz_dsttime; /* type of dst correction */47 };48 49 int gettimeofday(struct timeval *tv, struct timezone *tz);50 51 32 #endif
Note:
See TracChangeset
for help on using the changeset viewer.