against current CVS:
Index: thread.h
===================================================================
RCS file: /cvsroot/openvpn/openvpn/thread.h,v
retrieving revision 1.3
diff -u -r1.3 thread.h
--- thread.h 25 Jun 2002 06:56:16 -0000 1.3
+++ thread.h 19 Feb 2003 21:21:03 -0000
@@ -136,6 +136,8 @@
static inline void
work_thread_create (void *(*start_routine) (void *), void* arg)
{
+ (void)start_routine;
+ (void)arg;
}
static inline void
@@ -146,16 +148,19 @@
static inline void
mutex_lock (int type)
{
+ (void)type;
}
static inline void
mutex_unlock (int type)
{
+ (void)type;
}
static inline void
mutex_cycle (int type)
{
+ (void)type;
}
#endif /* USE_PTHREAD */