summaryrefslogtreecommitdiffstats
path: root/src/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/device.c b/src/device.c
index ef97f72..e36509e 100644
--- a/src/device.c
+++ b/src/device.c
@@ -120,16 +120,6 @@ struct mux_device
static struct collection device_list;
pthread_mutex_t device_list_mutex;
-static uint64_t mstime64(void)
-{
- struct timeval tv;
- gettimeofday(&tv, NULL);
-
- // Careful, avoid overflow on 32 bit systems
- // time_t could be 4 bytes
- return ((long long)tv.tv_sec) * 1000LL + ((long long)tv.tv_usec) / 1000LL;
-}
-
static struct mux_device* get_mux_device_for_id(int device_id)
{
struct mux_device *dev = NULL;