代码拉取完成,页面将自动刷新
同步操作将从 YorkJia/cQueue 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef cQUEUE_H
#define cQUEUE_H
#ifdef __cplusplus
extern "C"
{
#endif
#define cQueue_API_DECL extern
/*------------------------------------------------------------------------------------------------*/
typedef struct cQueue{ /* Queue control block */
void **QMemory; /* pointer to message queue storage area */
void **QStart; /* pointer to start of queue data */
void **QEnd; /* pointer to end of queue data */
void **QIn; /* pointer to where next message will be inserted in the queue */
void **QOut; /* pointer to where next message will be extracted from the queue */
int QSize; /* size of queue -- max number of entries */
int QEntries; /* current number of entries in the queue */
} cQueue_t;
#define ERR_Q_NONE 0
#define ERR_Q_FULL 1
#define ERR_Q_EMPTY 2
cQueue_API_DECL cQueue_t *cQcreate(int size);
cQueue_API_DECL void cQDelete(cQueue_t *pq);
cQueue_API_DECL void cQFlush(cQueue_t *pq);
cQueue_API_DECL void *cQRcv(cQueue_t *pq, char *perr);
cQueue_API_DECL int cQPost(cQueue_t *pq, void *pmsg);
cQueue_API_DECL int cQPostFront(cQueue_t *pq, void *pmsg);
/*--------------------------------------------------------*/
#ifdef __cplusplus
}
#endif
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。