Changeset 3550c393 in mainline
- Timestamp:
- 2005-12-11T21:36:42Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba276f7
- Parents:
- 0c8e692
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r0c8e692 r3550c393 189 189 $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump 190 190 tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 191 # Do it once again, this time to get correct even the symbols 192 # on architectures, that have bss after symtab 193 $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab generic/src/debug/real_map.bin generic/src/debug/sizeok_map.o 194 $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre 195 $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump 196 tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 197 191 198 192 199 generic/src/debug/real_map.o: generic/src/debug/real_map.bin -
arch/amd64/_link.ld.in
r0c8e692 r3550c393 49 49 50 50 *(.eh_frame); 51 *(.bss); /* uninitialized static variables */52 51 53 52 symbol_table = .; 54 53 *(symtab.*); /* Symbol table, must be LAST symbol!*/ 54 55 *(.bss); /* uninitialized static variables */ 55 56 56 57 kdata_end = .; -
arch/ia32/_link.ld.in
r0c8e692 r3550c393 47 47 hardcoded_unmapped_kdata_size = .; 48 48 LONG(unmapped_kdata_end - unmapped_kdata_start); 49 *(.bss); /* uninitialized static variables */50 49 symbol_table = .; 51 50 *(symtab.*); /* Symbol table, must be LAST symbol! */ 52 51 *(.bss); /* uninitialized static variables */ 53 52 kdata_end = .; 54 53 } -
generic/src/console/cmd.c
r0c8e692 r3550c393 359 359 printf("Calling f(): 0x%p: %s\n", symaddr, symbol); 360 360 f = (__native (*)(void)) symaddr; 361 printf("Result: 0x% X\n", f());361 printf("Result: 0x%p\n", f()); 362 362 } 363 363 … … 383 383 printf("Calling f(0x%x): 0x%p: %s\n", arg1, symaddr, symbol); 384 384 f = (__native (*)(__native)) symaddr; 385 printf("Result: 0x% x\n", f(arg1));385 printf("Result: 0x%p\n", f(arg1)); 386 386 } 387 387 … … 409 409 arg1, arg2, symaddr, symbol); 410 410 f = (__native (*)(__native,__native)) symaddr; 411 printf("Result: 0x% x\n", f(arg1, arg2));411 printf("Result: 0x%p\n", f(arg1, arg2)); 412 412 } 413 413 … … 436 436 arg1, arg2, arg3, symaddr, symbol); 437 437 f = (__native (*)(__native,__native,__native)) symaddr; 438 printf("Result: 0x% x\n", f(arg1, arg2, arg3));438 printf("Result: 0x%p\n", f(arg1, arg2, arg3)); 439 439 } 440 440 -
generic/src/console/kconsole.c
r0c8e692 r3550c393 216 216 return 0; 217 217 218 if (found > 1 ) {218 if (found > 1 && !strlen(output)) { 219 219 printf("\n"); 220 220 startpos = NULL; … … 287 287 for (i=0;tmp[i] && curlen < MAX_CMDLINE;i++,curlen++) 288 288 insert_char(current, tmp[i], i+position); 289 if (found == 1) { /* One match */ 290 for (i=position;i<curlen;i++) 289 290 if (strlen(tmp) || found==1) { /* If we have a hint */ 291 for (i=position;i<curlen;i++) 291 292 putchar(current[i]); 292 293 position += strlen(tmp); 293 294 /* Add space to end */ 294 if (position == curlen && curlen < MAX_CMDLINE) { 295 if (found == 1 && position == curlen && \ 296 curlen < MAX_CMDLINE) { 295 297 current[position] = ' '; 296 298 curlen++; … … 298 300 putchar(' '); 299 301 } 300 } else { 302 } else { /* No hint, table was printed */ 301 303 printf("%s> ", prompt); 302 304 for (i=0; i<curlen;i++) -
generic/src/debug/symtab.c
r0c8e692 r3550c393 173 173 return 0; 174 174 175 if (found > 1 ) {175 if (found > 1 && !strlen(output)) { 176 176 printf("\n"); 177 177 startpos = 0;
Note:
See TracChangeset
for help on using the changeset viewer.