Skip to content

Latest commit

 

History

History
72 lines (51 loc) · 1.97 KB

iceoryx2-unreleased.md

File metadata and controls

72 lines (51 loc) · 1.97 KB

iceoryx2 v?.?.?

Full Changelog

Features

  • Add Event-Multiplexer WaitSet #390
  • Add PeriodicTimer into POSIX building blocks #425

Bugfixes

  • Split SignalHandler signals to avoid infinite loops on SIGSEGV #436
  • Fix misleading warning related to default config file #437

Refactoring

  • Rename NodeEvent into WaitEvent #390
  • Bazel support for the Rust crates #349
  • Remove ACL dependency #457

Workflow

  • Example text #1

New API features

  • Example text #1

API Breaking Changes

  1. Renamed NodeEvent into WaitEvent

    // old
    while node.wait(CYCLE_TIME) != NodeEvent::TerminationRequest {
     // ...
    }
    
    // new
    while node.wait(CYCLE_TIME) != WaitEvent::TerminationRequest {
     // ...
    }