Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6ef608f7
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看板
提交
6ef608f7
编写于
12月 07, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: complie error
上级
d5126d46
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
20 addition
and
15 deletion
+20
-15
source/libs/sync/test/syncAppendEntriesReplyTest.cpp
source/libs/sync/test/syncAppendEntriesReplyTest.cpp
+1
-1
source/libs/sync/test/syncTest.cpp
source/libs/sync/test/syncTest.cpp
+1
-1
source/libs/sync/test/sync_test_lib/inc/syncIO.h
source/libs/sync/test/sync_test_lib/inc/syncIO.h
+2
-0
source/libs/sync/test/sync_test_lib/src/syncIO.c
source/libs/sync/test/sync_test_lib/src/syncIO.c
+2
-0
source/libs/sync/test/sync_test_lib/src/syncMessageDebug.c
source/libs/sync/test/sync_test_lib/src/syncMessageDebug.c
+2
-2
source/os/src/osDir.c
source/os/src/osDir.c
+4
-4
source/os/src/osFile.c
source/os/src/osFile.c
+3
-3
source/os/src/osMemory.c
source/os/src/osMemory.c
+1
-1
source/os/src/osSysinfo.c
source/os/src/osSysinfo.c
+3
-3
source/util/test/hashTest.cpp
source/util/test/hashTest.cpp
+1
-0
未找到文件。
source/libs/sync/test/syncAppendEntriesReplyTest.cpp
浏览文件 @
6ef608f7
...
...
@@ -19,7 +19,7 @@ SyncAppendEntriesReply *createMsg() {
pMsg
->
success
=
true
;
pMsg
->
matchIndex
=
77
;
pMsg
->
term
=
33
;
pMsg
->
privateTerm
=
44
;
//
pMsg->privateTerm = 44;
pMsg
->
startTime
=
taosGetTimestampMs
();
return
pMsg
;
}
...
...
source/libs/sync/test/syncTest.cpp
浏览文件 @
6ef608f7
#include "syncTest.h"
#include <gtest/gtest.h>
//
#include <gtest/gtest.h>
/*
typedef enum {
...
...
source/libs/sync/test/sync_test_lib/inc/syncIO.h
浏览文件 @
6ef608f7
...
...
@@ -81,6 +81,8 @@ int32_t syncIOQTimerStop();
int32_t
syncIOPingTimerStart
();
int32_t
syncIOPingTimerStop
();
void
syncEntryDestory
(
SSyncRaftEntry
*
pEntry
);
#ifdef __cplusplus
}
#endif
...
...
source/libs/sync/test/sync_test_lib/src/syncIO.c
浏览文件 @
6ef608f7
...
...
@@ -469,3 +469,5 @@ static void syncIOTickPing(void *param, void *tmrId) {
taosTmrReset
(
syncIOTickPing
,
io
->
pingTimerMS
,
io
,
io
->
timerMgr
,
&
io
->
pingTimer
);
}
void
syncEntryDestory
(
SSyncRaftEntry
*
pEntry
)
{}
\ No newline at end of file
source/libs/sync/test/sync_test_lib/src/syncMessageDebug.c
浏览文件 @
6ef608f7
...
...
@@ -1583,8 +1583,8 @@ cJSON* syncAppendEntriesReply2Json(const SyncAppendEntriesReply* pMsg) {
cJSON_AddNumberToObject
(
pDestId
,
"vgId"
,
pMsg
->
destId
.
vgId
);
cJSON_AddItemToObject
(
pRoot
,
"destId"
,
pDestId
);
snprintf
(
u64buf
,
sizeof
(
u64buf
),
"%"
PRIu64
,
pMsg
->
privateTerm
);
cJSON_AddStringToObject
(
pRoot
,
"privateTerm"
,
u64buf
);
//
snprintf(u64buf, sizeof(u64buf), "%" PRIu64, pMsg->privateTerm);
//
cJSON_AddStringToObject(pRoot, "privateTerm", u64buf);
snprintf
(
u64buf
,
sizeof
(
u64buf
),
"%"
PRIu64
,
pMsg
->
term
);
cJSON_AddStringToObject
(
pRoot
,
"term"
,
u64buf
);
...
...
source/os/src/osDir.c
浏览文件 @
6ef608f7
...
...
@@ -163,7 +163,7 @@ int32_t taosMulMkDir(const char *dirname) {
code
=
mkdir
(
temp
,
0755
);
#endif
if
(
code
<
0
&&
errno
!=
EEXIST
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
code
;
}
*
pos
=
TD_DIRSEP
[
0
];
...
...
@@ -179,7 +179,7 @@ int32_t taosMulMkDir(const char *dirname) {
code
=
mkdir
(
temp
,
0755
);
#endif
if
(
code
<
0
&&
errno
!=
EEXIST
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
code
;
}
}
...
...
@@ -225,7 +225,7 @@ int32_t taosMulModeMkDir(const char *dirname, int mode) {
code
=
mkdir
(
temp
,
mode
);
#endif
if
(
code
<
0
&&
errno
!=
EEXIST
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
code
;
}
*
pos
=
TD_DIRSEP
[
0
];
...
...
@@ -241,7 +241,7 @@ int32_t taosMulModeMkDir(const char *dirname, int mode) {
code
=
mkdir
(
temp
,
mode
);
#endif
if
(
code
<
0
&&
errno
!=
EEXIST
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
code
;
}
}
...
...
source/os/src/osFile.c
浏览文件 @
6ef608f7
...
...
@@ -313,7 +313,7 @@ TdFilePtr taosOpenFile(const char *path, int32_t tdFileOptions) {
assert
(
!
(
tdFileOptions
&
TD_FILE_EXCL
));
fp
=
fopen
(
path
,
mode
);
if
(
fp
==
NULL
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
NULL
;
}
}
else
{
...
...
@@ -336,14 +336,14 @@ TdFilePtr taosOpenFile(const char *path, int32_t tdFileOptions) {
fd
=
open
(
path
,
access
,
S_IRWXU
|
S_IRWXG
|
S_IRWXO
);
#endif
if
(
fd
==
-
1
)
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
NULL
;
}
}
TdFilePtr
pFile
=
(
TdFilePtr
)
taosMemoryMalloc
(
sizeof
(
TdFile
));
if
(
pFile
==
NULL
)
{
terrno
=
TSDB_CODE_OUT_OF_MEMORY
;
//
terrno = TSDB_CODE_OUT_OF_MEMORY;
if
(
fd
>=
0
)
close
(
fd
);
if
(
fp
!=
NULL
)
fclose
(
fp
);
return
NULL
;
...
...
source/os/src/osMemory.c
浏览文件 @
6ef608f7
...
...
@@ -348,7 +348,7 @@ void taosMemoryTrim(int32_t size) {
void
*
taosMemoryMallocAlign
(
uint32_t
alignment
,
int64_t
size
)
{
#ifdef USE_TD_MEMORY
tA
ssert
(
0
);
a
ssert
(
0
);
#else
#if defined(LINUX)
void
*
p
=
memalign
(
alignment
,
size
);
...
...
source/os/src/osSysinfo.c
浏览文件 @
6ef608f7
...
...
@@ -617,14 +617,14 @@ int32_t taosGetDiskSize(char *dataDir, SDiskSize *diskSize) {
return
0
;
}
else
{
// printf("failed to get disk size, dataDir:%s errno:%s", tsDataDir, strerror(errno));
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
-
1
;
}
#elif defined(_TD_DARWIN_64)
struct
statvfs
info
;
if
(
statvfs
(
dataDir
,
&
info
))
{
// printf("failed to get disk size, dataDir:%s errno:%s", tsDataDir, strerror(errno));
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
-
1
;
}
else
{
diskSize
->
total
=
info
.
f_blocks
*
info
.
f_frsize
;
...
...
@@ -635,7 +635,7 @@ int32_t taosGetDiskSize(char *dataDir, SDiskSize *diskSize) {
#else
struct
statvfs
info
;
if
(
statvfs
(
dataDir
,
&
info
))
{
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
//
terrno = TAOS_SYSTEM_ERROR(errno);
return
-
1
;
}
else
{
diskSize
->
total
=
info
.
f_blocks
*
info
.
f_frsize
;
...
...
source/util/test/hashTest.cpp
浏览文件 @
6ef608f7
...
...
@@ -6,6 +6,7 @@
#include "taos.h"
#include "taosdef.h"
#include "thash.h"
#include "tlog.h"
namespace
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录