libwp: Tidy header includes
[openafs.git] / src / lwp / timer.c
index 1efa91b..cad63b4 100644 (file)
@@ -1,14 +1,12 @@
 /*
  * Copyright 2000, International Business Machines Corporation and others.
  * All Rights Reserved.
- * 
+ *
  * This software has been released under the terms of the IBM Public
  * License.  For details, see the LICENSE file in the top-level source
  * directory or online at http://www.openafs.org/dl/license10.html
  */
 
-#ifndef lint
-#endif
 /*******************************************************************\
 *                                                                  *
 *                                                                  *
 \*******************************************************************/
 
 
+#include <afsconfig.h>
 #include <afs/param.h>
-#ifdef AFS_NT40_ENV
-#include <winsock2.h>
-#else
-#include <sys/time.h>
-#endif
-#include <stdlib.h>
-#ifdef AFS_LINUX20_ENV
-/* Should now have all the possible places for picking up insque. */
-#include <search.h>
-#endif
+
+#include <roken.h>
 
 #define _TIMER_IMPL_
 #include "timer.h"
@@ -50,22 +41,19 @@ typedef unsigned char bool;
 
 #define MILLION        1000000
 
-static globalInitDone = 0;
-
-#if !defined(AFS_HPUX_ENV) && !defined(AFS_NT40_ENV) && !defined(AFS_LINUX20_ENV)
-extern insque();
-#endif
+static int globalInitDone = 0;
 
 /* t1 = t2 - t3 */
-static void subtract(t1, t2, t3)
-    register struct timeval *t1, *t2, *t3;
+static void
+subtract(struct timeval *t1, struct timeval *t2,
+        struct timeval *t3)
 {
-    register int sec2, usec2, sec3, usec3;
+    int sec2, usec2, sec3, usec3;
 
-    sec2 = t2 -> tv_sec;
-    usec2 = t2 -> tv_usec;
-    sec3 = t3 -> tv_sec;
-    usec3 = t3 -> tv_usec;
+    sec2 = t2->tv_sec;
+    usec2 = t2->tv_usec;
+    sec3 = t3->tv_sec;
+    usec3 = t3->tv_usec;
 
     /* Take care of the probably non-existent case where the
      * usec field has more than 1 second in it. */
@@ -79,30 +67,31 @@ static void subtract(t1, t2, t3)
      * since the tv_sec field is unsigned */
 
     if (sec3 > sec2) {
-        t1 -> tv_usec = 0;
-        t1 -> tv_sec =  (afs_uint32) 0;
+       t1->tv_usec = 0;
+       t1->tv_sec = (afs_uint32) 0;
     } else {
-        t1 -> tv_usec = usec2 - usec3;
-        t1 -> tv_sec = sec2 - sec3;
-   }
+       t1->tv_usec = usec2 - usec3;
+       t1->tv_sec = sec2 - sec3;
+    }
 }
 
 /* t1 += t2; */
 
-static void add(t1, t2)
-    register struct timeval *t1, *t2;
+static void
+add(struct timeval *t1, struct timeval *t2)
 {
-    t1 -> tv_usec += t2 -> tv_usec;
-    t1 -> tv_sec += t2 -> tv_sec;
+    t1->tv_usec += t2->tv_usec;
+    t1->tv_sec += t2->tv_sec;
     if (t1->tv_usec >= MILLION) {
-       t1 -> tv_sec ++;
-       t1 -> tv_usec -= MILLION;
+       t1->tv_sec++;
+       t1->tv_usec -= MILLION;
     }
 }
-\f
+
 /* t1 == t2 */
 
-int TM_eql(struct timeval *t1, struct timeval *t2)
+int
+TM_eql(struct timeval *t1, struct timeval *t2)
 {
     return (t1->tv_usec == t2->tv_usec) && (t1->tv_sec == t2->tv_sec);
 }
