Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
d597ba8e
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d597ba8e
编写于
7月 24, 2023
作者:
K
kailixu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: code optimize
上级
3cfa4906
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
5 addition
and
15 deletion
+5
-15
include/os/osSysinfo.h
include/os/osSysinfo.h
+1
-2
source/dnode/mgmt/mgmt_dnode/src/dmWorker.c
source/dnode/mgmt/mgmt_dnode/src/dmWorker.c
+2
-9
source/os/src/osSysinfo.c
source/os/src/osSysinfo.c
+2
-4
未找到文件。
include/os/osSysinfo.h
浏览文件 @
d597ba8e
...
@@ -18,8 +18,7 @@
...
@@ -18,8 +18,7 @@
#include "os.h"
#include "os.h"
// #include <linux/unistd.h> /* for _syscallX macros/related stuff */
// #include <linux/kernel.h> /* for struct sysinfo */
#ifdef __cplusplus
#ifdef __cplusplus
...
...
source/dnode/mgmt/mgmt_dnode/src/dmWorker.c
浏览文件 @
d597ba8e
...
@@ -26,7 +26,6 @@ static void *dmStatusThreadFp(void *param) {
...
@@ -26,7 +26,6 @@ static void *dmStatusThreadFp(void *param) {
int32_t
trimCount
=
0
;
int32_t
trimCount
=
0
;
int32_t
upTimeCount
=
0
;
int32_t
upTimeCount
=
0
;
int64_t
upTime
=
0
;
int64_t
upTime
=
0
;
int64_t
thrdTime
=
0
;
while
(
1
)
{
while
(
1
)
{
taosMsleep
(
200
);
taosMsleep
(
200
);
...
@@ -44,17 +43,11 @@ static void *dmStatusThreadFp(void *param) {
...
@@ -44,17 +43,11 @@ static void *dmStatusThreadFp(void *param) {
taosMemoryTrim
(
0
);
taosMemoryTrim
(
0
);
}
}
if
((
upTimeCount
=
(
++
upTimeCount
&
7
))
==
0
)
{
if
((
upTimeCount
=
(
++
upTimeCount
&
63
))
==
0
)
{
upTime
=
(
taosGetOsUptime
()
-
tsDndStartOsUptime
)
*
1000
;
upTime
=
(
taosGetOsUptime
()
-
tsDndStartOsUptime
)
*
1000
;
tsDndUpTime
=
TMAX
(
tsDndUpTime
,
upTime
);
}
}
}
}
thrdTime
+=
200
;
cost
=
taosGetTimestampMs
()
-
curTime
;
if
(
cost
>
0
)
thrdTime
+=
cost
;
tsDndUpTime
=
upTime
>
thrdTime
?
upTime
:
thrdTime
;
printf
(
"upTime:%"
PRIi64
" thrdTime:%"
PRIi64
" tsDndUpTime:%"
PRIi64
" delta:%"
PRIi64
"
\n
"
,
upTime
,
thrdTime
,
tsDndUpTime
,
upTime
-
thrdTime
);
}
}
return
NULL
;
return
NULL
;
...
...
source/os/src/osSysinfo.c
浏览文件 @
d597ba8e
...
@@ -963,16 +963,14 @@ char *taosGetCmdlineByPID(int pid) {
...
@@ -963,16 +963,14 @@ char *taosGetCmdlineByPID(int pid) {
int64_t
taosGetOsUptime
()
{
int64_t
taosGetOsUptime
()
{
#ifdef WINDOWS
#ifdef WINDOWS
return
0
;
#elif defined(_TD_DARWIN_64)
// #else
// #elif defined(_TD_DARWIN_64)
// return 0;
#else
#else
struct
sysinfo
info
;
struct
sysinfo
info
;
if
(
0
==
sysinfo
(
&
info
))
{
if
(
0
==
sysinfo
(
&
info
))
{
return
info
.
uptime
;
return
info
.
uptime
;
};
};
#endif
#endif
return
0
;
}
}
void
taosSetCoreDump
(
bool
enable
)
{
void
taosSetCoreDump
(
bool
enable
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录