summaryrefslogtreecommitdiffstats
path: root/stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h
diff options
context:
space:
mode:
authorcharan makkina <charan795m@gmail.com>2019-04-30 17:40:53 +0530
committercharan makkina <charan795m@gmail.com>2019-05-20 18:14:40 +0530
commita826fe833d3f2a8fe2673fa05811fe1a22baf045 (patch)
treeda11a17c46ca9b8a002a52a290628574fa3f5eda /stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h
parent3e6bf7b64eea418c59959c18750261b815b2892c (diff)
Feature: 19.04 part 1
Change-Id: Ibba924b8deca1f246b9dcb12d89d085b6fd33046 Signed-off-by: charan makkina <charan795m@gmail.com>
Diffstat (limited to 'stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h')
-rw-r--r--stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h b/stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h
deleted file mode 100644
index 238ef05..0000000
--- a/stacks/lwip_stack/release/lwip_helper_files/lwip/arch/queue.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __QUEUE_H__
-#define __QUEUE_H__
-#ifdef __cplusplus
-extern "C"
-{
-
-#endif
-#include "common_mem_base_type.h"
-#ifdef HAL_LIB
-#else
-#include "rte_ring.h"
-#endif
-#include "nsfw_mem_api.h"
-//#include "stackx_dfx_api.h"
-
-#include "sys.h"
-
- typedef struct queue
- {
- PRIMARY_ADDR mring_handle llring;
- } queue_t;
-
- err_t queue_push (queue_t * q, void *msg, int isTrypush);
- void *queue_pop (queue_t * q, u32_t * timeout, int isTryPop);
-
-#ifdef __cplusplus
-
-}
-#endif
-#endif