• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How can I write & debug these? Any good links?

aceman817

Senior member
In my operating systems course, we're working with syncronization, semaphores, and monitors. Is there a way for me to test some of the code that I write? I don't think a standard C/C++ compiler can handle the task. Additionally, do you guys know of any good links, books, etc. on the topics of Dijkstra semaphores, simultaneous semaphores, or the sleepy barber problem?

Thanks,
Al
 
I'm not sure what monitors are, but a standard compiler can handle all of the rest just fine. It just depends on the implementation of your locks and such, if you need a specific library for handling them then you'll need to make sure it's available to the compiler you're using.
 
Back
Top