I'm migrating a project implemented using Starterware to a SYSBIOS-compatible form. During the process I noticed that the modules provided by SYSBIOS handle many of the details that the programmer had to handle explicitly with Starterware. For example, HWIs in SYSBIOS clear an interrupt at point before or during the execution of an ISR and enable the interrupt after the ISR completes (assuming it is self masking).
I'm trying to get more detailed information about how the various SYSBIOS modules and the scheduler are implemented. Can someone point me to the relevant documentation or better yet any code I can look at? I've just started browsing through the source files in the bios_<version number> directory but at first glance this doesn't seem to have everything I'm looking for.
THanks.