- Add Event-Multiplexer
WaitSet
#390 - Add
PeriodicTimer
into POSIX building blocks #425 - Developer permissions for resources #460
- Add
--send-copy
flag to Benchmark to consider mem operations #483
- Split SignalHandler signals to avoid infinite loops on SIGSEGV #436
- Fix misleading warning related to default config file #437
- Rename
NodeEvent
intoWaitEvent
#390 - Bazel support for the Rust crates #349
- Remove ACL dependency #457
- Example text #1
- Example text #1
-
Removed
NodeEvent
.Node::wait
returns nowResult<(), NodeWaitFailure>
// old while node.wait(CYCLE_TIME) != NodeEvent::TerminationRequest { // ... } // new while node.wait(CYCLE_TIME).is_ok() { // ... }