Tools
osdebug.txt
Associated article: Building an OS-Aware Debugger
Tags: Web Development Tools Design
Published source code accompanying the article by Stewart Christie in which he examines how debugging applications developed to run under real-time operating systems can be a difficult process, but making debuggers "operating-system aware" can ease the process.
Building An OS-Aware Debugger
by Stewart Christie
Listing One
....
memset(&osCalls, 0, sizeof(osCalls));
osCalls.flag = OS_TASK_LIST | OS_TASK_INFO | OS_GET_TASK_ID |
OS_LOAD_INFO | OS_QUERY | OS_COMMAND | OS_GET_ERROR_MESSAGE;
osCalls.OS_Task_...


