]> git.puffer.fish Git - mirror/frr.git/commitdiff
ospf6d: time: remove unused/duplicate helpers
authorDavid Lamparter <equinox@opensourcerouting.org>
Mon, 23 Jan 2017 15:54:56 +0000 (16:54 +0100)
committerDavid Lamparter <equinox@opensourcerouting.org>
Mon, 23 Jan 2017 17:26:32 +0000 (18:26 +0100)
timersub() & timerclear() are in sys/time.h;
timerstring_local() is unused.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
ospf6d/ospf6d.h

index b41e8ff001eecc935b40561bf2e0b7473f1a7afc..f0bc0227493adb15603263bb7a39cc97468d85bf 100644 (file)
@@ -58,21 +58,6 @@ extern struct thread_master *master;
 #define OSPF6_NEIGHBOR(x) ((struct ospf6_neighbor *) (x))
 
 /* operation on timeval structure */
-#ifndef timerclear
-#define timerclear(a) (a)->tv_sec = (tvp)->tv_usec = 0
-#endif /*timerclear*/
-#ifndef timersub
-#define timersub(a, b, res)                           \
-  do {                                                \
-    (res)->tv_sec = (a)->tv_sec - (b)->tv_sec;        \
-    (res)->tv_usec = (a)->tv_usec - (b)->tv_usec;     \
-    if ((res)->tv_usec < 0)                           \
-      {                                               \
-        (res)->tv_sec--;                              \
-        (res)->tv_usec += 1000000;                    \
-      }                                               \
-  } while (0)
-#endif /*timersub*/
 #define timerstring(tv, buf, size)                      \
   do {                                                  \
     if ((tv)->tv_sec / 60 / 60 / 24)                    \
@@ -87,15 +72,6 @@ extern struct thread_master *master;
                 (tv)->tv_sec / 60LL % 60,               \
                 (tv)->tv_sec % 60LL);                   \
   } while (0)
-#define timerstring_local(tv, buf, size)                  \
-  do {                                                    \
-    int ret;                                              \
-    struct tm *tm;                                        \
-    tm = localtime (&(tv)->tv_sec);                       \
-    ret = strftime (buf, size, "%Y/%m/%d %H:%M:%S", tm);  \
-    if (ret == 0)                                         \
-      zlog_warn ("strftime error");                       \
-  } while (0)
 
 #define threadtimer_string(now, t, buf, size)                         \
   do {                                                                \