diff options
author | Georg Holzmann <grholzi@users.sourceforge.net> | 2007-08-25 22:21:14 +0000 |
---|---|---|
committer | Georg Holzmann <grholzi@users.sourceforge.net> | 2007-08-25 22:21:14 +0000 |
commit | 97e0380aeb1807103130b686fcaff746b662a002 (patch) | |
tree | fff9f25012148f0b5a4ca0c690f57ca0c18f4a34 /threadlib/src/threadlib.h | |
parent | b9c9f9e137910daedb09a363f102eb688aeb77d6 (diff) |
fixed a nameclash with libaviplay which crashed pd when GEM was loaded
before threadlib
svn path=/trunk/externals/grh/; revision=8691
Diffstat (limited to 'threadlib/src/threadlib.h')
-rwxr-xr-x | threadlib/src/threadlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/threadlib/src/threadlib.h b/threadlib/src/threadlib.h index b94fc93..efbeeff 100755 --- a/threadlib/src/threadlib.h +++ b/threadlib/src/threadlib.h @@ -55,12 +55,12 @@ EXTERN_STRUCT _fifo; #define t_fifo struct _fifo
/* function prototypes */
-THREADLIB_EXTERN t_fifo * fifo_init(void);
-THREADLIB_EXTERN void fifo_destroy(t_fifo*);
+THREADLIB_EXTERN t_fifo * threadlib_fifo_init(void);
+THREADLIB_EXTERN void threadlib_fifo_destroy(t_fifo*);
/* fifo_put() and fifo_get are the only threadsafe functions!!! */
-THREADLIB_EXTERN void fifo_put(t_fifo*, void*);
-THREADLIB_EXTERN void* fifo_get(t_fifo*);
+THREADLIB_EXTERN void threadlib_fifo_put(t_fifo*, void*);
+THREADLIB_EXTERN void* threadlib_fifo_get(t_fifo*);
/* --------- callback FIFO of pd devel ----------- */
|