aboutsummaryrefslogtreecommitdiff
path: root/threadlib/src/threadlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'threadlib/src/threadlib.h')
-rwxr-xr-xthreadlib/src/threadlib.h8
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 ----------- */