PipeWire 1.0.5
Loading...
Searching...
No Matches
thread.h
Go to the documentation of this file.
1/* Simple Plugin API */
2/* SPDX-FileCopyrightText: Copyright © 2021 Wim Taymans */
3/* SPDX-License-Identifier: MIT */
4
5#ifndef SPA_THREAD_H
6#define SPA_THREAD_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <string.h>
13#include <errno.h>
14
15#include <spa/utils/defs.h>
16#include <spa/utils/hook.h>
17#include <spa/utils/dict.h>
18
31#define SPA_TYPE_INFO_Thread SPA_TYPE_INFO_POINTER_BASE "Thread"
32struct spa_thread;
33
34#define SPA_TYPE_INTERFACE_ThreadUtils SPA_TYPE_INFO_INTERFACE_BASE "ThreadUtils"
35#define SPA_VERSION_THREAD_UTILS 0
36struct spa_thread_utils { struct spa_interface iface; };
40#define SPA_VERSION_THREAD_UTILS_METHODS 0
41 uint32_t version;
44 struct spa_thread * (*create) (void *object, const struct spa_dict *props,
45 void *(*start)(void*), void *arg);
47 int (*join)(void *object, struct spa_thread *thread, void **retval);
50 int (*get_rt_range) (void *object, const struct spa_dict *props, int *min, int *max);
54 int (*acquire_rt) (void *object, struct spa_thread *thread, int priority);
56 int (*drop_rt) (void *object, struct spa_thread *thread);
57};
58
61static inline struct spa_thread *spa_thread_utils_create(struct spa_thread_utils *o,
62 const struct spa_dict *props, void *(*start_routine)(void*), void *arg)
63{
64 struct spa_thread *res = NULL;
66 struct spa_thread_utils_methods, res, create, 0,
67 props, start_routine, arg);
68 return res;
69}
70
73static inline int spa_thread_utils_join(struct spa_thread_utils *o,
74 struct spa_thread *thread, void **retval)
75{
76 int res = -ENOTSUP;
78 struct spa_thread_utils_methods, res, join, 0,
79 thread, retval);
80 return res;
81}
82
85static inline int spa_thread_utils_get_rt_range(struct spa_thread_utils *o,
86 const struct spa_dict *props, int *min, int *max)
87{
88 int res = -ENOTSUP;
90 struct spa_thread_utils_methods, res, get_rt_range, 0,
91 props, min, max);
92 return res;
93}
94
97static inline int spa_thread_utils_acquire_rt(struct spa_thread_utils *o,
98 struct spa_thread *thread, int priority)
99{
100 int res = -ENOTSUP;
102 struct spa_thread_utils_methods, res, acquire_rt, 0,
103 thread, priority);
104 return res;
105}
106
109static inline int spa_thread_utils_drop_rt(struct spa_thread_utils *o,
110 struct spa_thread *thread)
111{
112 int res = -ENOTSUP;
114 struct spa_thread_utils_methods, res, drop_rt, 0, thread);
115 return res;
116}
117
118#define SPA_KEY_THREAD_NAME "thread.name" /* the thread name */
119#define SPA_KEY_THREAD_STACK_SIZE "thread.stack-size" /* the stack size of the thread */
120
125#ifdef __cplusplus
126} /* extern "C" */
127#endif
128
129#endif /* SPA_THREAD_H */
spa/utils/defs.h
#define spa_interface_call_res(iface, method_type, res, method, vers,...)
Invoke method named method in the callbacks on the given interface object.
Definition hook.h:251
static int spa_thread_utils_acquire_rt(struct spa_thread_utils *o, struct spa_thread *thread, int priority)
acquire realtime priority, a priority of -1 refers to the priority configured in the realtime module
Definition thread.h:107
static int spa_thread_utils_get_rt_range(struct spa_thread_utils *o, const struct spa_dict *props, int *min, int *max)
get realtime priority range for threads created with props
Definition thread.h:95
static struct spa_thread * spa_thread_utils_create(struct spa_thread_utils *o, const struct spa_dict *props, void *(*start_routine)(void *), void *arg)
create a new thread that runs start with arg
Definition thread.h:71
static int spa_thread_utils_join(struct spa_thread_utils *o, struct spa_thread *thread, void **retval)
stop and join a thread
Definition thread.h:83
static int spa_thread_utils_drop_rt(struct spa_thread_utils *o, struct spa_thread *thread)
drop realtime priority
Definition thread.h:119
spa/utils/hook.h
spa/utils/string.h
Definition dict.h:39
Definition hook.h:138
thread utils
Definition thread.h:48
int(* drop_rt)(void *object, struct spa_thread *thread)
drop realtime priority
Definition thread.h:66
uint32_t version
Definition thread.h:51
int(* get_rt_range)(void *object, const struct spa_dict *props, int *min, int *max)
get realtime priority range for threads created with props
Definition thread.h:60
int(* join)(void *object, struct spa_thread *thread, void **retval)
stop and join a thread
Definition thread.h:57
int(* acquire_rt)(void *object, struct spa_thread *thread, int priority)
acquire realtime priority, a priority of -1 refers to the priority configured in the realtime module
Definition thread.h:64
Definition thread.h:45
struct spa_interface iface
Definition thread.h:45
spa/utils/dict.h