Changeset 1b20da0 in mainline for uspace/lib/posix/src/unistd.c
- Timestamp:
- 2018-02-28T17:52:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3061bc1
- Parents:
- df6ded8
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/unistd.c
rdf6ded8 r1b20da0 124 124 char *getcwd(char *buf, size_t size) 125 125 { 126 if (failed(vfs_cwd_get(buf, size))) 126 if (failed(vfs_cwd_get(buf, size))) 127 127 return NULL; 128 128 return buf; … … 174 174 /** 175 175 * Get the real group ID of the calling process. 176 * 176 * 177 177 * @return Group ID. 178 178 */ … … 309 309 /** 310 310 * Remove a link to a file. 311 * 311 * 312 312 * @param path File pathname. 313 313 * @return Zero on success, -1 otherwise. … … 334 334 /** 335 335 * Duplicate an open file descriptor. 336 * 336 * 337 337 * @param fildes File descriptor to be duplicated. 338 338 * @param fildes2 File descriptor to be paired with the same file description … … 378 378 /** 379 379 * Get configurable system variables. 380 * 380 * 381 381 * @param name Variable name. 382 382 * @return Variable value. … … 421 421 422 422 /** 423 * 423 * 424 424 * @param path 425 425 * @param name … … 434 434 435 435 /** 436 * 436 * 437 437 * @return 438 438 */ … … 445 445 446 446 /** 447 * 447 * 448 448 * @param path 449 449 * @param argv … … 458 458 459 459 /** 460 * 460 * 461 461 * @param file 462 462 * @param argv … … 471 471 472 472 /** 473 * 473 * 474 474 * @param fildes 475 475 * @return
Note:
See TracChangeset
for help on using the changeset viewer.