C/C++
newos.txt
Associated article: The NewOS Operating System
Tags: C/C++
Published source code accompanying the article by Travis Geiselbrecht in in which he presents NewOS, a freely-available lightweight operating system written in C for a variety of platforms, including Intel- and AMD-based PCs and the Sega Dreamcast. Also see NEWOS.ZIP.
The NewOS Operating System by Travis K. Geiselbrecht Listing One proc_id proc_create_proc(const char *path, const char *name, int priority); int proc_kill_proc(proc_id id); int proc_wait_on_proc(proc_id id, int *retcode); ...


