By entering this site you need to consent to the use of cookies and their functional use according to this privacy policy. Cookies help us to provide the functional services of the website. Kindly read the below message of use and consent to the use.
The following cookies are stored and shared when accessing this website:
- Internal cookies for the MediaWiki site. This is used for user authentication and article modifications.
- Third-party cookies from Google providing services for Google AdSense and Google Analytics
We will never use data collected outside of the above scope.
** New MemoryTypes for JitWritable and JitReadOnly.
** New MemoryTypes for JitWritable and JitReadOnly.
−
* New synchronization syscalls 0x34, 0x35 added.
+
* New synchronization syscalls 0x34, 0x35 added: These ones allow implementation of synchronization primitives without a mutex+condvar pair. This is more efficient because when a thread wakes up from a condvar, the mutex is held and needs to perform a syscall to unlock it. If you have N threads blocking on a condvar, you need N-1 syscalls to wake all the threads. With the new syscalls, you can wake up all N with a single syscall.
+
* Added new syscall svcDumpInfoNew, but it's stubbed.
* Added new syscall svcDumpInfoNew, but it's stubbed.
* The linked-list node for KAutoObjects was added to the struct itself instead of being a separate allocation.
* The linked-list node for KAutoObjects was added to the struct itself instead of being a separate allocation.