Changeset 4c87a7f5 in mainline
- Timestamp:
- 2011-06-22T01:14:45Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7d0b76d
- Parents:
- dddc3d9
- Location:
- uspace/lib/posix/sys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/sys/stat.h
rdddc3d9 r4c87a7f5 40 40 #include "types.h" 41 41 #include "../time.h" 42 #include <ipc/devmap.h>43 #include <task.h>44 45 typedef devmap_handle_t posix_dev_t;46 typedef task_id_t posix_pid_t;47 42 48 43 /* values are the same as on Linux */ … … 139 134 140 135 #ifndef LIBPOSIX_INTERNAL 141 #define dev_t posix_dev_t142 #define pid_t posix_pid_t143 136 #define fstat posix_fstat 144 137 #define lstat posix_lstat -
uspace/lib/posix/sys/types.h
rdddc3d9 r4c87a7f5 46 46 typedef unsigned int posix_blksize_t; 47 47 typedef unsigned int posix_blkcnt_t; 48 typedef uint64_t posix_pid_t; 49 typedef sysarg_t posix_dev_t; 48 50 49 51 #ifndef LIBPOSIX_INTERNAL … … 55 57 #define blksize_t posix_blksize_t 56 58 #define blkcnt_t posix_blkcnt_t 59 #define pid_t posix_pid_t 60 #define dev_t posix_dev_t 57 61 #endif 58 62
Note:
See TracChangeset
for help on using the changeset viewer.