Changeset 6921178 in mainline


Ignore:
Timestamp:
2011-08-17T20:25:05Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c53a705
Parents:
55b1efd
Message:

Edited or removed some TODO/FIXME comments.

Location:
uspace/lib/posix
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/ctype.c

    r55b1efd r6921178  
    3737
    3838#include "ctype.h"
    39 
    40 // TODO: propose for inclusion in libc
    4139
    4240/**
  • uspace/lib/posix/errno.h

    r55b1efd r6921178  
    5757 * redefinition for such error codes.
    5858 *
    59  * FIXME: maybe all HOS error codes should be redefined
     59 * XXX: maybe all HOS error codes should be redefined
    6060 *
    6161 * NOTE: This redefinition is slightly POSIX incompatible, since the
  • uspace/lib/posix/fnmatch.c

    r55b1efd r6921178  
    624624}
    625625
    626 // FIXME: put the testcases somewhere else
     626// FIXME: put the testcases to the app/tester after fnmatch is included into libc
    627627
    628628#if 0
  • uspace/lib/posix/stdbool.h

    r55b1efd r6921178  
    3636#define POSIX_STDBOOL_H_
    3737
    38 // TODO: propose for inclusion in libc and drop bool.h,
    39 //       it's a very silly incompatibility with standard C
    40 
    4138#ifdef LIBC_BOOL_H_
    4239        #error "You can't include bool.h and stdbool.h at the same time."
  • uspace/lib/posix/stdio/scanf.c

    r55b1efd r6921178  
    707707                                                        break;
    708708                                                case LMOD_t: ;
    709                                                         // FIXME: What is unsigned counterpart of the ptrdiff_t?
     709                                                        // XXX: What is unsigned counterpart of the ptrdiff_t?
    710710                                                        size_t *pt = va_arg(arg, size_t *);
    711711                                                        *pt = (size_t) ures;
     
    12211221}
    12221222
    1223 // FIXME: put the testcases somewhere else
     1223// FIXME: put the testcases to the app/tester after scanf is included into libc
    12241224
    12251225#if 0
  • uspace/lib/posix/string.h

    r55b1efd r6921178  
    5151 * void *memmove(void *, const void *, size_t);
    5252 *
    53  * unimplemented due to missing locales
     53 * TODO: not implemented due to missing locale support
    5454 *
    5555 * int      strcoll_l(const char *, const char *, locale_t);
    5656 * char    *strerror_l(int, locale_t);
    5757 * size_t   strxfrm_l(char *restrict, const char *restrict, size_t, locale_t);
    58  *
    5958 */
    60 
    61 // TODO: provide *_l once there is locale.h
    6259
    6360#ifndef NULL
  • uspace/lib/posix/strings.h

    r55b1efd r6921178  
    4848#endif
    4949
    50 /* TODO: not implemented due to missing locale.h
     50/* TODO: not implemented due to missing locale support
    5151 *
    5252 * int strcasecmp_l(const char *, const char *, locale_t);
Note: See TracChangeset for help on using the changeset viewer.