Changes in / [eccd20e6:df0956ee] in mainline
- Location:
- uspace/lib/posix
- Files:
-
- 47 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/Makefile
reccd20e6 rdf0956ee 63 63 $(INCLUDE_LIBC): ../c/include 64 64 ln -s -f -n $^ $@ 65 -
uspace/lib/posix/assert.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Program assertion.32 /** @file 33 33 */ 34 34 … … 52 52 /** @} 53 53 */ 54 -
uspace/lib/posix/ctype.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Character classification.33 /** @file 34 34 */ 35 35 … … 43 43 * Checks whether character is a hexadecimal digit. 44 44 * 45 * @param c Character to inspect.46 * @return Non-zero if character match the definition, zero otherwise.45 * @param c 46 * @return 47 47 */ 48 48 int posix_isxdigit(int c) … … 56 56 * Checks whether character is a word separator. 57 57 * 58 * @param c Character to inspect.59 * @return Non-zero if character match the definition, zero otherwise.58 * @param c 59 * @return 60 60 */ 61 61 int posix_isblank(int c) … … 67 67 * Checks whether character is a control character. 68 68 * 69 * @param c Character to inspect.70 * @return Non-zero if character match the definition, zero otherwise.69 * @param c 70 * @return 71 71 */ 72 72 int posix_iscntrl(int c) … … 78 78 * Checks whether character is any printing character except space. 79 79 * 80 * @param c Character to inspect.81 * @return Non-zero if character match the definition, zero otherwise.80 * @param c 81 * @return 82 82 */ 83 83 int posix_isgraph(int c) … … 89 89 * Checks whether character is a printing character. 90 90 * 91 * @param c Character to inspect.92 * @return Non-zero if character match the definition, zero otherwise.91 * @param c 92 * @return 93 93 */ 94 94 int posix_isprint(int c) … … 100 100 * Checks whether character is a punctuation. 101 101 * 102 * @param c Character to inspect.103 * @return Non-zero if character match the definition, zero otherwise.102 * @param c 103 * @return 104 104 */ 105 105 int posix_ispunct(int c) 106 106 { 107 return !isspace(c) && !isalnum(c) && posix_isprint(c);107 return !isspace(c) && !isalnum(c); 108 108 } 109 109 … … 111 111 * Checks whether character is ASCII. (obsolete) 112 112 * 113 * @param c Character to inspect.114 * @return Non-zero if character match the definition, zero otherwise.113 * @param c 114 * @return 115 115 */ 116 116 extern int posix_isascii(int c) … … 122 122 * Converts argument to a 7-bit ASCII character. (obsolete) 123 123 * 124 * @param c Character to convert.125 * @return Coverted character.124 * @param c 125 * @return 126 126 */ 127 127 extern int posix_toascii(int c) -
uspace/lib/posix/ctype.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Character classification.33 /** @file 34 34 */ 35 35 -
uspace/lib/posix/errno.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file System error numbers.32 /** @file 33 33 */ 34 34 … … 51 51 /** @} 52 52 */ 53 -
uspace/lib/posix/errno.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file System error numbers.32 /** @file 33 33 */ 34 34 … … 325 325 /** @} 326 326 */ 327 -
uspace/lib/posix/fcntl.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file File control.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/fcntl.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file File control.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/float.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Floating type support.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/fnmatch.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Filename-matching.32 /** @file 33 33 */ 34 34 … … 45 45 #include "internal/common.h" 46 46 #include "fnmatch.h" 47 48 // TODO: documentation49 47 50 48 #define INVALID_PATTERN -1 … … 171 169 }; 172 170 173 /**174 *175 * @param key176 * @param elem177 * @return178 */179 171 static int _class_compare(const void *key, const void *elem) 180 172 { … … 183 175 } 184 176 185 /**186 *187 * @param cname188 * @param c189 * @return190 */191 177 static bool _is_in_class (const char *cname, int c) 192 178 { … … 205 191 } 206 192 207 /**208 *209 * @param pattern210 * @param str211 * @param flags212 * @return213 */214 193 static int _match_char_class(const char **pattern, const char *str, int flags) 215 194 { … … 225 204 /************** END CHARACTER CLASSES ****************/ 226 205 227 /**228 *229 * @param pattern230 * @param flags231 * @return232 */233 206 static _coll_elm_t _next_coll_elm(const char **pattern, int flags) 234 207 { … … 267 240 268 241 /** 269 * 270 * @param pattern 271 * @param str 272 * @param flags 273 * @return 242 * 274 243 */ 275 244 static int _match_bracket_expr(const char **pattern, const char *str, int flags) … … 358 327 359 328 /** 360 * 361 * @param pattern 362 * @param string 363 * @param flags 364 * @return 329 * 365 330 */ 366 331 static bool _partial_match(const char **pattern, const char **string, int flags) … … 456 421 } 457 422 458 /**459 *460 * @param pattern461 * @param string462 * @param flags463 * @return464 */465 423 static bool _full_match(const char *pattern, const char *string, int flags) 466 424 { … … 518 476 } 519 477 520 /**521 *522 * @param s523 * @return524 */525 478 static char *_casefold(const char *s) 526 479 { … … 553 506 554 507 if ((flags & FNM_CASEFOLD) != 0) { 555 if (pattern) { 556 free((char *) pattern); 557 } 558 if (string) { 559 free((char *) string); 560 } 508 free((char *) pattern); 509 free((char *) string); 561 510 } 562 511 … … 655 604 /** @} 656 605 */ 606 -
uspace/lib/posix/fnmatch.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Filename-matching.32 /** @file 33 33 */ 34 34 … … 36 36 #define POSIX_FNMATCH_H_ 37 37 38 /* Error Values */38 /* Error Values. */ 39 39 #undef FNM_NOMATCH 40 40 #define FNM_NOMATCH 1 … … 66 66 /** @} 67 67 */ 68 -
uspace/lib/posix/internal/common.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Helper definitions common for all libposix files.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/inttypes.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Fixed size integer types.32 /** @file 33 33 */ 34 34 … … 39 39 #include "libc/inttypes.h" 40 40 41 extern posix_intmax_t posix_strtoimax(const char *restrict nptr,42 char **restrict endptr, int base);43 extern posix_uintmax_t posix_strtoumax(const char *restrict nptr,44 char **restrict endptr, int base);45 46 #ifndef LIBPOSIX_INTERNAL47 #define strtoimax posix_strtoimax48 #define strtoumax posix_strtoumax49 #endif50 51 41 #endif /* POSIX_INTTYPES_H_ */ 52 42 -
uspace/lib/posix/iso646.h
reccd20e6 rdf0956ee 1 /*2 * Copyright (c) 2011 Jiri Zarevucky3 * All rights reserved.4 *5 * Redistribution and use in source and binary forms, with or without6 * modification, are permitted provided that the following conditions7 * are met:8 *9 * - Redistributions of source code must retain the above copyright10 * notice, this list of conditions and the following disclaimer.11 * - Redistributions in binary form must reproduce the above copyright12 * notice, this list of conditions and the following disclaimer in the13 * documentation and/or other materials provided with the distribution.14 * - The name of the author may not be used to endorse or promote products15 * derived from this software without specific prior written permission.16 *17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.27 */28 1 29 2 /** @addtogroup libposix 30 3 * @{ 31 4 */ 32 /** @file Alternative spellings.5 /** @file 33 6 */ 34 7 … … 52 25 /** @} 53 26 */ 27 -
uspace/lib/posix/limits.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Implementation-defined limit constants.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/locale.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Locale-specific definitions.32 /** @file 33 33 */ 34 34 … … 41 41 #include "limits.h" 42 42 #include "string.h" 43 44 // TODO: documentation45 43 46 44 struct __posix_locale { … … 75 73 }; 76 74 77 /**78 *79 * @param category80 * @param locale81 * @return82 */83 75 char *posix_setlocale(int category, const char *locale) 84 76 { … … 91 83 } 92 84 93 /**94 *95 * @return96 */97 85 struct posix_lconv *posix_localeconv(void) 98 86 { … … 101 89 } 102 90 103 /**104 *105 * @param locobj106 * @return107 */108 91 posix_locale_t posix_duplocale(posix_locale_t locobj) 109 92 { … … 121 104 } 122 105 123 /**124 *125 * @param locobj126 */127 106 void posix_freelocale(posix_locale_t locobj) 128 107 { 129 if (locobj) { 130 free(locobj); 131 } 108 free(locobj); 132 109 } 133 110 134 /**135 *136 * @param category_mask137 * @param locale138 * @param base139 * @return140 */141 111 posix_locale_t posix_newlocale(int category_mask, const char *locale, 142 112 posix_locale_t base) … … 159 129 } 160 130 161 /** 162 * 163 * @param newloc 164 * @return 165 */ 166 posix_locale_t posix_uselocale(posix_locale_t newloc) 131 posix_locale_t posix_uselocale (posix_locale_t newloc) 167 132 { 168 133 // TODO -
uspace/lib/posix/locale.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Locale-specific definitions.32 /** @file 33 33 */ 34 34 35 35 #ifndef POSIX_LOCALE_H_ 36 36 #define POSIX_LOCALE_H_ 37 38 // TODO: documentation39 37 40 38 #ifndef NULL … … 85 83 86 84 struct posix_lconv { 87 char *currency_symbol;88 char *decimal_point;89 char frac_digits;90 char *grouping;91 char *int_curr_symbol;92 char int_frac_digits;93 char int_n_cs_precedes;94 char int_n_sep_by_space;95 char int_n_sign_posn;96 char int_p_cs_precedes;97 char int_p_sep_by_space;98 char int_p_sign_posn;99 char *mon_decimal_point;100 char *mon_grouping;101 char *mon_thousands_sep;102 char *negative_sign;103 char n_cs_precedes;104 char n_sep_by_space;105 char n_sign_posn;106 char *positive_sign;107 char p_cs_precedes;108 char p_sep_by_space;109 char p_sign_posn;110 char *thousands_sep;85 char *currency_symbol; 86 char *decimal_point; 87 char frac_digits; 88 char *grouping; 89 char *int_curr_symbol; 90 char int_frac_digits; 91 char int_n_cs_precedes; 92 char int_n_sep_by_space; 93 char int_n_sign_posn; 94 char int_p_cs_precedes; 95 char int_p_sep_by_space; 96 char int_p_sign_posn; 97 char *mon_decimal_point; 98 char *mon_grouping; 99 char *mon_thousands_sep; 100 char *negative_sign; 101 char n_cs_precedes; 102 char n_sep_by_space; 103 char n_sign_posn; 104 char *positive_sign; 105 char p_cs_precedes; 106 char p_sep_by_space; 107 char p_sign_posn; 108 char *thousands_sep; 111 109 }; 112 110 … … 119 117 extern posix_locale_t posix_newlocale(int category_mask, const char *locale, 120 118 posix_locale_t base); 121 extern posix_locale_t posix_uselocale (posix_locale_t newloc);119 extern posix_locale_t posix_uselocale (posix_locale_t newloc); 122 120 123 121 #ifndef LIBPOSIX_INTERNAL … … 133 131 #endif 134 132 133 135 134 #endif /* POSIX_LOCALE_H_ */ 136 135 -
uspace/lib/posix/math.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Mathematical operations.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/math.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Mathematical operations.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/pwd.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Password handling.32 /** @file 33 33 */ 34 34 35 35 #define LIBPOSIX_INTERNAL 36 37 36 #include "pwd.h" 38 37 #include "string.h" 39 38 #include "errno.h" 40 39 41 // TODO: documentation42 40 43 41 static bool entry_read = false; … … 55 53 * Since HelenOS doesn't have user accounts, this always returns 56 54 * the same made-up entry. 57 *58 * @return59 55 */ 60 56 struct posix_passwd *posix_getpwent(void) … … 182 178 /** @} 183 179 */ 180 -
uspace/lib/posix/pwd.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Password handling.32 /** @file 33 33 */ 34 34 35 35 #ifndef POSIX_PWD_H_ 36 36 #define POSIX_PWD_H_ 37 38 // TODO: documentation39 37 40 38 #include "sys/types.h" … … 78 76 /** @} 79 77 */ 78 -
uspace/lib/posix/signal.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Signal handling.32 /** @file 33 33 */ 34 34 … … 45 45 #include "libc/task.h" 46 46 47 // TODO: documentation48 49 47 /* Used to serialize signal handling. */ 50 48 static FIBRIL_MUTEX_INITIALIZE(_signal_mutex); … … 65 63 }; 66 64 67 /**68 *69 * @param signo70 */71 65 void __posix_default_signal_handler(int signo) 72 66 { … … 124 118 } 125 119 126 /**127 *128 * @param signo129 */130 120 void __posix_hold_signal_handler(int signo) 131 121 { … … 133 123 } 134 124 135 /**136 *137 * @param signo138 */139 125 void __posix_ignore_signal_handler(int signo) 140 126 { … … 142 128 } 143 129 144 /** 145 * 146 * @param set 147 * @return 148 */ 130 149 131 int posix_sigemptyset(posix_sigset_t *set) 150 132 { … … 155 137 } 156 138 157 /**158 *159 * @param set160 * @return161 */162 139 int posix_sigfillset(posix_sigset_t *set) 163 140 { … … 168 145 } 169 146 170 /**171 *172 * @param set173 * @param signo174 * @return175 */176 147 int posix_sigaddset(posix_sigset_t *set, int signo) 177 148 { … … 182 153 } 183 154 184 /**185 *186 * @param set187 * @param signo188 * @return189 */190 155 int posix_sigdelset(posix_sigset_t *set, int signo) 191 156 { … … 196 161 } 197 162 198 /**199 *200 * @param set201 * @param signo202 * @return203 */204 163 int posix_sigismember(const posix_sigset_t *set, int signo) 205 164 { … … 209 168 } 210 169 211 /**212 *213 * @param sig214 * @param act215 * @param oact216 */217 170 static void _sigaction_unsafe(int sig, const struct posix_sigaction *restrict act, 218 171 struct posix_sigaction *restrict oact) … … 229 182 } 230 183 231 /**232 *233 * @param sig234 * @param act235 * @param oact236 * @return237 */238 184 int posix_sigaction(int sig, const struct posix_sigaction *restrict act, 239 185 struct posix_sigaction *restrict oact) … … 260 206 } 261 207 262 /**263 *264 * @param sig265 * @param func266 * @return267 */268 208 void (*posix_signal(int sig, void (*func)(int)))(int) 269 209 { … … 282 222 } 283 223 284 /**285 *286 * @param signo287 * @param siginfo288 * @return289 */290 224 static int _raise_sigaction(int signo, posix_siginfo_t *siginfo) 291 225 { … … 325 259 } 326 260 327 /**328 *329 * @param sig330 * @return331 */332 261 int posix_raise(int sig) 333 262 { … … 344 273 } 345 274 346 /**347 *348 * @param pid349 * @param signo350 * @return351 */352 275 int posix_kill(posix_pid_t pid, int signo) 353 276 { … … 380 303 } 381 304 382 /**383 *384 * @param pid385 * @param sig386 * @return387 */388 305 int posix_killpg(posix_pid_t pid, int sig) 389 306 { … … 392 309 } 393 310 394 /**395 *396 * @param pinfo397 * @param message398 */399 311 void posix_psiginfo(const posix_siginfo_t *pinfo, const char *message) 400 312 { … … 404 316 } 405 317 406 /**407 *408 * @param signum409 * @param message410 */411 318 void posix_psignal(int signum, const char *message) 412 319 { … … 419 326 } 420 327 421 /**422 *423 * @param how424 * @param set425 * @param oset426 * @return427 */428 328 int posix_thread_sigmask(int how, const posix_sigset_t *restrict set, 429 329 posix_sigset_t *restrict oset) … … 458 358 } 459 359 460 /**461 *462 * @param how463 * @param set464 * @param oset465 * @return466 */467 360 int posix_sigprocmask(int how, const posix_sigset_t *restrict set, 468 361 posix_sigset_t *restrict oset) … … 478 371 /** @} 479 372 */ 373 -
uspace/lib/posix/signal.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Signal handling.32 /** @file 33 33 */ 34 34 35 35 #ifndef POSIX_SIGNAL_H_ 36 36 #define POSIX_SIGNAL_H_ 37 38 // TODO: documentation39 37 40 38 #include "libc/errno.h" … … 109 107 posix_mcontext_t uc_mcontext; 110 108 } posix_ucontext_t; 109 111 110 112 111 /* Values of posix_sigevent::sigev_notify */ … … 155 154 #define SIGSTKSZ 0 156 155 157 /* Full POSIX set */156 /* full POSIX set */ 158 157 enum { 159 158 /* Termination Signals */ … … 215 214 216 215 /* Values for sigaction field si_code. */ 216 217 217 enum { 218 218 SI_USER, … … 287 287 #define sigevent posix_sigevent 288 288 #endif 289 #define sigaction posix_sigaction 289 290 #define mcontext_t posix_mcontext_t 290 291 #define ucontext_t posix_ucontext_t 291 292 #define stack_t posix_stack_t 292 293 #define siginfo_t posix_siginfo_t 293 294 #define sigaction posix_sigaction295 294 296 295 #define signal posix_signal -
uspace/lib/posix/stdbool.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Boolean type and values.32 /** @file 33 33 */ 34 34 … … 50 50 51 51 #endif /* POSIX_STDBOOL_H_ */ 52 -
uspace/lib/posix/stddef.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Standard type definitions.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/stdint.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Integer types.32 /** @file 33 33 */ 34 34 … … 88 88 #define AOFF64_MIN UINT64_MIN 89 89 90 #undef INTMAX_MIN91 #undef INTMAX_MAX92 #define INTMAX_MIN INT64_MIN93 #define INTMAX_MAX INT64_MAX94 95 #undef UINTMAX_MIN96 #undef UINTMAX_MAX97 #define UINTMAX_MIN UINT64_MIN98 #define UINTMAX_MAX UINT64_MAX99 100 90 #include "libc/sys/types.h" 101 91 -
uspace/lib/posix/stdio.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Standard buffered input/output.33 /** @file 34 34 */ 35 35 … … 355 355 { 356 356 off64_t ret = ftell(stream); 357 if (ret != -1) { 358 pos->offset = ret; 359 return 0; 360 } else { 361 return -1; 362 } 357 if (ret == -1) { 358 return errno; 359 } 360 pos->offset = ret; 361 return 0; 363 362 } 364 363 -
uspace/lib/posix/stdio.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Standard buffered input/output.33 /** @file 34 34 */ 35 35 -
uspace/lib/posix/stdio/scanf.c
reccd20e6 rdf0956ee 303 303 self->fetched = 0; 304 304 self->cursor = NULL; 305 if (self->window) { 306 free(self->window); 307 self->window = NULL; 308 } 305 free(self->window); 306 self->window = NULL; 309 307 self->window_size = 0; 310 308 self->state = _PROV_CONSTRUCTED; … … 655 653 /* Update the cursor so it can be returned to the provider. */ 656 654 cur_borrowed += cur_updated - cur_limited; 657 if (width != -1 && cur_limited != NULL) {655 if (width != -1) { 658 656 /* Deallocate duplicated part of the cursor view. */ 659 657 free(cur_limited); … … 835 833 /* Update the cursor so it can be returned to the provider. */ 836 834 cur_borrowed += cur_updated - cur_limited; 837 if (width != -1 && cur_limited != NULL) {835 if (width != -1) { 838 836 /* Deallocate duplicated part of the cursor view. */ 839 837 free(cur_limited); -
uspace/lib/posix/stdlib.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Standard library definitions.33 /** @file 34 34 */ 35 35 … … 40 40 41 41 #include "errno.h" 42 #include "limits.h"43 42 44 43 #include "libc/sort.h" … … 60 59 61 60 /** 62 * Integer absolute value.63 61 * 64 62 * @param i Input value. … … 71 69 72 70 /** 73 * Long integer absolute value.74 71 * 75 72 * @param i Input value. … … 82 79 83 80 /** 84 * Long long integer absolute value.85 81 * 86 82 * @param i Input value. … … 92 88 } 93 89 94 /**95 * Compute the quotient and remainder of an integer division.96 *97 * @param numer Numerator.98 * @param denom Denominator.99 * @return Quotient and remainder packed into structure.100 */101 90 posix_div_t posix_div(int numer, int denom) 102 91 { … … 104 93 } 105 94 106 /**107 * Compute the quotient and remainder of a long integer division.108 *109 * @param numer Numerator.110 * @param denom Denominator.111 * @return Quotient and remainder packed into structure.112 */113 95 posix_ldiv_t posix_ldiv(long numer, long denom) 114 96 { … … 116 98 } 117 99 118 /**119 * Compute the quotient and remainder of a long long integer division.120 *121 * @param numer Numerator.122 * @param denom Denominator.123 * @return Quotient and remainder packed into structure.124 */125 100 posix_lldiv_t posix_lldiv(long long numer, long long denom) 126 101 { … … 134 109 * @param elem2 Second element to compare. 135 110 * @param compare Comparison function without userdata parameter. 111 * 136 112 * @return Relative ordering of the elements. 137 113 */ … … 139 115 { 140 116 int (*compare)(const void *, const void *) = userdata; 141 int ret = compare(elem1, elem2); 142 143 /* Native qsort internals expect this. */ 144 if (ret < 0) { 145 return -1; 146 } else if (ret > 0) { 147 return 1; 148 } else { 149 return 0; 150 } 117 return compare(elem1, elem2); 151 118 } 152 119 … … 154 121 * Array sorting utilizing the quicksort algorithm. 155 122 * 156 * @param array Array of elements to sort.157 * @param count Number of elements in the array.158 * @param size Width of each element.159 * @param compare Decides relative ordering of two elements.123 * @param array 124 * @param count 125 * @param size 126 * @param compare 160 127 */ 161 128 void posix_qsort(void *array, size_t count, size_t size, … … 204 171 /** 205 172 * Retrieve a value of the given environment variable. 206 *207 173 * Since HelenOS doesn't support env variables at the moment, 208 174 * this function always returns NULL. 209 175 * 210 * @param name Name of the variable.211 * @return Value of the variable or NULL if such variable does not exist.176 * @param name 177 * @return Always NULL. 212 178 */ 213 179 char *posix_getenv(const char *name) … … 229 195 230 196 /** 231 * Issue a command. 232 * 233 * @param string String to be passed to a command interpreter or NULL. 234 * @return Termination status of the command if the command is not NULL, 235 * otherwise indicate whether there is a command interpreter (non-zero) 236 * or not (zero). 197 * 198 * @param string String to be passed to a command interpreter. 199 * @return 237 200 */ 238 201 int posix_system(const char *string) { … … 242 205 243 206 /** 244 * Resolve absolute pathname. 245 * 246 * @param name Pathname to be resolved. 247 * @param resolved Either buffer for the resolved absolute pathname or NULL. 248 * @return On success, either resolved (if it was not NULL) or pointer to the 249 * newly allocated buffer containing the absolute pathname (if resolved was 250 * NULL). Otherwise NULL. 251 * 252 */ 253 char *posix_realpath(const char *restrict name, char *restrict resolved) 207 * 208 * @param name 209 * @param resolved 210 * @return 211 */ 212 char *posix_realpath(const char *name, char *resolved) 254 213 { 255 214 #ifndef PATH_MAX … … 295 254 * its native representation. See posix_strtold(). 296 255 * 297 * @param nptr String representation of a floating-point number.298 * @return Double-precision number resulting from the string conversion.256 * @param nptr 257 * @return 299 258 */ 300 259 double posix_atof(const char *nptr) … … 307 266 * its native representation. See posix_strtold(). 308 267 * 309 * @param nptr String representation of a floating-point number. 310 * @param endptr Pointer to the final part of the string which 311 * was not used for conversion. 312 * @return Single-precision number resulting from the string conversion. 268 * @param nptr 269 * @param endptr 270 * @return 313 271 */ 314 272 float posix_strtof(const char *restrict nptr, char **restrict endptr) … … 321 279 * its native representation. See posix_strtold(). 322 280 * 323 * @param nptr String representation of a floating-point number. 324 * @param endptr Pointer to the final part of the string which 325 * was not used for conversion. 326 * @return Double-precision number resulting from the string conversion. 281 * @param nptr 282 * @param endptr 283 * @return 327 284 */ 328 285 double posix_strtod(const char *restrict nptr, char **restrict endptr) … … 332 289 333 290 /** 334 * Allocate memory chunk. 335 * 336 * @param size Size of the chunk to allocate. 337 * @return Either pointer to the allocated chunk or NULL if not possible. 291 * 292 * @param size 293 * @return 338 294 */ 339 295 void *posix_malloc(size_t size) … … 343 299 344 300 /** 345 * Allocate memory for an array of elements. 346 * 347 * @param nelem Number of elements in the array. 348 * @param elsize Size of each element. 349 * @return Either pointer to the allocated array or NULL if not possible. 301 * 302 * @param nelem 303 * @param elsize 304 * @return 350 305 */ 351 306 void *posix_calloc(size_t nelem, size_t elsize) … … 355 310 356 311 /** 357 * Reallocate memory chunk to a new size. 358 * 359 * @param ptr Memory chunk to reallocate. Might be NULL. 360 * @param size Size of the reallocated chunk. Might be zero. 361 * @return Either NULL or the pointer to the newly reallocated chunk. 312 * 313 * @param ptr 314 * @param size 315 * @return 362 316 */ 363 317 void *posix_realloc(void *ptr, size_t size) 364 318 { 365 if (ptr != NULL && size == 0) { 366 /* Native realloc does not handle this special case. */ 367 free(ptr); 368 return NULL; 369 } else { 370 return realloc(ptr, size); 371 } 372 } 373 374 /** 375 * Free allocated memory chunk. 376 * 377 * @param ptr Memory chunk to be freed. 319 return realloc(ptr, size); 320 } 321 322 /** 323 * 324 * @param ptr 378 325 */ 379 326 void posix_free(void *ptr) … … 396 343 397 344 /** 398 * Get system load average statistics. 399 * 400 * Not supported. Always returns -1. 401 * 402 * @param loadavg Array where the load averages shall be placed. 403 * @param nelem Maximum number of elements to be placed into the array. 404 * @return Number of elements placed into the array on success, -1 otherwise. 345 * Should read system load statistics. Not supported. Always returns -1. 346 * 347 * @param loadavg 348 * @param nelem 349 * @return 405 350 */ 406 351 int bsd_getloadavg(double loadavg[], int nelem) -
uspace/lib/posix/stdlib.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Standard library definitions.33 /** @file 34 34 */ 35 35 … … 56 56 extern long long posix_llabs(long long i); 57 57 58 /* Integer Division */58 /* Integer division */ 59 59 60 60 typedef struct { … … 80 80 size_t nmemb, size_t size, int (*compar)(const void *, const void *)); 81 81 82 82 83 /* Environment Access */ 83 84 extern char *posix_getenv(const char *name); 84 85 extern int posix_putenv(char *string); 86 85 87 extern int posix_system(const char *string); 88 86 89 87 90 /* Symbolic Links */ … … 98 101 extern long int posix_atol(const char *nptr); 99 102 extern long long int posix_atoll(const char *nptr); 103 100 104 extern long int posix_strtol(const char *restrict nptr, 101 105 char **restrict endptr, int base); … … 106 110 extern unsigned long long int posix_strtoull( 107 111 const char *restrict nptr, char **restrict endptr, int base); 112 108 113 109 114 /* Memory Allocation */ -
uspace/lib/posix/stdlib/strtol.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Backend for integer conversions.32 /** @file 33 33 */ 34 34 … … 38 38 #include "../stdlib.h" 39 39 40 #include "../limits.h" 40 41 #include "../ctype.h" 41 42 #include "../errno.h" 42 #include "../inttypes.h" 43 #include "../limits.h" 44 45 #define intmax_t posix_intmax_t 46 #define uintmax_t posix_uintmax_t 47 48 /** 49 * Decides whether a digit belongs to a particular base. 50 * 51 * @param c Character representation of the digit. 52 * @param base Base against which the digit shall be tested. 53 * @return True if the digit belongs to the base, false otherwise. 54 */ 43 44 // TODO: documentation 45 55 46 static inline bool is_digit_in_base(int c, int base) 56 47 { … … 63 54 } 64 55 65 /** 66 * Derive a digit from its character representation. 67 * 68 * @param c Character representation of the digit. 69 * @return Digit value represented by an integer. 70 */ 71 static inline int digit_value(int c) 56 static inline int get_digit_in_base(int c, int base) 72 57 { 73 58 if (c <= '9') { … … 78 63 } 79 64 80 /** 81 * Generic function for parsing an integer from it's string representation. 82 * Different variants differ in lower and upper bounds. 83 * The parsed string returned by this function is always positive, sign 84 * information is provided via a dedicated parameter. 85 * 86 * @param nptr Input string. 87 * @param endptr If non-NULL, *endptr is set to the position of the first 88 * unrecognized character. If no digit has been parsed, value of 89 * nptr is stored there (regardless of any skipped characters at the 90 * beginning). 91 * @param base Expected base of the string representation. If 0, base is 92 * determined to be decimal, octal or hexadecimal using the same rules 93 * as C syntax. Otherwise, value must be between 2 and 36, inclusive. 94 * @param min_value Lower bound for the resulting conversion. 95 * @param max_value Upper bound for the resulting conversion. 96 * @param out_negative Either NULL for unsigned conversion or a pointer to the 97 * bool variable into which shall be placed the negativity of the resulting 98 * converted value. 99 * @return The absolute value of the parsed value, or the closest in-range value 100 * if the parsed value is out of range. If the input is invalid, zero is 101 * returned and errno is set to EINVAL. 102 */ 103 static inline uintmax_t internal_strtol( 65 static inline unsigned long long internal_strtol( 104 66 const char *restrict nptr, char **restrict endptr, int base, 105 const intmax_t min_value, const uintmax_tmax_value,67 const long long min_value, const unsigned long long max_value, 106 68 bool *restrict out_negative) 107 69 { … … 116 78 } 117 79 118 /* The maximal absolute value that can be returned in this run. 119 * Depends on sign. 120 */ 121 uintmax_t real_max_value = max_value; 80 unsigned long long real_max_value = max_value; 122 81 123 82 /* Current index in the input string. */ 124 size_t i = 0;83 int i = 0; 125 84 bool negative = false; 126 85 … … 134 93 case '-': 135 94 negative = true; 136 137 /* The strange computation is are there to avoid a corner case 138 * where -min_value can't be represented in intmax_t. 139 * (I'm not exactly sure what the semantics are in such a 140 * case, but this should be safe for any case.) 141 */ 142 real_max_value = (min_value == 0) 143 ? 0 144 :(((uintmax_t) -(min_value + 1)) + 1); 145 95 real_max_value = -min_value; 146 96 /* fallthrough */ 147 97 case '+': … … 154 104 if (nptr[i] == '0') { 155 105 if (tolower(nptr[i + 1]) == 'x') { 156 /* 0x... is hex. */157 106 base = 16; 158 107 i += 2; 159 108 } else { 160 /* 0... is octal. */161 109 base = 8; 162 110 } 163 111 } else { 164 /* Anything else is decimal by default. */165 112 base = 10; 166 113 } 167 114 break; 168 115 case 16: 169 /* Allow hex number to be prefixed with "0x". */170 116 if (nptr[i] == '0' && tolower(nptr[i + 1]) == 'x') { 171 117 i += 2; … … 187 133 * of overflow. 188 134 */ 189 u intmax_tmax_safe_value = (real_max_value - base + 1) / base;190 191 u intmax_tresult = 0;135 unsigned long long max_safe_value = (real_max_value - base + 1) / base; 136 137 unsigned long long result = 0; 192 138 193 139 if (real_max_value == 0) { … … 199 145 if (nptr[i] != '0') { 200 146 errno = ERANGE; 201 result = 0;147 result = max_value; 202 148 } 203 149 i++; … … 206 152 207 153 while (is_digit_in_base(nptr[i], base)) { 208 int digit = digit_value(nptr[i]);154 int digit = get_digit_in_base(nptr[i], base); 209 155 210 156 if (result > max_safe_value) { 211 157 /* corner case, check for overflow */ 212 158 213 uintmax_t boundary = (real_max_value - digit) / base; 159 unsigned long long 160 boundary = (real_max_value - digit) / base; 214 161 215 162 if (result > boundary) { 216 163 /* overflow */ 217 164 errno = ERANGE; 218 result = real_max_value;165 result = max_value; 219 166 break; 220 167 } … … 241 188 } 242 189 243 /**244 * Convert a string to an integer.245 *246 * @param nptr Input string.247 * @return Result of the conversion.248 */249 190 int posix_atoi(const char *nptr) 250 191 { 251 192 bool neg = false; 252 u intmax_tresult =193 unsigned long long result = 253 194 internal_strtol(nptr, NULL, 10, INT_MIN, INT_MAX, &neg); 254 195 255 return (neg ? ((int) -result) : (int) result); 256 } 257 258 /** 259 * Convert a string to a long integer. 260 * 261 * @param nptr Input string. 262 * @return Result of the conversion. 263 */ 196 return (int) (neg ? -result : result); 197 } 198 264 199 long posix_atol(const char *nptr) 265 200 { 266 201 bool neg = false; 267 u intmax_tresult =202 unsigned long long result = 268 203 internal_strtol(nptr, NULL, 10, LONG_MIN, LONG_MAX, &neg); 269 204 270 return (neg ? ((long) -result) : (long) result); 271 } 272 273 /** 274 * Convert a string to a long long integer. 275 * 276 * @param nptr Input string. 277 * @return Result of the conversion. 278 */ 205 return (long) (neg ? -result : result); 206 } 207 279 208 long long posix_atoll(const char *nptr) 280 209 { 281 210 bool neg = false; 282 u intmax_tresult =211 unsigned long long result = 283 212 internal_strtol(nptr, NULL, 10, LLONG_MIN, LLONG_MAX, &neg); 284 213 285 return (neg ? ((long long) -result) : (long long) result); 286 } 287 288 /** 289 * Convert a string to a long integer. 290 * 291 * @param nptr Input string. 292 * @param endptr Pointer to the final part of the string which 293 * was not used for conversion. 294 * @param base Expected base of the string representation. 295 * @return Result of the conversion. 296 */ 214 return (long long) (neg ? -result : result); 215 } 216 297 217 long posix_strtol(const char *restrict nptr, char **restrict endptr, int base) 298 218 { 299 219 bool neg = false; 300 u intmax_tresult =220 unsigned long long result = 301 221 internal_strtol(nptr, endptr, base, LONG_MIN, LONG_MAX, &neg); 302 222 303 return (neg ? ((long) -result) : ((long) result)); 304 } 305 306 /** 307 * Convert a string to a long long integer. 308 * 309 * @param nptr Input string. 310 * @param endptr Pointer to the final part of the string which 311 * was not used for conversion. 312 * @param base Expected base of the string representation. 313 * @return Result of the conversion. 314 */ 223 return (long) (neg ? -result : result); 224 } 225 315 226 long long posix_strtoll( 316 227 const char *restrict nptr, char **restrict endptr, int base) 317 228 { 318 229 bool neg = false; 319 u intmax_tresult =230 unsigned long long result = 320 231 internal_strtol(nptr, endptr, base, LLONG_MIN, LLONG_MAX, &neg); 321 232 322 return (neg ? ((long long) -result) : (long long) result); 323 } 324 325 /** 326 * Convert a string to a largest signed integer type. 327 * 328 * @param nptr Input string. 329 * @param endptr Pointer to the final part of the string which 330 * was not used for conversion. 331 * @param base Expected base of the string representation. 332 * @return Result of the conversion. 333 */ 334 intmax_t posix_strtoimax( 335 const char *restrict nptr, char **restrict endptr, int base) 336 { 337 bool neg = false; 338 uintmax_t result = 339 internal_strtol(nptr, endptr, base, INTMAX_MIN, INTMAX_MAX, &neg); 340 341 return (neg ? ((intmax_t) -result) : (intmax_t) result); 342 } 343 344 /** 345 * Convert a string to an unsigned long integer. 346 * 347 * @param nptr Input string. 348 * @param endptr Pointer to the final part of the string which 349 * was not used for conversion. 350 * @param base Expected base of the string representation. 351 * @return Result of the conversion. 352 */ 233 return (long long) (neg ? -result : result); 234 } 235 353 236 unsigned long posix_strtoul( 354 237 const char *restrict nptr, char **restrict endptr, int base) 355 238 { 356 u intmax_tresult =239 unsigned long long result = 357 240 internal_strtol(nptr, endptr, base, 0, ULONG_MAX, NULL); 358 241 … … 360 243 } 361 244 362 /**363 * Convert a string to an unsigned long long integer.364 *365 * @param nptr Input string.366 * @param endptr Pointer to the final part of the string which367 * was not used for conversion.368 * @param base Expected base of the string representation.369 * @return Result of the conversion.370 */371 245 unsigned long long posix_strtoull( 372 246 const char *restrict nptr, char **restrict endptr, int base) 373 247 { 374 uintmax_t result = 375 internal_strtol(nptr, endptr, base, 0, ULLONG_MAX, NULL); 376 377 return (unsigned long long) result; 378 } 379 380 /** 381 * Convert a string to a largest unsigned integer type. 382 * 383 * @param nptr Input string. 384 * @param endptr Pointer to the final part of the string which 385 * was not used for conversion. 386 * @param base Expected base of the string representation. 387 * @return Result of the conversion. 388 */ 389 uintmax_t posix_strtoumax( 390 const char *restrict nptr, char **restrict endptr, int base) 391 { 392 uintmax_t result = 393 internal_strtol(nptr, endptr, base, 0, UINTMAX_MAX, NULL); 394 395 return result; 396 } 248 return internal_strtol(nptr, endptr, base, 0, ULLONG_MAX, NULL); 249 } 250 397 251 398 252 /** @} 399 253 */ 254 -
uspace/lib/posix/stdlib/strtold.c
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Backend for floating point conversions.32 /** @file 33 33 */ 34 34 … … 55 55 #endif 56 56 57 // TODO: clean up 57 // TODO: clean up, documentation 58 58 59 59 // FIXME: ensure it builds and works on all platforms … … 116 116 }; 117 117 118 /**119 * Decides whether the argument is still in range representable by120 * long double or not.121 *122 * @param num Floating point number to be checked.123 * @return True if the argument is out of range, false otherwise.124 */125 118 static inline bool out_of_range(long double num) 126 119 { … … 134 127 * @param base Number to be multiplied. 135 128 * @param exponent Base 5 exponent. 136 * @return base multiplied by 5**exponent .129 * @return base multiplied by 5**exponent 137 130 */ 138 131 static long double mul_pow5(long double base, int exponent) … … 180 173 * @param base Number to be multiplied. 181 174 * @param exponent Base 2 exponent. 182 * @return base multiplied by 2**exponent .175 * @return base multiplied by 2**exponent 183 176 */ 184 177 static long double mul_pow2(long double base, int exponent) … … 219 212 } 220 213 221 /** 222 * Convert decimal string representation of the floating point number. 223 * Function expects the string pointer to be already pointed at the first 224 * digit (i.e. leading optional sign was already consumed by the caller). 225 * 226 * @param sptr Pointer to the storage of the string pointer. Upon successful 227 * conversion, the string pointer is updated to point to the first 228 * unrecognized character. 229 * @return An approximate representation of the input floating-point number. 230 */ 214 231 215 static long double parse_decimal(const char **sptr) 232 216 { … … 331 315 } 332 316 333 /**334 * Derive a hexadecimal digit from its character representation.335 *336 * @param ch Character representation of the hexadecimal digit.337 * @return Digit value represented by an integer.338 */339 317 static inline int hex_value(char ch) 340 318 { … … 347 325 348 326 /** 349 * Get the count of leading zero bits up to the maximum of 3 zero bits.350 *351 327 * @param val Integer value. 352 328 * @return How many leading zero bits there are. (Maximum is 3) … … 363 339 } 364 340 365 /**366 * Convert hexadecimal string representation of the floating point number.367 * Function expects the string pointer to be already pointed at the first368 * digit (i.e. leading optional sign and 0x prefix were already consumed369 * by the caller).370 *371 * @param sptr Pointer to the storage of the string pointer. Upon successful372 * conversion, the string pointer is updated to point to the first373 * unrecognized character.374 * @return Representation of the input floating-point number.375 */376 341 static long double parse_hexadecimal(const char **sptr) 377 342 { … … 513 478 * @param nptr Input string. 514 479 * @param endptr If non-NULL, *endptr is set to the position of the first 515 * 480 * unrecognized character. 516 481 * @return An approximate representation of the input floating-point number. 517 482 */ … … 547 512 548 513 if (endptr != NULL) { 549 *endptr = (char *) nptr;550 } 551 errno = E INVAL;552 return 0;514 *endptr = (char *) &nptr[i + 3]; 515 } 516 errno = ERANGE; 517 return negative ? -0.0l : +0.0l; 553 518 } 554 519 … … 602 567 /** @} 603 568 */ 569 -
uspace/lib/posix/string.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file String manipulation.33 /** @file 34 34 */ 35 35 … … 48 48 49 49 /** 50 * Decides whethers2 is a prefix of s1.51 * 52 * @param s1 String in which to look for a prefix.53 * @param s2 Prefix string to look for.54 * @return True if s2 is a prefix of s1, false otherwise.50 * Returns true if s2 is a prefix of s1. 51 * 52 * @param s1 53 * @param s2 54 * @return 55 55 */ 56 56 static bool begins_with(const char *s1, const char *s2) … … 69 69 * if no occurence is found. 70 70 * 71 * @param s1 String in which to look for the bytes. 72 * @param s2 String of bytes to look for. 73 * @return Pointer to the found byte on success, pointer to the 74 * string terminator otherwise. 71 * @param s1 72 * @param s2 73 * @return 75 74 */ 76 75 static char *strpbrk_null(const char *s1, const char *s2) … … 84 83 85 84 /** 86 * Copy a string. 87 * 88 * @param dest Destination pre-allocated buffer. 89 * @param src Source string to be copied. 90 * @return Pointer to the destination buffer. 91 */ 92 char *posix_strcpy(char *restrict dest, const char *restrict src) 85 * 86 * @param dest 87 * @param src 88 * @return 89 */ 90 char *posix_strcpy(char *dest, const char *src) 93 91 { 94 92 posix_stpcpy(dest, src); … … 97 95 98 96 /** 99 * Copy fixed length string. 100 * 101 * @param dest Destination pre-allocated buffer. 102 * @param src Source string to be copied. 103 * @param n Number of bytes to be stored into destination buffer. 104 * @return Pointer to the destination buffer. 105 */ 106 char *posix_strncpy(char *restrict dest, const char *restrict src, size_t n) 97 * 98 * @param dest 99 * @param src 100 * @param n 101 * @return 102 */ 103 char *posix_strncpy(char *dest, const char *src, size_t n) 107 104 { 108 105 posix_stpncpy(dest, src, n); … … 111 108 112 109 /** 113 * Copy a string. 114 * 115 * @param dest Destination pre-allocated buffer. 116 * @param src Source string to be copied. 117 * @return Pointer to the nul character in the destination string. 110 * 111 * @param dest 112 * @param src 113 * @return Pointer to the nul character in the dest string 118 114 */ 119 115 char *posix_stpcpy(char *restrict dest, const char *restrict src) … … 136 132 137 133 /** 138 * Copy fixed length string. 139 * 140 * @param dest Destination pre-allocated buffer. 141 * @param src Source string to be copied. 142 * @param n Number of bytes to be stored into destination buffer. 143 * @return Pointer to the first written nul character or &dest[n]. 134 * 135 * @param dest 136 * @param src 137 * @param n 138 * @return Pointer to the first written nul character or &dest[n] 144 139 */ 145 140 char *posix_stpncpy(char *restrict dest, const char *restrict src, size_t n) … … 167 162 168 163 /** 169 * Concatenate two strings. 170 * 171 * @param dest String to which src shall be appended. 172 * @param src String to be appended after dest. 173 * @return Pointer to destination buffer. 174 */ 175 char *posix_strcat(char *restrict dest, const char *restrict src) 164 * 165 * @param dest 166 * @param src 167 * @return 168 */ 169 char *posix_strcat(char *dest, const char *src) 176 170 { 177 171 assert(dest != NULL); … … 183 177 184 178 /** 185 * Concatenate a string with part of another. 186 * 187 * @param dest String to which part of src shall be appended. 188 * @param src String whose part shall be appended after dest. 189 * @param n Number of bytes to append after dest. 190 * @return Pointer to destination buffer. 191 */ 192 char *posix_strncat(char *restrict dest, const char *restrict src, size_t n) 179 * 180 * @param dest 181 * @param src 182 * @param n 183 * @return 184 */ 185 char *posix_strncat(char *dest, const char *src, size_t n) 193 186 { 194 187 assert(dest != NULL); … … 202 195 203 196 /** 204 * Copy limited number of bytes in memory. 205 * 206 * @param dest Destination buffer. 207 * @param src Source buffer. 208 * @param c Character after which the copying shall stop. 209 * @param n Number of bytes that shall be copied if not stopped earlier by c. 197 * 198 * @param dest 199 * @param src 200 * @param c 201 * @param n 210 202 * @return Pointer to the first byte after c in dest if found, NULL otherwise. 211 203 */ 212 void *posix_memccpy(void * restrict dest, const void *restrictsrc, int c, size_t n)204 void *posix_memccpy(void *dest, const void *src, int c, size_t n) 213 205 { 214 206 assert(dest != NULL); … … 231 223 232 224 /** 233 * Duplicate a string. 234 * 235 * @param s String to be duplicated. 236 * @return Newly allocated copy of the string. 225 * 226 * @param s 227 * @return Newly allocated string 237 228 */ 238 229 char *posix_strdup(const char *s) … … 242 233 243 234 /** 244 * Duplicate a specific number of bytes from a string. 245 * 246 * @param s String to be duplicated. 247 * @param n Maximum length of the resulting string.. 248 * @return Newly allocated string copy of length at most n. 235 * 236 * @param s 237 * @param n 238 * @return Newly allocated string of length at most n 249 239 */ 250 240 char *posix_strndup(const char *s, size_t n) … … 265 255 266 256 /** 267 * Compare bytes in memory. 268 * 269 * @param mem1 First area of memory to be compared. 270 * @param mem2 Second area of memory to be compared. 271 * @param n Maximum number of bytes to be compared. 257 * 258 * @param mem1 259 * @param mem2 260 * @param n 272 261 * @return Difference of the first pair of inequal bytes, 273 * or 0 if areas have the same content .262 * or 0 if areas have the same content 274 263 */ 275 264 int posix_memcmp(const void *mem1, const void *mem2, size_t n) … … 283 272 for (size_t i = 0; i < n; ++i) { 284 273 if (s1[i] != s2[i]) { 285 return s 1[i] - s2[i];274 return s2[i] - s1[i]; 286 275 } 287 276 } … … 291 280 292 281 /** 293 * Compare two strings. 294 * 295 * @param s1 First string to be compared. 296 * @param s2 Second string to be compared. 297 * @return Difference of the first pair of inequal characters, 298 * or 0 if strings have the same content. 282 * 283 * @param s1 284 * @param s2 285 * @return 299 286 */ 300 287 int posix_strcmp(const char *s1, const char *s2) … … 307 294 308 295 /** 309 * Compare part of two strings. 310 * 311 * @param s1 First string to be compared. 312 * @param s2 Second string to be compared. 313 * @param n Maximum number of characters to be compared. 314 * @return Difference of the first pair of inequal characters, 315 * or 0 if strings have the same content. 296 * 297 * @param s1 298 * @param s2 299 * @param n 300 * @return 316 301 */ 317 302 int posix_strncmp(const char *s1, const char *s2, size_t n) … … 322 307 for (size_t i = 0; i < n; ++i) { 323 308 if (s1[i] != s2[i]) { 324 return s 1[i] - s2[i];309 return s2[i] - s1[i]; 325 310 } 326 311 if (s1[i] == '\0') { … … 333 318 334 319 /** 335 * Find byte in memory. 336 * 337 * @param mem Memory area in which to look for the byte. 338 * @param c Byte to look for. 339 * @param n Maximum number of bytes to be inspected. 340 * @return Pointer to the specified byte on success, 341 * NULL pointer otherwise. 320 * 321 * @param mem 322 * @param c 323 * @param n 324 * @return 342 325 */ 343 326 void *posix_memchr(const void *mem, int c, size_t n) … … 356 339 357 340 /** 358 * Scan string for a first occurence of a character. 359 * 360 * @param s String in which to look for the character. 361 * @param c Character to look for. 362 * @return Pointer to the specified character on success, 363 * NULL pointer otherwise. 341 * 342 * @param s 343 * @param c 344 * @return 364 345 */ 365 346 char *posix_strchr(const char *s, int c) … … 372 353 373 354 /** 374 * Scan string for a last occurence of a character. 375 * 376 * @param s String in which to look for the character. 377 * @param c Character to look for. 378 * @return Pointer to the specified character on success, 379 * NULL pointer otherwise. 355 * 356 * @param s 357 * @param c 358 * @return 380 359 */ 381 360 char *posix_strrchr(const char *s, int c) … … 397 376 } 398 377 399 /**400 * Scan string for a first occurence of a character.401 *402 * @param s String in which to look for the character.403 * @param c Character to look for.404 * @return Pointer to the specified character on success, pointer to the405 * string terminator otherwise.406 */407 378 char *gnu_strchrnul(const char *s, int c) 408 379 { … … 417 388 418 389 /** 419 * Scan a string for a first occurence of one of provided bytes. 420 * 421 * @param s1 String in which to look for the bytes. 422 * @param s2 String of bytes to look for. 423 * @return Pointer to the found byte on success, 424 * NULL pointer otherwise. 390 * 391 * @param s1 392 * @param s2 393 * @return 425 394 */ 426 395 char *posix_strpbrk(const char *s1, const char *s2) … … 434 403 435 404 /** 436 * Get the length of a complementary substring. 437 * 438 * @param s1 String that shall be searched for complementary prefix. 439 * @param s2 String of bytes that shall not occur in the prefix. 440 * @return Length of the prefix. 405 * 406 * @param s1 407 * @param s2 408 * @return 441 409 */ 442 410 size_t posix_strcspn(const char *s1, const char *s2) … … 450 418 451 419 /** 452 * Get length of a substring. 453 * 454 * @param s1 String that shall be searched for prefix. 455 * @param s2 String of bytes that the prefix must consist of. 456 * @return Length of the prefix. 420 * 421 * @param s1 422 * @param s2 423 * @return 457 424 */ 458 425 size_t posix_strspn(const char *s1, const char *s2) … … 471 438 472 439 /** 473 * Find a substring. 474 * 475 * @param s1 String in which to look for a substring. 476 * @param s2 Substring to look for. 477 * @return Pointer to the first character of the substring in s1, or NULL if 478 * not found. 440 * 441 * @param s1 442 * @param s2 443 * @return 479 444 */ 480 445 char *posix_strstr(const char *s1, const char *s2) … … 502 467 503 468 /** 504 * String comparison using collating information.505 *506 469 * Currently ignores locale and just calls strcmp. 507 470 * 508 * @param s1 First string to be compared. 509 * @param s2 Second string to be compared. 510 * @return Difference of the first pair of inequal characters, 511 * or 0 if strings have the same content. 471 * @param s1 472 * @param s2 473 * @return 512 474 */ 513 475 int posix_strcoll(const char *s1, const char *s2) … … 520 482 521 483 /** 522 * Transform a string in such a way that the resulting string yields the same 523 * results when passed to the strcmp as if the original string is passed to 524 * the strcoll. 525 * 526 * Since strcoll is equal to strcmp here, this just makes a copy. 527 * 528 * @param s1 Transformed string. 529 * @param s2 Original string. 530 * @param n Maximum length of the transformed string. 531 * @return Length of the transformed string. 532 */ 533 size_t posix_strxfrm(char *restrict s1, const char *restrict s2, size_t n) 484 * strcoll is equal to strcmp here, so this just makes a copy. 485 * 486 * @param s1 487 * @param s2 488 * @param n 489 * @return 490 */ 491 size_t posix_strxfrm(char *s1, const char *s2, size_t n) 534 492 { 535 493 assert(s1 != NULL || n == 0); … … 546 504 547 505 /** 548 * Get error message string. 549 * 550 * @param errnum Error code for which to obtain human readable string. 551 * @return Error message. 506 * 507 * @param errnum 508 * @return 552 509 */ 553 510 char *posix_strerror(int errnum) … … 561 518 562 519 /** 563 * Get error message string. 564 * 565 * @param errnum Error code for which to obtain human readable string. 566 * @param buf Buffer to store a human readable string to. 567 * @param bufsz Size of buffer pointed to by buf. 568 * @return Zero on success, errno otherwise. 520 * 521 * @param errnum Error code 522 * @param buf Buffer to store a human readable string to 523 * @param bufsz Size of buffer pointed to by buf 524 * @return 569 525 */ 570 526 int posix_strerror_r(int errnum, char *buf, size_t bufsz) … … 585 541 586 542 /** 587 * Get length of the string. 588 * 589 * @param s String which length shall be determined. 590 * @return Length of the string. 543 * 544 * @param s 545 * @return 591 546 */ 592 547 size_t posix_strlen(const char *s) … … 598 553 599 554 /** 600 * Get limited length of the string. 601 * 602 * @param s String which length shall be determined. 603 * @param n Maximum number of bytes that can be examined to determine length. 604 * @return The lower of either string length or n limit. 555 * 556 * @param s 557 * @param n 558 * @return 605 559 */ 606 560 size_t posix_strnlen(const char *s, size_t n) … … 619 573 620 574 /** 621 * Get description of a signal. 622 * 623 * @param signum Signal number. 624 * @return Human readable signal description. 575 * 576 * @param signum 577 * @return 625 578 */ 626 579 char *posix_strsignal(int signum) -
uspace/lib/posix/string.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file String manipulation.33 /** @file 34 34 */ 35 35 … … 103 103 extern size_t posix_strnlen(const char *s, size_t n); 104 104 105 /* Signal Messages */105 /* Signal messages */ 106 106 extern char *posix_strsignal(int signum); 107 107 108 /* Legacy Declarations */108 /* Legacy declarations */ 109 109 #ifndef POSIX_STRINGS_H_ 110 110 extern int posix_ffs(int i); -
uspace/lib/posix/strings.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Additional string manipulation.33 /** @file 34 34 */ 35 35 … … 45 45 46 46 /** 47 * Find first set bit (beginning with the least significant bit).48 47 * 49 * @param i Integer in which to look for the first set bit.50 * @return Index of first set bit. Bits are numbered starting at one.48 * @param i 49 * @return 51 50 */ 52 51 int posix_ffs(int i) … … 83 82 84 83 /** 85 * Compare two strings (case-insensitive).86 84 * 87 * @param s1 First string to be compared. 88 * @param s2 Second string to be compared. 89 * @return Difference of the first pair of inequal characters, 90 * or 0 if strings have the same content. 85 * @param s1 86 * @param s2 87 * @return 91 88 */ 92 89 int posix_strcasecmp(const char *s1, const char *s2) … … 96 93 97 94 /** 98 * Compare part of two strings (case-insensitive).99 95 * 100 * @param s1 First string to be compared. 101 * @param s2 Second string to be compared. 102 * @param n Maximum number of characters to be compared. 103 * @return Difference of the first pair of inequal characters, 104 * or 0 if strings have the same content. 96 * @param s1 97 * @param s2 98 * @param n 99 * @return 105 100 */ 106 101 int posix_strncasecmp(const char *s1, const char *s2, size_t n) … … 121 116 122 117 /** 123 * Compare two memory areas.124 118 * 125 * @param mem1 Pointer to the first area to compare. 126 * @param mem2 Pointer to the second area to compare. 127 * @param n Common size of both areas. 128 * @return If n is 0, return zero. If the areas match, return 129 * zero. Otherwise return non-zero. 119 * @param mem1 120 * @param mem2 121 * @param n 122 * @return 130 123 */ 131 124 int posix_bcmp(const void *mem1, const void *mem2, size_t n) … … 135 128 136 129 /** 137 * Copy bytes in memory with overlapping areas.138 130 * 139 * @param src Source area.140 * @param dest Destination area.141 * @param n Number of bytes to copy.131 * @param dest 132 * @param src 133 * @param n 142 134 */ 143 void posix_bcopy(const void * src, void *dest, size_t n)135 void posix_bcopy(const void *dest, void *src, size_t n) 144 136 { 145 137 /* Note that memmove has different order of arguments. */ 146 memmove( dest, src, n);138 memmove(src, dest, n); 147 139 } 148 140 149 141 /** 150 * Reset bytes in memory area to zero.151 142 * 152 * @param mem Memory area to be zeroed.153 * @param n Number of bytes to reset.143 * @param mem 144 * @param n 154 145 */ 155 146 void posix_bzero(void *mem, size_t n) … … 159 150 160 151 /** 161 * Scan string for a first occurence of a character.162 152 * 163 * @param s String in which to look for the character. 164 * @param c Character to look for. 165 * @return Pointer to the specified character on success, 166 * NULL pointer otherwise. 153 * @param s 154 * @param c 155 * @return 167 156 */ 168 157 char *posix_index(const char *s, int c) … … 172 161 173 162 /** 174 * Scan string for a last occurence of a character. 175 * 176 * @param s String in which to look for the character. 177 * @param c Character to look for. 178 * @return Pointer to the specified character on success, 179 * NULL pointer otherwise. 163 * 164 * @param s 165 * @param c 166 * @return 180 167 */ 181 168 char *posix_rindex(const char *s, int c) -
uspace/lib/posix/strings.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Additional string manipulation.33 /** @file 34 34 */ 35 35 … … 37 37 #define POSIX_STRINGS_H_ 38 38 39 #ifndef POSIX_STRING_H_ 39 40 /* Search Functions */ 40 #ifndef POSIX_STRING_H_41 41 extern int posix_ffs(int i); 42 42 #endif … … 56 56 /* Legacy Functions */ 57 57 extern int posix_bcmp(const void *mem1, const void *mem2, size_t n); 58 extern void posix_bcopy(const void * src, void *dest, size_t n);58 extern void posix_bcopy(const void *dest, void *src, size_t n); 59 59 extern void posix_bzero(void *mem, size_t n); 60 60 extern char *posix_index(const char *s, int c); -
uspace/lib/posix/sys/mman.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Memory management declarations.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/sys/stat.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file File status handling.33 /** @file 34 34 */ 35 35 … … 80 80 int rc = fstat(fd, &hst); 81 81 if (rc < 0) { 82 /* fstat() returns negative error code instead of using errno. */ 82 /* fstat() returns negative error code instead of using errno. 83 */ 83 84 errno = -rc; 84 85 return -1; … … 95 96 * @return Zero on success, -1 otherwise. 96 97 */ 97 int posix_lstat(const char * restrict path, struct posix_stat *restrictst)98 int posix_lstat(const char *path, struct posix_stat *st) 98 99 { 99 100 /* There are currently no symbolic links in HelenOS. */ … … 108 109 * @return Zero on success, -1 otherwise. 109 110 */ 110 int posix_stat(const char * restrict path, struct posix_stat *restrictst)111 int posix_stat(const char *path, struct posix_stat *st) 111 112 { 112 113 struct stat hst; 113 114 int rc = stat(path, &hst); 114 115 if (rc < 0) { 115 /* stat() returns negative error code instead of using errno. */ 116 /* stat() returns negative error code instead of using errno. 117 */ 116 118 errno = -rc; 117 119 return -1; -
uspace/lib/posix/sys/stat.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file File status handling.33 /** @file 34 34 */ 35 35 -
uspace/lib/posix/sys/types.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Data types definitions.33 /** @file 34 34 */ 35 35 … … 49 49 typedef sysarg_t posix_dev_t; 50 50 51 /* PThread Types */51 /* PThread types */ 52 52 typedef struct posix_thread_attr posix_thread_attr_t; 53 53 54 /* Clock Types */54 /* Clock types */ 55 55 typedef long posix_clock_t; 56 56 typedef int posix_clockid_t; -
uspace/lib/posix/sys/wait.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Support for waiting.33 /** @file 34 34 */ 35 35 … … 65 65 /** @} 66 66 */ 67 -
uspace/lib/posix/sys/wait.h
reccd20e6 rdf0956ee 30 30 * @{ 31 31 */ 32 /** @file Support for waiting.32 /** @file 33 33 */ 34 34 -
uspace/lib/posix/time.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Time measurement support.33 /** @file 34 34 */ 35 35 … … 63 63 #define SECS_PER_DAY (SECS_PER_HOUR * HOURS_PER_DAY) 64 64 65 /**66 *67 * @param year68 * @return69 */70 65 static bool _is_leap_year(time_t year) 71 66 { … … 81 76 } 82 77 83 /**84 *85 * @param year86 * @param mon87 * @return88 */89 78 static int _days_in_month(time_t year, time_t mon) 90 79 { … … 103 92 } 104 93 105 /**106 *107 * @param year108 * @param mon109 * @param mday110 * @return111 */112 94 static int _day_of_year(time_t year, time_t mon, time_t mday) 113 95 { … … 120 102 } 121 103 122 /** 123 * Integer division that rounds to negative infinity. 124 * 125 * @param op1 126 * @param op2 127 * @return 104 /* Integer division that rounds to negative infinity. 128 105 */ 129 106 static time_t _floor_div(time_t op1, time_t op2) … … 136 113 } 137 114 138 /** 139 * Modulo that rounds to negative infinity. 140 * 141 * @param op1 142 * @param op2 143 * @return 115 /* Modulo that rounds to negative infinity. 144 116 */ 145 117 static time_t _floor_mod(time_t op1, time_t op2) … … 160 132 } 161 133 162 /**163 *164 * @param year165 * @param mon166 * @param mday167 * @return168 */169 134 static time_t _days_since_epoch(time_t year, time_t mon, time_t mday) 170 135 { … … 174 139 } 175 140 176 /** 177 * Assumes normalized broken-down time. 178 * 179 * @param tm 180 * @return 181 */ 141 /* Assumes normalized broken-down time. */ 182 142 static time_t _secs_since_epoch(const struct posix_tm *tm) 183 143 { … … 187 147 } 188 148 189 /**190 *191 * @param year192 * @param mon193 * @param mday194 * @return195 */196 149 static int _day_of_week(time_t year, time_t mon, time_t mday) 197 150 { … … 212 165 }; 213 166 214 /**215 *216 * @param ltm217 * @param ptm218 */219 167 static void _posix_to_long_tm(struct _long_tm *ltm, struct posix_tm *ptm) 220 168 { … … 231 179 } 232 180 233 /**234 *235 * @param ptm236 * @param ltm237 */238 181 static void _long_to_posix_tm(struct posix_tm *ptm, struct _long_tm *ltm) 239 182 { … … 253 196 } 254 197 255 /**256 *257 * @param tm258 */259 198 static void _normalize_time(struct _long_tm *tm) 260 199 { … … 302 241 } 303 242 304 /** 305 * Which day the week-based year starts on relative to the first calendar day. 243 /* Which day the week-based year starts on relative to the first calendar day. 306 244 * E.g. if the year starts on December 31st, the return value is -1. 307 *308 * @param year309 * @return310 245 */ 311 246 static int _wbyear_offset(int year) … … 315 250 } 316 251 317 /** 318 * Returns week-based year of the specified time. 252 /* Returns week-based year of the specified time. 319 253 * Assumes normalized broken-down time. 320 *321 * @param tm322 * @return323 254 */ 324 255 static int _wbyear(const struct posix_tm *tm) … … 337 268 } 338 269 339 /** 340 * Week number of the year, assuming weeks start on sunday. 341 * The first Sunday of January is the first day of week 1; 342 * days in the new year before this are in week 0. 270 /** Week number of the year, assuming weeks start on sunday. 271 * The first Sunday of January is the first day of week 1; 272 * days in the new year before this are in week 0. 343 273 * 344 274 * @param tm Normalized broken-down time. … … 351 281 } 352 282 353 /** 354 * Week number of the year, assuming weeks start on monday. 355 * If the week containing January 1st has four or more days in the new year, 356 * then it is considered week 1. Otherwise, it is the last week of the previous 357 * year, and the next week is week 1. Both January 4th and the first Thursday 358 * of January are always in week 1. 283 /** Week number of the year, assuming weeks start on monday. 284 * If the week containing January 1st has four or more days in the new year, 285 * then it is considered week 1. Otherwise, it is the last week of the previous 286 * year, and the next week is week 1. Both January 4th and the first Thursday 287 * of January are always in week 1. 359 288 * 360 289 * @param tm Normalized broken-down time. … … 376 305 } 377 306 378 /** 379 * Week number of the year, assuming weeks start on monday. 380 * The first Monday of January is the first day of week 1; 381 * days in the new year before this are in week 0. 307 /** Week number of the year, assuming weeks start on monday. 308 * The first Monday of January is the first day of week 1; 309 * days in the new year before this are in week 0. 382 310 * 383 311 * @param tm Normalized broken-down time. … … 396 324 char *posix_tzname[2]; 397 325 398 /**399 *400 */401 326 void posix_tzset(void) 402 327 { … … 408 333 } 409 334 410 /**411 *412 * @param time1413 * @param time0414 * @return415 */416 335 double posix_difftime(time_t time1, time_t time0) 417 336 { … … 419 338 } 420 339 421 /** 422 * This function first normalizes the provided broken-down time 423 * (moves all values to their proper bounds) and then tries to 424 * calculate the appropriate time_t representation. 425 * 426 * @param tm Broken-down time. 340 /** This function first normalizes the provided broken-down time 341 * (moves all values to their proper bounds) and then tries to 342 * calculate the appropriate time_t representation. 343 * 344 * @param timeptr Broken-down time. 427 345 * @return time_t representation of the time, undefined value on overflow 428 346 */ … … 440 358 } 441 359 442 /**443 *444 * @param timer445 * @return446 */447 360 struct posix_tm *posix_gmtime(const time_t *timer) 448 361 { … … 451 364 } 452 365 453 /**454 *455 * @param timer456 * @param result457 * @return458 */459 366 struct posix_tm *posix_gmtime_r(const time_t *restrict timer, 460 367 struct posix_tm *restrict result) … … 487 394 /** 488 395 * 489 * @param time r396 * @param timep 490 397 * @return 491 398 */ … … 496 403 } 497 404 498 /**499 *500 * @param timer501 * @param result502 * @return503 */504 405 struct posix_tm *posix_localtime_r(const time_t *restrict timer, 505 406 struct posix_tm *restrict result) … … 512 413 /** 513 414 * 514 * @param t imeptr415 * @param tm 515 416 * @return 516 417 */ … … 521 422 } 522 423 523 /**524 *525 * @param timeptr526 * @param buf527 * @return528 */529 424 char *posix_asctime_r(const struct posix_tm *restrict timeptr, 530 425 char *restrict buf) … … 553 448 /** 554 449 * 555 * @param time r450 * @param timep 556 451 * @return 557 452 */ … … 565 460 } 566 461 567 /**568 *569 * @param timer570 * @param buf571 * @return572 */573 462 char *posix_ctime_r(const time_t *timer, char *buf) 574 463 { … … 588 477 * @return 589 478 */ 590 size_t posix_strftime(char * restricts, size_t maxsize,591 const char * restrict format, const struct posix_tm *restricttm)479 size_t posix_strftime(char *s, size_t maxsize, 480 const char *format, const struct posix_tm *tm) 592 481 { 593 482 // TODO: use locale … … 766 655 } 767 656 768 /**769 *770 * @param s771 * @param maxsize772 * @param format773 * @param tm774 * @param loc775 * @return776 */777 extern size_t posix_strftime_l(char *restrict s, size_t maxsize,778 const char *restrict format, const struct posix_tm *restrict tm,779 posix_locale_t loc)780 {781 // TODO782 not_implemented();783 }784 785 /**786 *787 * @param clock_id788 * @param res789 * @return790 */791 657 int posix_clock_getres(posix_clockid_t clock_id, struct posix_timespec *res) 792 658 { … … 804 670 } 805 671 806 /**807 *808 * @param clock_id809 * @param tp810 * @return811 */812 672 int posix_clock_gettime(posix_clockid_t clock_id, struct posix_timespec *tp) 813 673 { … … 828 688 } 829 689 830 /**831 *832 * @param clock_id833 * @param tp834 * @return835 */836 690 int posix_clock_settime(posix_clockid_t clock_id, 837 691 const struct posix_timespec *tp) … … 852 706 } 853 707 854 /**855 *856 * @param clock_id857 * @param flags858 * @param rqtp859 * @param rmtp860 * @return861 */862 708 int posix_clock_nanosleep(posix_clockid_t clock_id, int flags, 863 709 const struct posix_timespec *rqtp, struct posix_timespec *rmtp) … … 889 735 }; 890 736 891 /**892 *893 * @param clockid894 * @param evp895 * @param timerid896 * @return897 */898 737 int posix_timer_create(posix_clockid_t clockid, 899 738 struct posix_sigevent *restrict evp, … … 904 743 } 905 744 906 /**907 *908 * @param timerid909 * @return910 */911 745 int posix_timer_delete(posix_timer_t timerid) 912 746 { … … 915 749 } 916 750 917 /**918 *919 * @param timerid920 * @return921 */922 751 int posix_timer_getoverrun(posix_timer_t timerid) 923 752 { … … 926 755 } 927 756 928 /**929 *930 * @param timerid931 * @param value932 * @return933 */934 757 int posix_timer_gettime(posix_timer_t timerid, 935 758 struct posix_itimerspec *value) … … 939 762 } 940 763 941 /**942 *943 * @param timerid944 * @param flags945 * @param value946 * @param ovalue947 * @return948 */949 764 int posix_timer_settime(posix_timer_t timerid, int flags, 950 765 const struct posix_itimerspec *restrict value, … … 968 783 if (task_stats) { 969 784 total_cycles = (posix_clock_t) (task_stats->kcycles + task_stats->ucycles); 970 free(task_stats);971 task_stats = 0;972 }785 } 786 free(task_stats); 787 task_stats = 0; 973 788 974 789 return total_cycles; -
uspace/lib/posix/time.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Time measurement support.33 /** @file 34 34 */ 35 35 … … 94 94 95 95 /* Timezones */ 96 96 97 extern int posix_daylight; 97 98 extern long posix_timezone; 98 99 extern char *posix_tzname[2]; 100 99 101 extern void posix_tzset(void); 100 102 101 /* Elapsed Time */ 103 /* time_t */ 104 102 105 extern double posix_difftime(time_t time1, time_t time0); 103 106 104 107 /* Broken-down Time */ 105 extern time_t posix_mktime(struct posix_tm *t m);108 extern time_t posix_mktime(struct posix_tm *timeptr); 106 109 extern struct posix_tm *posix_gmtime(const time_t *timer); 107 110 extern struct posix_tm *posix_gmtime_r(const time_t *restrict timer, … … 117 120 extern char *posix_ctime(const time_t *timer); 118 121 extern char *posix_ctime_r(const time_t *timer, char *buf); 122 119 123 extern size_t posix_strftime(char *restrict s, size_t maxsize, 120 124 const char *restrict format, const struct posix_tm *restrict tm); 125 121 126 extern size_t posix_strftime_l(char *restrict s, size_t maxsize, 122 127 const char *restrict format, const struct posix_tm *restrict tm, 123 128 posix_locale_t loc); 124 129 125 /* Clocks */ 130 /* Clocks. */ 131 126 132 extern int posix_clock_getres(posix_clockid_t clock_id, 127 133 struct posix_timespec *res); … … 133 139 const struct posix_timespec *rqtp, struct posix_timespec *rmtp); 134 140 141 /* Timers. */ 142 135 143 #if 0 136 144 137 /* Timers */138 145 extern int posix_timer_create(posix_clockid_t clockid, 139 146 struct posix_sigevent *restrict evp, … … 152 159 extern posix_clock_t posix_clock(void); 153 160 161 154 162 #ifndef LIBPOSIX_INTERNAL 155 163 #define tm posix_tm 164 156 165 #define timespec posix_timespec 157 166 #define itimerspec posix_itimerspec 158 167 #define timer_t posix_timer_t 159 168 160 #define daylight posix_daylight161 #define timezone posix_timezone162 #define tzname posix_tzname163 #define tzset posix_tzset164 165 169 #define difftime posix_difftime 166 167 170 #define mktime posix_mktime 168 171 #define gmtime posix_gmtime … … 171 174 #define localtime_r posix_localtime_r 172 175 176 #define daylight posix_daylight 177 #define timezone posix_timezone 178 #define tzname posix_tzname 179 #define tzset posix_tzset 180 173 181 #define asctime posix_asctime 174 182 #define asctime_r posix_asctime_r … … 176 184 #define ctime_r posix_ctime_r 177 185 #define strftime posix_strftime 178 #define strftime_l posix_strftime_l179 186 180 187 #define clock_getres posix_clock_getres -
uspace/lib/posix/unistd.c
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Miscellaneous standard definitions.33 /** @file 34 34 */ 35 35 … … 90 90 /* Always returns false, because there is no easy way to find 91 91 * out under HelenOS. */ 92 return 0;92 return false; 93 93 } 94 94 … … 207 207 /* Check file existence by attempt to open it. */ 208 208 int fd = open(path, O_RDONLY); 209 if (fd != -1) { 209 if (fd < 0) { 210 /* FIXME: open() returns error code as negative retval. */ 211 errno = -fd; 212 fd = -1; 213 } else { 210 214 close(fd); 211 215 } … … 235 239 clk_tck = ((long) cpu_stats[0].frequency_mhz) * 1000000L; 236 240 } 237 if (cpu_stats) { 238 free(cpu_stats); 239 cpu_stats = 0; 240 } 241 free(cpu_stats); 242 cpu_stats = 0; 241 243 242 244 long phys_pages = 0; … … 246 248 phys_pages = (long) (mem_stats->total / getpagesize()); 247 249 avphys_pages = (long) (mem_stats->free / getpagesize()); 248 free(mem_stats);249 mem_stats = 0;250 }250 } 251 free(mem_stats); 252 mem_stats = 0; 251 253 252 254 switch (name) { -
uspace/lib/posix/unistd.h
reccd20e6 rdf0956ee 31 31 * @{ 32 32 */ 33 /** @file Miscellaneous standard definitions.33 /** @file 34 34 */ 35 35
Note:
See TracChangeset
for help on using the changeset viewer.