We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello, I'm programming a OS on the C167 & XC167. Everything works fine on Simulation and with Monitor on the XC167. But when I want to debug the program on the C167 it changes structure. Here is my struct.
typedef struct taskStateStructure { unsigned int id; unsigned int *stack; unsigned int stackSize; unsigned int *usrStack; unsigned int usrStackSize; unsigned int taskAddress; unsigned int sp; unsigned int prio; TaskStateType taskState; unsigned int nrOfOccupiedResources; unsigned int nrOfActivations; unsigned int isPreemptive; unsigned int eventMask; unsigned int eventMaskSet; struct taskStateStructure* next; }tss;