spmc_queue: Fix leaked refernce counts
[libnbds.git] / src / spsc_queue.h
blob6a9688972307343e40f272c209c4ca114192a409
1 /*
2 libnbds
3 Copyright (C) 2013 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_SPSC_QUEUE_H
20 #define NBDS_SPSC_QUEUE_H
22 struct spsc_queue_block;
24 struct spsc_queue {
25 struct spsc_queue_block* consumer;
26 struct spsc_queue_block* producer;
29 int spsc_queue_init(struct spsc_queue* queue);
30 void spsc_queue_destroy(struct spsc_queue* queue);
32 int spsc_queue_enqueue(struct spsc_queue* queue, void* object);
33 void* spsc_queue_dequeue(struct spsc_queue* queue);
35 #endif