mpsc_queue: Make tests more verbose in case of failure
[libnbds.git] / src / spmc_queue.h
blob39c6520bc20ac7e712eb3d4cccbcd3c6c3721e56
1 /*
2 libnbds
3 Copyright (C) 2014 Paweł Dziepak
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef NBDS_SPMC_QUEUE_H
20 #define NBDS_SPMC_QUEUE_H
22 struct spmc_queue_block;
24 struct spmc_queue {
25 struct spmc_queue_block* consumer_consumer;
26 struct spmc_queue_block* producer;
28 uint32_t reference_counter;
29 struct spmc_queue_block* delete_list;
32 int spmc_queue_init(struct spmc_queue* queue);
33 void spmc_queue_destroy(struct spmc_queue* queue);
35 int spmc_queue_enqueue(struct spmc_queue* queue, void* object);
36 void* spmc_queue_dequeue(struct spmc_queue* queue);
38 #endif