@@ -111,51 +100,50 @@ int TM_eql(struct timeval *t1, struct timeval *t2)
 
 /*
 obsolete, commentless procedure, all done by hand expansion now.
-static bool geq(t1, t2)
-    register struct timeval *t1, *t2;
+static bool geq(struct timeval *t1, struct timeval *t2)
 {
     return (t1->tv_sec > t2->tv_sec) ||
           (t1->tv_sec == t2->tv_sec && t1->tv_usec >= t2->tv_usec);
 }
 */
 
-static bool blocking(t)
-    register struct TM_Elem *t;
+static bool
+blocking(struct TM_Elem *t)
 {
     return (t->TotalTime.tv_sec < 0 || t->TotalTime.tv_usec < 0);
 }
 
 
-\f
+
 /*
     Initializes a list -- returns -1 if failure, else 0.
 */
 
-int TM_Init(list)
-    register struct TM_Elem **list;
+int
+TM_Init(struct TM_Elem **list)
 {
     if (!globalInitDone) {
-       FT_Init (0, 0);
+       FT_Init(0, 0);
        globalInitDone = 1;
     }
     *list = new_elem();
     if (*list == NULL)
        return -1;
     else {
-       (*list) -> Next = *list;
-       (*list) -> Prev = *list;
-       (*list) -> TotalTime.tv_sec = 0;
-       (*list) -> TotalTime.tv_usec = 0;
-       (*list) -> TimeLeft.tv_sec = 0;
-       (*list) -> TimeLeft.tv_usec = 0;
-       (*list) -> BackPointer = NULL;
+       (*list)->Next = *list;
+       (*list)->Prev = *list;
+       (*list)->TotalTime.tv_sec = 0;
+       (*list)->TotalTime.tv_usec = 0;
+       (*list)->TimeLeft.tv_sec = 0;
+       (*list)->TimeLeft.tv_usec = 0;
+       (*list)->BackPointer = NULL;
 
        return 0;
     }
 }
 
-int TM_Final(list)
-    register struct TM_Elem **list;
+int
+TM_Final(struct TM_Elem **list)
 {
     if (list == NULL || *list == NULL)
        return -1;
@@ -170,18 +158,17 @@ int TM_Final(list)
     Inserts elem into the timer list pointed to by *tlistPtr.
 */
 
-void TM_Insert(tlistPtr, elem)
-    struct TM_Elem *tlistPtr;  /* pointer to head pointer of timer list */
-    struct TM_Elem *elem;      /* element to be inserted */
+void
+TM_Insert(struct TM_Elem *tlistPtr, struct TM_Elem *elem)
 {
-    register struct TM_Elem *next;
+    struct TM_Elem *next;
 
     /* TimeLeft must be set for function IOMGR with infinite timeouts */
-    elem -> TimeLeft = elem -> TotalTime;
+    elem->TimeLeft = elem->TotalTime;
 
     /* Special case -- infinite timeout */
     if (blocking(elem)) {
-       insque(elem, tlistPtr->Prev);
+       openafs_insque(elem, tlistPtr->Prev);
        return;
     }
 
@@ -190,73 +177,79 @@ void TM_Insert(tlistPtr, elem)
     add(&elem->expiration, &elem->TimeLeft);
     next = NULL;
     FOR_ALL_ELTS(p, tlistPtr, {
-       if (blocking(p) || !(elem->TimeLeft.tv_sec > p->TimeLeft.tv_sec ||
-           (elem->TimeLeft.tv_sec == p->TimeLeft.tv_sec && elem->TimeLeft.tv_usec >= p->TimeLeft.tv_usec))
-           ) {
-               next = p;       /* Save ptr to element that will be after this one */
-               break;
-       }
-     })
-
-    if (next == NULL) next = tlistPtr;
-    insque(elem, next->Prev);
+                if (blocking(p)
+                    || !(elem->TimeLeft.tv_sec > p->TimeLeft.tv_sec
+                         || (elem->TimeLeft.tv_sec == p->TimeLeft.tv_sec
+                             && elem->TimeLeft.tv_usec >=
+                             p->TimeLeft.tv_usec))
+                ) {
+                next = p;      /* Save ptr to element that will be after this one */
+                break;}
+                }
+    )
+
+       if (next == NULL)
+           next = tlistPtr;
+    openafs_insque(elem, next->Prev);
 }
