Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
ab4514d1
提交
ab4514d1
authored
9月 04, 2015
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix indenting
上级
3947d443
全部展开
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
5897 行增加
和
5809 行删除
+5897
-5809
mpool.h
libs/libks/src/include/mpool.h
+26
-15
simclist.h
libs/libks/src/include/simclist.h
+921
-911
table.h
libs/libks/src/include/table.h
+1273
-1262
table_loc.h
libs/libks/src/include/table_loc.h
+82
-70
mpool.c
libs/libks/src/mpool.c
+1043
-1031
simclist.c
libs/libks/src/simclist.c
+61
-51
table.c
libs/libks/src/table.c
+2317
-2306
table_util.c
libs/libks/src/table_util.c
+174
-163
没有找到文件。
libs/libks/src/include/mpool.h
浏览文件 @
ab4514d1
...
...
@@ -461,3 +461,14 @@ const char *mpool_strerror(const int error);
/*<<<<<<<<<< This is end of the auto-generated output from fillproto. */
#endif
/* ! __MPOOL_H__ */
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
*/
libs/libks/src/include/simclist.h
浏览文件 @
ab4514d1
差异被折叠。
点击展开。
libs/libks/src/include/table.h
浏览文件 @
ab4514d1
差异被折叠。
点击展开。
libs/libks/src/include/table_loc.h
浏览文件 @
ab4514d1
...
...
@@ -227,3 +227,15 @@ static error_str_t errors[] = {
#define INVALID_ERROR "invalid error code"
#endif
/* ! __TABLE_LOC_H__ */
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
*/
libs/libks/src/mpool.c
浏览文件 @
ab4514d1
...
...
@@ -1766,3 +1766,15 @@ const char *mpool_strerror(const int error)
return
"invalid error code"
;
}
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
*/
libs/libks/src/simclist.c
浏览文件 @
ab4514d1
...
...
@@ -26,12 +26,12 @@
#include <errno.h>
/* for setting errno */
#include <sys/types.h>
#ifndef _WIN32
/* not in Windows! */
/* not in Windows! */
# include <unistd.h>
# include <stdint.h>
#endif
#ifndef SIMCLIST_NO_DUMPRESTORE
/* includes for dump/restore */
/* includes for dump/restore */
# include <time.h>
# include <sys/uio.h>
/* for READ_ERRCHECK() and write() */
# include <fcntl.h>
/* for open() etc */
...
...
@@ -100,7 +100,7 @@ typedef INT64 int64_t;
} while (0);
/* convert 64bit integers from host to network format */
#define hton64(x) (\
#define hton64(x) (
\
htons(1) == 1 ? \
(uint64_t)x
/* big endian */
\
:
/* little endian */
\
...
...
@@ -1523,3 +1523,13 @@ static int list_attrOk(const list_t *restrict l) {
#endif
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
*/
libs/libks/src/table.c
浏览文件 @
ab4514d1
...
...
@@ -627,7 +627,7 @@ static int external_compare(const void *p1, const void *p2,
*
* err_bp - Pointer to an integer which will be set with 1 if an error
* has occurred. It cannot be NULL.
*/
*/
static
int
external_compare_pos
(
const
void
*
p1
,
const
void
*
p2
,
table_compare_t
user_compare
,
const
table_t
*
table_p
,
int
*
err_bp
)
...
...
@@ -4077,3 +4077,14 @@ const char *table_strerror(const int error)
return
INVALID_ERROR
;
}
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
*/
libs/libks/src/table_util.c
浏览文件 @
ab4514d1
...
...
@@ -293,3 +293,14 @@ int main(int argc, char **argv)
exit
(
0
);
}
/* For Emacs:
* Local Variables:
* mode:c
* indent-tabs-mode:t
* tab-width:4
* c-basic-offset:4
* End:
* For VIM:
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
*/
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论