This project is mirrored from https://github.com/hermitcore/hermit-rs.git.
Pull mirroring updated .
-
hermit-sys-0.5.3
use latest version of libhermit - fix initialization of virtio network driver
-
hermit-sys-0.5.2
switch to libhermit-rs 0.6.3 - switch to libhermit-rs 0.6.3 - add the option to disable the FUSE support
-
hermit-abi-0.3.2
Fix symbol typo Fix symbol typo: sys_processor_count -> sys_get_processor_count
-
hermit-abi-0.3.0
add BSD socket interface - declare Rust ABI as deprecated - use always a C interface to the kernel - add read_entropy syscall (#395)
-
hermit-sys-0.2.5
remove deadlock within the network stack To avoid deadlocks, spinlocks and the device checks are revised. In principle, the network thread doesn't block, if another thread is already checking the device. In addition, the send and receive operations are optimized to stay longer in polling mode and assign the network handler to the core, where the network thread is running. This should reduce the number of wakeup interrupts.
-
hermit-abi-0.2.4
add try_lock support for spinlock Without try_lock support, the mutex isn't able to avoid busy waiting.