L4Re Operating System Framework
Interface and Usage Documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
semaphore.h
Go to the documentation of this file.
1
6/*
7 * (c) 2015 Alexander Warg <alexander.warg@kernkonzept.com>
8 *
9 * License: see LICENSE.spdx (in this directory or the directories above)
10 */
11
12#pragma once
13
14#include <l4/sys/irq.h>
15
25enum L4_semaphore_op
26{
27 L4_SEMAPHORE_OP_DOWN = 0,
28 // semaphore up is IRQ_OP_TRIGGER with IRQ/Triggerable protocol
29};
30
49
54l4_semaphore_up_u(l4_cap_idx_t sem, l4_utcb_t *utcb) L4_NOTHROW
55{
56 return l4_irq_trigger_u(sem, utcb);
57}
58
79
84l4_semaphore_down_u(l4_cap_idx_t sem, l4_timeout_t to,
85 l4_utcb_t *utcb) L4_NOTHROW;
86
87
89l4_semaphore_down_u(l4_cap_idx_t sem, l4_timeout_t to,
91{
92 l4_msg_regs_t *m = l4_utcb_mr_u(utcb);
93 m->mr[0] = L4_SEMAPHORE_OP_DOWN;
94 return l4_ipc_call(sem, utcb, l4_msgtag(L4_PROTO_SEMAPHORE, 1, 0, 0), to);
95}
96
97
100{
101 return l4_semaphore_down_u(sem, to, l4_utcb());
102}
103
unsigned long l4_cap_idx_t
Capability selector type.
Definition types.h:335
l4_msgtag_t l4_ipc_call(l4_cap_idx_t object, l4_utcb_t *utcb, l4_msgtag_t tag, l4_timeout_t timeout) L4_NOTHROW
Object call (usual invocation).
Definition ipc.h:565
l4_msgtag_t l4_irq_trigger_u(l4_cap_idx_t irq, l4_utcb_t *utcb) L4_NOTHROW
Trigger the object.
Definition irq.h:259
l4_msgtag_t l4_irq_trigger(l4_cap_idx_t irq) L4_NOTHROW
Trigger an IRQ.
Definition irq.h:303
l4_msgtag_t l4_msgtag(long label, unsigned words, unsigned items, unsigned flags) L4_NOTHROW
Create a message tag from the specified values.
Definition types.h:404
@ L4_PROTO_SEMAPHORE
Protocol for semaphore objects.
Definition types.h:61
l4_msgtag_t l4_semaphore_up(l4_cap_idx_t sem) L4_NOTHROW
Semaphore up operation (wrapper for trigger()).
Definition semaphore.h:45
l4_msgtag_t l4_semaphore_down(l4_cap_idx_t sem, l4_timeout_t timeout) L4_NOTHROW
Semaphore down operation.
Definition semaphore.h:99
struct l4_utcb_t l4_utcb_t
Opaque type for the UTCB.
Definition utcb.h:56
l4_utcb_t * l4_utcb(void) L4_NOTHROW L4_PURE
Get the UTCB address.
Definition utcb.h:346
#define L4_NOTHROW
Mark a function declaration and definition as never throwing an exception.
Definition compiler.h:159
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
C Irq interface.
Message tag data structure.
Definition types.h:153
Encapsulation of the message-register block in the UTCB.
Definition utcb.h:68
l4_umword_t mr[L4_UTCB_GENERIC_DATA_SIZE]
Message registers.
Definition utcb.h:69
Timeout pair.
Definition __timeout.h:53