L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
L4::Thread_group Class Reference

C++ L4 kernel thread group interface, see Thread groups for the C interface. More...

#include <thread_group>

Inheritance diagram for L4::Thread_group:
Collaboration diagram for L4::Thread_group:

Public Member Functions

l4_msgtag_t add (Cap< Thread > thread, l4_utcb_t *utcb=l4_utcb()) noexcept
 Add thread to a thread group.
l4_msgtag_t remove (Cap< Thread > thread, l4_utcb_t *utcb=l4_utcb()) noexcept
 Remove thread from a thread group.

Additional Inherited Members

Protected Types inherited from L4::Kobject_t< Thread_group, Snd_destination, L4_PROTO_THREAD_GROUP, Type_info::Demand_t< 1 > >
typedef Thread_group Class
 The target interface type (inheriting from Kobject_t).
typedef Typeid::Iface< PROTO, Thread_group__Iface
 The interface description for the derived class.
typedef Typeid::Merge_list< Typeid::Iface_list< __Iface >, typename Snd_destination::__Iface_list > __Iface_list
 The list of all RPC interfaces provided directly or through inheritance.
Protected Member Functions inherited from L4::Kobject_t< Thread_group, Snd_destination, L4_PROTO_THREAD_GROUP, Type_info::Demand_t< 1 > >
L4::Cap< Classc () const noexcept
 Get the capability to ourselves.
Static Protected Member Functions inherited from L4::Kobject_t< Thread_group, Snd_destination, L4_PROTO_THREAD_GROUP, Type_info::Demand_t< 1 > >
static void __check_protocols__ () noexcept
 Helper to check for protocol conflicts.

Detailed Description

C++ L4 kernel thread group interface, see Thread groups for the C interface.

An L4 thread group is a collection of threads used as indirection for IPC gate and IRQ objects such that these objects can have multiple receivers, from which the kernel selects one according to a policy.

The primary use case for thread groups are multi-threaded servers and CPU core local IRQ / IPC delivery.

A thread can be bound to at most one thread group. Before binding a thread to a thread group, the thread must be bound to a task. All threads bound to the same thread group must belong to the same task.

Definition at line 34 of file thread_group.

Member Function Documentation

◆ add()

l4_msgtag_t L4::Thread_group::add ( Cap< Thread > thread,
l4_utcb_t * utcb = l4_utcb() )
inlinenoexcept

Add thread to a thread group.

Parameters
threadThread to add to the thread group.
utcbUTCB to be used for this operation, shall be the UTCB of the calling thread. Defaults to l4_utcb.
Returns
Syscall return tag containing one of the following return codes.
Return values
L4_EOKNo error occurred.
-L4_EINVALthread is not a thread object.
-L4_EEXISTthread already bound to this thread group.
-L4_EBUSYthread already bound to a different thread group.
-L4_ENOENTThread group doesn't exist.

Definition at line 53 of file thread_group.

References L4::Cap_base::cap(), and L4::Kobject::cap().

Here is the call graph for this function:

◆ remove()

l4_msgtag_t L4::Thread_group::remove ( Cap< Thread > thread,
l4_utcb_t * utcb = l4_utcb() )
inlinenoexcept

Remove thread from a thread group.

Parameters
threadThread to remove from the thread group.
utcbUTCB to be used for this operation, shall be the UTCB of the calling thread. Defaults to l4_utcb.
Returns
Syscall return tag containing one of the following return codes.
Return values
L4_EOKNo error occurred.
-L4_EINVALthread is not a thread object.

Definition at line 67 of file thread_group.

References L4::Cap_base::cap(), and L4::Kobject::cap().

Here is the call graph for this function:

The documentation for this class was generated from the following file: