iceoryx2
C++ Language Bindings
Loading...
Searching...
No Matches
waitset_enums.hpp
Go to the documentation of this file.
1// Copyright (c) 2024 Contributors to the Eclipse Foundation
2//
3// See the NOTICE file(s) distributed with this work for additional
4// information regarding copyright ownership.
5//
6// This program and the accompanying materials are made available under the
7// terms of the Apache Software License 2.0 which is available at
8// https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
9// which is available at https://opensource.org/licenses/MIT.
10//
11// SPDX-License-Identifier: Apache-2.0 OR MIT
12
13#ifndef IOX2_WAITSET_ENUMS_HPP
14#define IOX2_WAITSET_ENUMS_HPP
15
16#include <cstdint>
17
18namespace iox2 {
20enum class WaitSetCreateError : uint8_t {
25};
26
38
51
65
66} // namespace iox2
67
68#endif
WaitSetRunResult
States why the [WaitSet::run()] method returned.
@ StopRequest
The users callback returned [CallbackProgression::Stop].
@ AllEventsHandled
All events were handled.
WaitSetRunError
Defines the failures that can occur when calling [WaitSet::run()].
@ NoAttachments
Waiting on an empty [WaitSet] would lead to a deadlock therefore it causes an error.
WaitSetCreateError
Defines the failures that can occur when calling [WaitSetBuilder::create()].
@ InsufficientResources
Insufficient resources to create a [WaitSet].
@ TerminationRequest
SIGTERM signal was received.
@ Interrupt
An interrupt signal was received.
@ InternalError
Errors that indicate either an implementation issue or a wrongly configured system.
WaitSetAttachmentError
@ InsufficientCapacity
The [WaitSet]s capacity is exceeded.
@ AlreadyAttached
The attachment is already attached.
@ InsufficientPermissions
Insufficient permissions to open the config file.