From e9624ef52336483a5157e21cbc53706d37f2dbee Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Mon, 18 Jun 2018 15:18:41 +0000 Subject: [PATCH] Cleanup: Removed unused structure --- src/connection.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/connection.c b/src/connection.c index 3acb3fa2..ee1f9c2c 100644 --- a/src/connection.c +++ b/src/connection.c @@ -85,11 +85,6 @@ typedef struct client_queue_tag { struct client_queue_tag *next; } client_queue_t; -typedef struct _thread_queue_tag { - thread_type *thread_id; - struct _thread_queue_tag *next; -} thread_queue_t; - static spin_t _connection_lock; // protects _current_id, _con_queue, _con_queue_tail static volatile unsigned long _current_id = 0; static int _initialized = 0;