event_msgqueue.h

来自「spserver 是一个实现了半同步/半异步(Half-Sync/Half-As」· C头文件 代码 · 共 35 行

H
35
字号
/* * event_msgqueue.h * * Libevent threaded message passing primitives header * * Andrew Danforth <acd@weirdness.net>, October 2006 * * Copyright (c) Andrew Danforth, 2006 * */#ifndef _EVENT_MSGQUEUE_H_#define _EVENT_MSGQUEUE_H_#include <event.h>#include <pthread.h>#ifdef __cplusplusextern "C" {#endifstruct event_msgqueue;struct event_msgqueue *msgqueue_new(struct event_base *, unsigned int, void (*)(void *, void *), void *);int msgqueue_push(struct event_msgqueue *, void *);unsigned int msgqueue_length(struct event_msgqueue *);void msgqueue_destroy(struct event_msgqueue*);#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?