6#ifndef ZEPHYR_INCLUDE_SYS_KOBJECT_H
7#define ZEPHYR_INCLUDE_SYS_KOBJECT_H
38#include <kobj-types-enum.h>
50#ifdef CONFIG_USERSPACE
51#ifdef CONFIG_GEN_PRIV_STACKS
68 unsigned int thread_id;
70#ifdef CONFIG_GEN_PRIV_STACKS
72 const struct z_stack_data *stack_data;
79 struct z_futex_data *futex_data;
89 uint8_t perms[CONFIG_MAX_THREAD_BYTES];
92 union z_object_data data;
93} __packed __aligned(4);
95struct z_object_assignment {
97 void *
const *objects;
112#define K_THREAD_ACCESS_GRANT(name_, ...) \
113 static void * const _CONCAT(_object_list_, name_)[] = \
114 { __VA_ARGS__, NULL }; \
115 static const STRUCT_SECTION_ITERABLE(z_object_assignment, \
116 _CONCAT(_object_access_, name_)) = \
117 { (&_k_thread_obj_ ## name_), \
118 (_CONCAT(_object_list_, name_)) }
121#define K_OBJ_FLAG_INITIALIZED BIT(0)
123#define K_OBJ_FLAG_PUBLIC BIT(1)
125#define K_OBJ_FLAG_ALLOC BIT(2)
127#define K_OBJ_FLAG_DRIVER BIT(3)
138void z_object_init(
const void *obj);
210#define K_THREAD_ACCESS_GRANT(thread, ...)
215static inline void z_object_init(
const void *obj)
223static inline void z_impl_k_object_access_grant(
const void *
object,
243static inline void z_impl_k_object_release(
const void *
object)
264#ifdef CONFIG_DYNAMIC_OBJECTS
280__syscall
void *k_object_alloc(
enum k_objects otype);
298__syscall
void *k_object_alloc_size(
enum k_objects otype,
size_t size);
320struct z_object *z_dynamic_object_aligned_create(
size_t align,
size_t size);
341static inline struct z_object *z_dynamic_object_create(
size_t size)
343 return z_dynamic_object_aligned_create(0, size);
359static inline void *z_impl_k_object_alloc(
enum k_objects otype)
366static inline void *z_impl_k_object_alloc_size(
enum k_objects otype,
375static inline struct z_object *z_dynamic_object_aligned_create(
size_t align,
384static inline struct z_object *z_dynamic_object_create(
size_t size)
void k_object_release(const void *object)
Release an object.
void k_object_access_grant(const void *object, struct k_thread *thread)
Grant a thread access to a kernel object.
bool k_object_is_valid(const void *obj, enum k_objects otype)
Check if a kernel object is of certain type and is valid.
void k_object_access_revoke(const void *object, struct k_thread *thread)
Revoke a thread's access to a kernel object.
void k_object_access_all_grant(const void *object)
Grant all present and future threads access to an object.
static void k_object_free(void *obj)
Free an object.
Definition: kobject.h:396
k_objects
Kernel Object Types.
Definition: kobject.h:29
@ K_OBJ_ANY
Definition: kobject.h:30
@ K_OBJ_LAST
Definition: kobject.h:42
flags
Definition: parser.h:96
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Mutex Structure.
Definition: kernel.h:2911
Thread Structure.
Definition: thread.h:250