Changeset 59f799b in mainline for uspace/lib/posix/unistd.c
- Timestamp:
- 2011-06-16T19:42:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 39a7bfa
- Parents:
- 491e1ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/unistd.c
r491e1ee r59f799b 51 51 52 52 /** 53 * 54 * @return 55 */ 56 posix_uid_t posix_getuid(void) 57 { 58 // TODO 59 not_implemented(); 60 } 61 62 /** 63 * 64 * @return 65 */ 66 posix_gid_t posix_getgid(void) 67 { 68 // TODO 69 not_implemented(); 70 } 71 72 /** 53 73 * 54 74 * @param path … … 62 82 } 63 83 84 /** 85 * 86 * @param name 87 * @return 88 */ 89 long posix_sysconf(int name) 90 { 91 // TODO 92 not_implemented(); 93 } 94 64 95 /** @} 65 96 */
Note:
See TracChangeset
for help on using the changeset viewer.