1CK_ARRAY_INITIALIZED(3) BSD Library Functions Manual CK_ARRAY_INITIALIZED(3)
2
4 ck_array_initialized — indicates whether an array was recently initial‐
5 ized or deinitialized
6
8 Concurrency Kit (libck, -lck)
9
11 #include <ck_array.h>
12
13 bool
14 ck_array_initialized(ck_array_t *array);
15
17 The ck_array_initialized(3) can be used to determine whether an array was
18 recently initialized with ck_array_init(3) or deinitialized with
19 ck_array_deinit(3). Behavior is undefined if a user allocates internal
20 allocator data in through other means.
21
23 This function returns true if the array is initialized, and false other‐
24 wise.
25
27 ck_array_commit(3), ck_array_put(3), ck_array_put_unique(3),
28 ck_array_remove(3), ck_array_init(3) ck_array_deinit(3),
29 ck_array_length(3), ck_array_buffer(3), CK_ARRAY_FOREACH(3)
30
31 Additional information available at http://concurrencykit.org/
32
33 October 18, 2013