1CK_ARRAY_PUT(3) BSD Library Functions Manual CK_ARRAY_PUT(3)
2
4 ck_array_put — attempt immediate or deferred insertion of a pointer into
5 array
6
8 Concurrency Kit (libck, -lck)
9
11 #include <ck_array.h>
12
13 bool
14 ck_array_put(ck_array_t *array, void *pointer);
15
17 The ck_array_put(3) function will attempt to insert the value of pointer
18 into the array pointed to by array. This function may incur additional
19 memory allocations if not enough memory has been allocated in the array
20 for a new entry. The operation is also free to apply the operation imme‐
21 diately if there is an opportunity for elimination with a pending (uncom‐
22 mitted) remove operation.
23
25 This function returns true if the put operation succeeded. It will return
26 false otherwise due to internal allocation failures.
27
29 ck_array_init(3), ck_array_commit(3), ck_array_put_unique(3),
30 ck_array_remove(3), ck_array_deinit(3) ck_array_length(3),
31 ck_array_buffer(3), ck_array_initialized(3), CK_ARRAY_FOREACH(3)
32
33 Additional information available at http://concurrencykit.org/
34
35 October 18, 2013