1 Star 0 Fork 0

洞悉/sdebug

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xdebug_gc_stats.h 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2018 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| https://xdebug.org/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| derick@xdebug.org so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Benjamin Eberlei <kontakt@beberlei.de> |
+----------------------------------------------------------------------+
*/
#ifndef __XDEBUG_GC_STATS_H__
#define __XDEBUG_GC_STATS_H__
typedef struct _xdebug_gc_run {
zend_long collected;
zend_long duration;
zend_long memory_before;
zend_long memory_after;
char *function_name;
char *class_name;
} xdebug_gc_run;
extern int (*xdebug_old_gc_collect_cycles)(void);
int xdebug_gc_stats_init(char *fname, char *script_name);
void xdebug_gc_stats_stop();
int xdebug_gc_collect_cycles(void);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vicself/sdebug.git
git@gitee.com:vicself/sdebug.git
vicself
sdebug
sdebug
master

搜索帮助