Changeset 3190e88 in mainline
- Timestamp:
- 2011-08-18T13:38:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f55b12b
- Parents:
- 3f33b95
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/pwd.c
r3f33b95 r3190e88 51 51 52 52 /** 53 * Retrieve next broken-down entry from the user database. 54 * 53 55 * Since HelenOS doesn't have user accounts, this always returns 54 56 * the same made-up entry. 55 57 * 56 * @return 58 * @return Next user database entry or NULL if not possible. Since HelenOS 59 * doesn't have user accounts, this always returns the same made-up entry. 57 60 */ 58 61 struct posix_passwd *posix_getpwent(void) … … 67 70 68 71 /** 69 * "Rewind the user list".72 * Rewind the user list. 70 73 */ 71 74 void posix_setpwent(void) … … 86 89 * 87 90 * @param name Name of the entry. 88 * @return 91 * @return Either found entry or NULL if no such entry exists. 89 92 */ 90 93 struct posix_passwd *posix_getpwnam(const char *name) … … 103 106 * 104 107 * @param name Name of the entry. 105 * @param pwd 106 * @param buffer 107 * @param bufsize 108 * @param result 109 * @return 108 * @param pwd Original structure. 109 * @param buffer Buffer for the strings referenced from the result structure. 110 * @param bufsize Length of the buffer. 111 * @param result Where to store updated structure. 112 * @return Zero on success (either found or not found, but without an error), 113 * non-zero error number if error occured. 110 114 */ 111 115 int posix_getpwnam_r(const char *name, struct posix_passwd *pwd, … … 129 133 * 130 134 * @param uid UID of the entry. 131 * @return 135 * @return Either found entry or NULL if no such entry exists. 132 136 */ 133 137 struct posix_passwd *posix_getpwuid(posix_uid_t uid) … … 144 148 * 145 149 * @param uid UID of the entry. 146 * @param pwd 147 * @param buffer 148 * @param bufsize 149 * @param result 150 * @return 150 * @param pwd Original structure. 151 * @param buffer Buffer for the strings referenced from the result structure. 152 * @param bufsize Length of the buffer. 153 * @param result Where to store updated structure. 154 * @return Zero on success (either found or not found, but without an error), 155 * non-zero error number if error occured. 151 156 */ 152 157 int posix_getpwuid_r(posix_uid_t uid, struct posix_passwd *pwd,
Note:
See TracChangeset
for help on using the changeset viewer.