pull-prototypes-to-head-20020821
[openafs.git] / src / afs / SOLARIS / osi_sleep.c
index 97b95d4..7f83ccc 100644 (file)
@@ -17,8 +17,6 @@ RCSID("$Header$");
 #include "../afs/afs_stats.h"   /* afs statistics */
 
 static int osi_TimedSleep(char *event, afs_int32 ams, int aintok);
-void afs_osi_Wakeup(char *event);
-void afs_osi_Sleep(char *event);
 
 static char waitV;
 
@@ -122,7 +120,7 @@ static afs_event_t *afs_getevent(char *event)
 #define relevent(evp) ((evp)->refcount--)
 
 
-void afs_osi_Sleep(char *event)
+void afs_osi_Sleep(void *event)
 {
     struct afs_event *evp;
     int seq;
@@ -136,7 +134,7 @@ void afs_osi_Sleep(char *event)
     relevent(evp);
 }
 
-int afs_osi_SleepSig(char *event)
+int afs_osi_SleepSig(void *event)
 {
     struct afs_event *evp;
     int seq, code = 0;
@@ -187,7 +185,7 @@ static int osi_TimedSleep(char *event, afs_int32 ams, int aintok)
 }
 
 
-void afs_osi_Wakeup(char *event)
+void afs_osi_Wakeup(void *event)
 {
     struct afs_event *evp;