Changeset 46c20c8 in mainline for uspace/lib/c/include/sys/time.h
- Timestamp:
- 2010-11-26T20:08:10Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45df59a
- Parents:
- fb150d78 (diff), ffdd2b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
uspace/lib/c/include/sys/time.h (moved) (moved from uspace/lib/libc/include/sys/time.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/time.h
rfb150d78 r46c20c8 31 31 */ 32 32 /** @file 33 */ 33 */ 34 34 35 35 #ifndef LIBC_SYS_TIME_H_ … … 43 43 typedef long suseconds_t; 44 44 45 typedef uint32_t useconds_t; 46 typedef uint32_t mseconds_t; 47 45 48 struct timeval { 46 time_t tv_sec; /* seconds */47 suseconds_t tv_usec; /* microseconds */49 time_t tv_sec; /* seconds */ 50 suseconds_t tv_usec; /* microseconds */ 48 51 }; 49 52 50 53 struct timezone { 51 int tz_minuteswest;/* minutes W of Greenwich */52 int tz_dsttime;/* type of dst correction */54 int tz_minuteswest; /* minutes W of Greenwich */ 55 int tz_dsttime; /* type of dst correction */ 53 56 }; 54 57
Note:
See TracChangeset
for help on using the changeset viewer.