-\f
+
 /*
     Walks through the specified list and updates the TimeLeft fields in it.
     Returns number of expired elements in the list.
 */
 
-int TM_Rescan(tlist)
-    struct TM_Elem *tlist;     /* head pointer of timer list */
+int
+TM_Rescan(struct TM_Elem *tlist)       /* head pointer of timer list */
 {
     struct timeval time;
-    register int expired;
+    int expired;
 
     FT_AGetTimeOfDay(&time, 0);
     expired = 0;
     FOR_ALL_ELTS(e, tlist, {
-       if (!blocking(e)) {
-           subtract(&e->TimeLeft, &e->expiration, &time);
-           if (0 > e->TimeLeft.tv_sec || (0 == e->TimeLeft.tv_sec && 0 >= e->TimeLeft.tv_usec))
-               expired++;
-       }
-    })
-    return expired;
+                if (!blocking(e)) {
+                subtract(&e->TimeLeft, &e->expiration, &time);
+                if (0 > e->TimeLeft.tv_sec
+                    || (0 == e->TimeLeft.tv_sec && 0 >= e->TimeLeft.tv_usec))
+                expired++;}
+                }
+    )
+       return expired;
 }
-    
+
 /*
     RETURNS POINTER TO earliest expired entry from tlist.
     Returns 0 if no expired entries are present.
 */
 
-struct TM_Elem *TM_GetExpired(tlist)
-    struct TM_Elem *tlist;     /* head pointer of timer list */
+struct TM_Elem *
+TM_GetExpired(struct TM_Elem *tlist)   /* head pointer of timer list */
 {
     FOR_ALL_ELTS(e, tlist, {
-       if (!blocking(e) &&
-           (0 > e->TimeLeft.tv_sec || (0 == e->TimeLeft.tv_sec && 0 >= e->TimeLeft.tv_usec)))
-               return e;
-    })
-    return NULL;
+                if (!blocking(e)
+                    && (0 > e->TimeLeft.tv_sec
+                        || (0 == e->TimeLeft.tv_sec
+                            && 0 >= e->TimeLeft.tv_usec)))
+                return e;}
+    )
+       return NULL;
 }
-    
+
 /*
     Returns a pointer to the earliest unexpired element in tlist.
     Its TimeLeft field will specify how much time is left.
     Returns 0 if tlist is empty or if there are no unexpired elements.
 */
 
-struct TM_Elem *TM_GetEarliest(tlist)
-    struct TM_Elem *tlist;
+struct TM_Elem *
+TM_GetEarliest(struct TM_Elem *tlist)
 {
-    register struct TM_Elem *e;
+    struct TM_Elem *e;
 
-    e = tlist -> Next;
+    e = tlist->Next;
     return (e == tlist ? NULL : e);
 }
 
-#if defined(AFS_HPUX_ENV) || defined(AFS_NT40_ENV)
 /* This used to be in hputils.c, but it's only use is in the LWP package. */
 /*
  * Emulate the vax instructions for queue insertion and deletion, somewhat.
@@ -269,7 +262,8 @@ struct TM_Elem *TM_GetEarliest(tlist)
  * effort...
  */
 
-void insque(struct TM_Elem *elementp, struct TM_Elem *quep)
+void
+openafs_insque(struct TM_Elem *elementp, struct TM_Elem *quep)
 {
     elementp->Next = quep->Next;
     elementp->Prev = quep;
@@ -278,11 +272,10 @@ void insque(struct TM_Elem *elementp, struct TM_Elem *quep)
     quep->Next = elementp;
 }
 
-void remque(struct TM_Elem *elementp)
+void
+openafs_remque(struct TM_Elem *elementp)
 {
     elementp->Next->Prev = elementp->Prev;
     elementp->Prev->Next = elementp->Next;
-    elementp->Prev = elementp->Next = (struct TM_Elem*)0;
+    elementp->Prev = elementp->Next = NULL;
 }
-
-#endif /* AFS_HPUX_ENV || AFS_NT40_ENV */