Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
cebd77b6
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看板
提交
cebd77b6
编写于
2月 28, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
minor changes
上级
87b63a9f
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
10 addition
and
10 deletion
+10
-10
include/util/tbuffer.h
include/util/tbuffer.h
+3
-3
include/util/tdef.h
include/util/tdef.h
+3
-3
include/util/tutil.h
include/util/tutil.h
+2
-2
source/util/src/tconfig.c
source/util/src/tconfig.c
+1
-1
source/util/src/tlog.c
source/util/src/tlog.c
+1
-1
未找到文件。
include/util/tbuffer.h
浏览文件 @
cebd77b6
...
...
@@ -28,7 +28,7 @@ extern "C" {
#include <stdio.h>
#include "texception.h"
int
main( in
t argc, char** argv ) {
int
32_t main( int32_
t argc, char** argv ) {
SBufferWriter bw = tbufInitWriter( NULL, false );
TRY( 1 ) {
...
...
@@ -39,7 +39,7 @@ int main( int argc, char** argv ) {
// reserve space for the interger count
size_t pos = tbufReserve( &bw, sizeof(int32_t) );
// write 5 integers to the buffer
for( int i = 0; i < 5; i++) {
for( int
32_t
i = 0; i < 5; i++) {
tbufWriteInt32( &bw, i );
}
// write the integer count to buffer at reserved position
...
...
@@ -55,7 +55,7 @@ int main( int argc, char** argv ) {
SBufferReader br = tbufInitReader( data, size, false );
// read & print out all integers
int32_t count = tbufReadInt32( &br );
for( int i = 0; i < count; i++ ) {
for( int
32_t
i = 0; i < count; i++ ) {
printf( "%d\n", tbufReadInt32(&br) );
}
// read & print out a string
...
...
include/util/tdef.h
浏览文件 @
cebd77b6
...
...
@@ -408,8 +408,8 @@ enum { TRANS_OPER_INIT = 0, TRANS_OPER_EXECUTE, TRANS_OPER_ROLLBACK };
typedef
struct
{
char
dir
[
TSDB_FILENAME_LEN
];
int
level
;
int
primary
;
int
32_t
level
;
int
32_t
primary
;
}
SDiskCfg
;
#ifdef __cplusplus
...
...
include/util/tutil.h
浏览文件 @
cebd77b6
...
...
@@ -49,7 +49,7 @@ void taosIpPort2String(uint32_t ip, uint16_t port, char *str);
static
FORCE_INLINE
void
taosEncryptPass
(
uint8_t
*
inBuf
,
size_t
inLen
,
char
*
target
)
{
T_MD5_CTX
context
;
tMD5Init
(
&
context
);
tMD5Update
(
&
context
,
inBuf
,
(
u
nsigned
in
t
)
inLen
);
tMD5Update
(
&
context
,
inBuf
,
(
u
int32_
t
)
inLen
);
tMD5Final
(
&
context
);
memcpy
(
target
,
context
.
digest
,
tListLen
(
context
.
digest
));
}
...
...
@@ -57,7 +57,7 @@ static FORCE_INLINE void taosEncryptPass(uint8_t *inBuf, size_t inLen, char *tar
static
FORCE_INLINE
void
taosEncryptPass_c
(
uint8_t
*
inBuf
,
size_t
len
,
char
*
target
)
{
T_MD5_CTX
context
;
tMD5Init
(
&
context
);
tMD5Update
(
&
context
,
inBuf
,
(
u
nsigned
in
t
)
len
);
tMD5Update
(
&
context
,
inBuf
,
(
u
int32_
t
)
len
);
tMD5Final
(
&
context
);
sprintf
(
target
,
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
,
context
.
digest
[
0
],
...
...
source/util/src/tconfig.c
浏览文件 @
cebd77b6
...
...
@@ -618,7 +618,7 @@ int32_t cfgLoadFromEnvFile(SConfig *pConfig, const char *filepath) {
int32_t
cfgLoadFromCfgFile
(
SConfig
*
pConfig
,
const
char
*
filepath
)
{
char
*
line
=
NULL
,
*
name
,
*
value
,
*
value2
,
*
value3
;
int
olen
,
vlen
,
vlen2
,
vlen3
;
int
32_t
olen
,
vlen
,
vlen2
,
vlen3
;
ssize_t
_bytes
=
0
;
// FILE *fp = fopen(filepath, "r");
...
...
source/util/src/tlog.c
浏览文件 @
cebd77b6
...
...
@@ -113,7 +113,7 @@ static int32_t taosStartLog() {
return
0
;
}
int32_t
taosInitLog
(
const
char
*
logName
,
int
maxFiles
)
{
int32_t
taosInitLog
(
const
char
*
logName
,
int
32_t
maxFiles
)
{
if
(
atomic_val_compare_exchange_8
(
&
tsLogInited
,
0
,
1
)
!=
0
)
return
0
;
osUpdate
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录