Changeset f3386d7 in mainline for uspace/lib/posix/source
- Timestamp:
- 2013-07-15T20:44:54Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f8d3df3
- Parents:
- 273c976 (diff), a940f1d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/lib/posix/source
- Files:
-
- 20 edited
-
ctype.c (modified) (1 diff)
-
errno.c (modified) (2 diffs)
-
fcntl.c (modified) (1 diff)
-
fnmatch.c (modified) (1 diff)
-
getopt.c (modified) (1 diff)
-
locale.c (modified) (1 diff)
-
math.c (modified) (1 diff)
-
pwd.c (modified) (1 diff)
-
signal.c (modified) (1 diff)
-
stdio.c (modified) (1 diff)
-
stdio/scanf.c (modified) (1 diff)
-
stdlib.c (modified) (4 diffs)
-
stdlib/strtol.c (modified) (1 diff)
-
stdlib/strtold.c (modified) (1 diff)
-
string.c (modified) (1 diff)
-
strings.c (modified) (1 diff)
-
sys/stat.c (modified) (1 diff)
-
sys/wait.c (modified) (1 diff)
-
time.c (modified) (1 diff)
-
unistd.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/ctype.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "posix/ctype.h" -
uspace/lib/posix/source/errno.c
r273c976 rf3386d7 32 32 /** @file System error numbers. 33 33 */ 34 #define LIBPOSIX_INTERNAL 35 #define __POSIX_DEF__(x) posix_##x 34 36 35 37 #include "posix/errno.h" … … 43 45 { 44 46 if (*__errno() != 0) { 45 _posix_errno = abs(*__errno());47 _posix_errno = posix_abs(*__errno()); 46 48 *__errno() = 0; 47 49 } -
uspace/lib/posix/source/fcntl.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "internal/common.h" -
uspace/lib/posix/source/fnmatch.c
r273c976 rf3386d7 43 43 44 44 #define LIBPOSIX_INTERNAL 45 #define __POSIX_DEF__(x) posix_##x 45 46 46 47 #include "libc/stdbool.h" -
uspace/lib/posix/source/getopt.c
r273c976 rf3386d7 33 33 */ 34 34 #define LIBPOSIX_INTERNAL 35 #define __POSIX_DEF__(x) posix_##x 35 36 36 37 #include "internal/common.h" -
uspace/lib/posix/source/locale.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "internal/common.h" -
uspace/lib/posix/source/math.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "internal/common.h" -
uspace/lib/posix/source/pwd.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "libc/stdbool.h" -
uspace/lib/posix/source/signal.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "posix/signal.h" -
uspace/lib/posix/source/stdio.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" -
uspace/lib/posix/source/stdio/scanf.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "posix/assert.h" -
uspace/lib/posix/source/stdlib.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" … … 62 63 // TODO: low priority, just a compile-time dependency of binutils 63 64 not_implemented(); 65 return 1; 64 66 } 65 67 … … 231 233 // TODO: low priority, just a compile-time dependency of binutils 232 234 not_implemented(); 235 return 0; 233 236 } 234 237 … … 243 246 int posix_system(const char *string) { 244 247 // TODO: does nothing at the moment 248 not_implemented(); 245 249 return 0; 246 250 } -
uspace/lib/posix/source/stdlib/strtol.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "../internal/common.h" -
uspace/lib/posix/source/stdlib/strtold.c
r273c976 rf3386d7 34 34 35 35 #define LIBPOSIX_INTERNAL 36 #define __POSIX_DEF__(x) posix_##x 36 37 37 38 #include "../internal/common.h" -
uspace/lib/posix/source/string.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" -
uspace/lib/posix/source/strings.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" -
uspace/lib/posix/source/sys/stat.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "../internal/common.h" -
uspace/lib/posix/source/sys/wait.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "../internal/common.h" -
uspace/lib/posix/source/time.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" -
uspace/lib/posix/source/unistd.c
r273c976 rf3386d7 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x 37 38 38 39 #include "internal/common.h" … … 421 422 } 422 423 424 unsigned int posix_alarm(unsigned int seconds) 425 { 426 not_implemented(); 427 return 0; 428 } 429 423 430 /** @} 424 431 */
Note:
See TracChangeset
for help on using the changeset viewer.
