David Xu 50586e8b6b 1. make umtx sharable between processes, the way is two or more processes
call mmap() to create a shared space, and then initialize umtx on it,
   after that, each thread in different processes can use the umtx same
   as threads in same process.
2. introduce a new syscall _umtx_op to support timed lock and condition
   variable semantics. also, orignal umtx_lock and umtx_unlock inline
   functions now are reimplemented by using _umtx_op, the _umtx_op can
   use arbitrary id not just a thread id.
2004-12-18 12:52:44 +00:00
..
2004-12-06 19:46:02 +00:00
2004-12-15 12:18:41 +00:00
2004-11-09 16:47:47 +00:00
2004-12-13 18:26:13 +00:00
2004-10-12 08:22:08 +00:00
2004-11-10 07:16:59 +00:00
2004-11-17 09:09:55 +00:00
2004-12-14 21:35:00 +00:00