Changeset e5fcf00 in mainline
- Timestamp:
- 2005-12-10T17:07:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7a8c866a
- Parents:
- e8a9dc3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/kconsole.c
re8a9dc3 re5fcf00 325 325 __address symaddr; 326 326 bool isaddr = false; 327 bool isptr = false; 327 328 328 329 /* If we get a name, try to find it in symbol table */ … … 331 332 isaddr = true; 332 333 text++;len--; 334 } else if (text[0] == '*') { 335 isptr = true; 336 text++;len--; 333 337 } 334 338 strncpy(symname, text, min(len+1, MAX_SYMBOL_NAME)); … … 345 349 if (isaddr) 346 350 *result = (__native)symaddr; 351 else if (isptr) 352 *result = **((__native **)symaddr); 347 353 else 348 354 *result = *((__native *)symaddr);
Note:
See TracChangeset
for help on using the changeset viewer.