Remove redefinition of QUEUE_CONFIG

Causes compile to fail on Centos 7.
This commit is contained in:
Esa Korhonen 2017-01-27 15:22:54 +02:00
parent 3689d95c34
commit 6cc205dafa

View File

@ -31,7 +31,7 @@ typedef struct queue_entry
#endif /* SS_DEBUG */
} QUEUE_ENTRY;
typedef struct queue_config
struct queue_config
{
int queue_limit;
int start;
@ -43,7 +43,7 @@ typedef struct queue_config
#if defined(SS_DEBUG)
long sequence_number;
#endif /* SS_DEBUG */
} QUEUE_CONFIG;
};
QUEUE_CONFIG *mxs_queue_alloc(int limit, int timeout);
void mxs_queue_free(QUEUE_CONFIG *queue_config);