Ai
2 Star 7 Fork 0

Moses/php-memcache-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
memcache_queue.h 2.43 KB
一键复制 编辑 原始数据 按行查看 历史
renfeng 提交于 2014-11-27 11:44 +08:00 . php-memcache3.0.8 初始版本
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2007 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Antony Dovgal <tony2001@phpclub.net> |
| Mikael Johansson <mikael AT synd DOT info> |
+----------------------------------------------------------------------+
*/
/* $Id: memcache_queue.h 326387 2012-06-30 17:41:36Z ab $ */
#ifndef MEMCACHE_QUEUE_H_
#define MEMCACHE_QUEUE_H_
/* request / server stack */
#define MMC_QUEUE_PREALLOC 25
typedef struct mmc_queue {
void **items; /* items on queue */
int alloc; /* allocated size */
int head; /* head index in ring buffer */
int tail; /* tail index in ring buffer */
int len;
} mmc_queue_t;
#define mmc_queue_release(q) memset((q), 0, sizeof(*(q)))
#define mmc_queue_reset(q) (q)->len = (q)->head = (q)->tail = 0
#define mmc_queue_item(q, i) ((q)->tail + (i) < (q)->alloc ? (q)->items[(q)->tail + (i)] : (q)->items[(i) - ((q)->alloc - (q)->tail)])
#ifdef PHP_WIN32
#define MMC_QUEUE_INLINE
#else
#define MMC_QUEUE_INLINE inline
#endif
MMC_QUEUE_INLINE void mmc_queue_push(mmc_queue_t *, void *);
MMC_QUEUE_INLINE void *mmc_queue_pop(mmc_queue_t *);
MMC_QUEUE_INLINE int mmc_queue_contains(mmc_queue_t *, void *);
MMC_QUEUE_INLINE void mmc_queue_free(mmc_queue_t *);
MMC_QUEUE_INLINE void mmc_queue_copy(mmc_queue_t *, mmc_queue_t *);
MMC_QUEUE_INLINE void mmc_queue_remove(mmc_queue_t *, void *);
#endif /*MEMCACHE_QUEUE_H_*/
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/moxi/php-memcache-test.git
git@gitee.com:moxi/php-memcache-test.git
moxi
php-memcache-test
php-memcache-test
master

搜索帮助