Displaying 1 result from an estimated 1 matches for "jos_thread_cr".
2010 Mar 07
1
[LLVMdev] Virtual OS
...logize in advance if
the topic is slightly off topic here.
I have started a hobby project to create a virtual OS library (jos). The idea was to create a set of C API's for operating system specific tasks
i.e. File IO, threading and etc. For example:
typedef jos_handle jos_thread;
jos_thread jos_thread_create(...);
void jos_thread_destroy( jos_thread hThread );
...
The idea as a whole was to have this library at runtime and use llvm to
dynamically bind to it during execution of the user programs. So the Low
Level Virtual Machine will have very low level virtualization of the
operating system too...