xref: /rockchip-linux_mpp/osal/inc/mpp_queue.h (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
1 /* SPDX-License-Identifier: Apache-2.0 OR MIT */
2 /*
3  * Copyright (c) 2017 Rockchip Electronics Co., Ltd.
4  */
5 
6 #ifndef __MPP_QUEUE_H__
7 #define __MPP_QUEUE_H__
8 
9 #include "mpp_list.h"
10 
11 typedef struct MppQueue_t {
12     MppList* list;
13     sem_t queue_pending;
14     int flush_flag;
15 } MppQueue;
16 
17 #endif
18