RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
assoc.h
Go to the documentation of this file.
1
10#ifndef _RTEMS_RTEMS_ASSOC_H
11#define _RTEMS_RTEMS_ASSOC_H
12
13#include <stddef.h>
14#include <stdint.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
31typedef struct {
32 const char *name;
33 uint32_t local_value;
34 uint32_t remote_value;
36
37/*
38 * Flag/marker for optional default value in each table
39 */
40
41#define RTEMS_ASSOC_DEFAULT_NAME "(default)"
42
47 const rtems_assoc_t *,
48 const char *
49);
50
55 const rtems_assoc_t *,
56 uint32_t
57);
58
59uint32_t rtems_assoc_remote_by_local(
60 const rtems_assoc_t *,
61 uint32_t
62);
63
68 const rtems_assoc_t *,
69 uint32_t
70);
71
76 const rtems_assoc_t *,
77 const char *
78);
79
84 const rtems_assoc_t *,
85 const char *
86);
87
92 const rtems_assoc_t *,
93 uint32_t
94);
95
100 const rtems_assoc_t *,
101 uint32_t
102);
103
108 const rtems_assoc_t *,
109 uint32_t
110);
111
116 const rtems_assoc_t *,
117 uint32_t ,
118 char *
119);
120
125 const rtems_assoc_t *,
126 uint32_t ,
127 char *
128);
129
130uint32_t rtems_assoc_local_by_remote_bitfield(
131 const rtems_assoc_t *,
132 uint32_t
133);
134
139 const rtems_assoc_t *ap,
140 uint32_t local_value
141);
142
143#if defined(INSIDE_ASSOC)
144
145#define rtems_assoc_is_default(_ap) \
146 ((_ap)->name && !strcmp((_ap)->name, RTEMS_ASSOC_DEFAULT_NAME))
147
154const char *rtems_assoc_name_bad(
155 uint32_t bad_value
156);
157#endif
158
159typedef struct {
160 uint32_t bits;
161 const char *name;
163
180 uint32_t value,
181 char *buffer,
182 size_t buffer_size,
183 const rtems_assoc_32_pair *pairs,
184 size_t pair_count,
185 const char *separator,
186 const char *fallback
187);
188
200 uint32_t states,
201 char *buffer,
202 size_t buffer_size
203);
204
207#ifdef __cplusplus
208}
209#endif
210
211#endif /* ! _RTEMS_RTEMS_ASSOC_H */
char * rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, uint32_t, char *)
RTEMS Associate Name by Local Bitfield.
Definition: assocnamebylocalbitfield.c:19
uint32_t rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t)
RTEMS Associate Local by Remote.
Definition: assoclocalbyremote.c:19
char * rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, uint32_t, char *)
RTEMS Associate Name by Remote Bitfield.
Definition: assocnamebyremotebitfield.c:20
uint32_t rtems_assoc_local_by_name(const rtems_assoc_t *, const char *)
RTEMS Associate Local by Name.
Definition: assoclocalbyname.c:29
const char * rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t)
RTEMS Associate Name by Remote.
Definition: assocnamebyremote.c:20
size_t rtems_assoc_thread_states_to_string(uint32_t states, char *buffer, size_t buffer_size)
Converts the specified thread states into a text representation.
Definition: assocthreadstatestostring.c:42
uint32_t rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t)
RTEMS Assoc Routines.
Definition: assocremotebylocalbitfield.c:30
const rtems_assoc_t * rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t)
RTEMS Associate Pointer by Remote.
Definition: assocptrbyremote.c:19
const rtems_assoc_t * rtems_assoc_ptr_by_name(const rtems_assoc_t *, const char *)
RTEMS Associate Pointer by Name.
Definition: assocptrbyname.c:20
size_t rtems_assoc_32_to_string(uint32_t value, char *buffer, size_t buffer_size, const rtems_assoc_32_pair *pairs, size_t pair_count, const char *separator, const char *fallback)
Converts the specified value into a text representation.
Definition: assoc32tostring.c:27
const rtems_assoc_t * rtems_assoc_ptr_by_local(const rtems_assoc_t *ap, uint32_t local_value)
RTEMS Associate Pointer by Local.
Definition: assocptrbylocal.c:19
const char * rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t)
RTEMS Associate Name by Local.
Definition: assocnamebylocal.c:19
uint32_t rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *)
RTEMS Associate Remote by Name.
Definition: assocremotebyname.c:19
Definition: assoc.h:159
Definition: assoc.h:31