- Timestamp:
- 2012-03-31T18:14:08Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d5f99e6
- Parents:
- 95c9158 (diff), 2f4fa79 (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:
- kernel
- Files:
-
- 8 edited
-
Makefile (modified) (1 diff)
-
arch/ppc32/src/ppc32.c (modified) (1 diff)
-
generic/include/str.h (modified) (1 diff)
-
generic/src/console/cmd.c (modified) (1 diff)
-
generic/src/console/kconsole.c (modified) (1 diff)
-
generic/src/lib/str.c (modified) (1 diff)
-
generic/src/main/version.c (modified) (1 diff)
-
generic/src/sysinfo/stats.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r95c9158 r81f70b4 90 90 endif 91 91 92 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-D NAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__92 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DCOPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__ 93 93 94 94 GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ -
kernel/arch/ppc32/src/ppc32.c
r95c9158 r81f70b4 130 130 visual = VISUAL_INDIRECT_8; 131 131 break; 132 case 15: 133 visual = VISUAL_RGB_5_5_5_BE; 134 break; 132 135 case 16: 133 visual = VISUAL_RGB_5_ 5_5_BE;136 visual = VISUAL_RGB_5_6_5_BE; 134 137 break; 135 138 case 24: -
kernel/generic/include/str.h
r95c9158 r81f70b4 97 97 extern bool wstr_remove(wchar_t *str, size_t pos); 98 98 99 extern int str_uint64 (const char *, char **, unsigned int, bool, uint64_t *);99 extern int str_uint64_t(const char *, char **, unsigned int, bool, uint64_t *); 100 100 101 101 extern void order_suffix(const uint64_t, uint64_t *, char *); -
kernel/generic/src/console/cmd.c
r95c9158 r81f70b4 906 906 ((char *) argv->buffer)[0] <= '9') { 907 907 uint64_t value; 908 rc = str_uint64 ((char *) argv->buffer, NULL, 0, true, &value);908 rc = str_uint64_t((char *) argv->buffer, NULL, 0, true, &value); 909 909 if (rc == EOK) 910 910 addr = (uintptr_t) value; -
kernel/generic/src/console/kconsole.c
r95c9158 r81f70b4 472 472 /* It's a number - convert it */ 473 473 uint64_t value; 474 int rc = str_uint64 (text, NULL, 0, true, &value);474 int rc = str_uint64_t(text, NULL, 0, true, &value); 475 475 switch (rc) { 476 476 case EINVAL: -
kernel/generic/src/lib/str.c
r95c9158 r81f70b4 893 893 * 894 894 */ 895 int str_uint64 (const char *nptr, char **endptr, unsigned int base,895 int str_uint64_t(const char *nptr, char **endptr, unsigned int base, 896 896 bool strict, uint64_t *result) 897 897 { -
kernel/generic/src/main/version.c
r95c9158 r81f70b4 38 38 39 39 static const char *project = "SPARTAN kernel"; 40 static const char *copyright = "Copyright (c) 2001-2011 HelenOS project";40 static const char *copyright = STRING(COPYRIGHT); 41 41 static const char *release = STRING(RELEASE); 42 42 static const char *name = STRING(NAME); -
kernel/generic/src/sysinfo/stats.c
r95c9158 r81f70b4 474 474 /* Parse the task ID */ 475 475 task_id_t task_id; 476 if (str_uint64 (name, NULL, 0, true, &task_id) != EOK)476 if (str_uint64_t(name, NULL, 0, true, &task_id) != EOK) 477 477 return ret; 478 478 … … 545 545 /* Parse the thread ID */ 546 546 thread_id_t thread_id; 547 if (str_uint64 (name, NULL, 0, true, &thread_id) != EOK)547 if (str_uint64_t(name, NULL, 0, true, &thread_id) != EOK) 548 548 return ret; 549 549 … … 662 662 /* Parse the exception number */ 663 663 uint64_t excn; 664 if (str_uint64 (name, NULL, 0, true, &excn) != EOK)664 if (str_uint64_t(name, NULL, 0, true, &excn) != EOK) 665 665 return ret; 666 666
Note:
See TracChangeset
for help on using the changeset viewer.
