Mercurial > audlegacy-plugins
view src/neon/rb.h @ 2100:14adeaf9c20f audacious-plugins-1.4.0-beta2
fix compile on ancient DBus systems
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Fri, 19 Oct 2007 03:06:01 -0500 |
parents | dc83901850df |
children | 9a9f406374c6 |
line wrap: on
line source
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _RB_H #define _RB_H #include <pthread.h> #include <stdlib.h> #ifdef RB_DEBUG #define ASSERT_RB(buf) _assert_rb(buf) #else #define ASSERT_RB(buf) #endif struct ringbuf { pthread_mutex_t lock; char* buf; char* end; char* wp; char* rp; unsigned int free; unsigned int used; unsigned int size; }; int init_rb(struct ringbuf* rb, unsigned int size); int write_rb(struct ringbuf* rb, void* buf, unsigned int size); int read_rb(struct ringbuf* rb, void* buf, unsigned int size); int read_rb_locked(struct ringbuf* rb, void* buf, unsigned int size); void reset_rb(struct ringbuf* rb); unsigned int free_rb(struct ringbuf* rb); unsigned int used_rb(struct ringbuf* rb); void destroy_rb(struct ringbuf* rb); #endif