Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
2eadeb93
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2eadeb93
编写于
3月 08, 2020
作者:
陶建辉(Jeff)
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
a new version fro tqueue
上级
cebd07db
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
15 addition
and
10 deletion
+15
-10
src/inc/taoserror.h
src/inc/taoserror.h
+1
-0
src/inc/trpc.h
src/inc/trpc.h
+1
-1
src/util/inc/tqueue.h
src/util/inc/tqueue.h
+0
-0
src/util/src/tqueue.c
src/util/src/tqueue.c
+13
-9
未找到文件。
src/inc/taoserror.h
浏览文件 @
2eadeb93
...
...
@@ -46,6 +46,7 @@ static STaosError errors[] = {
#endif
TAOS_DEFINE_ERROR
(
TSDB_CODE_ACTION_IN_PROGRESS
,
0
,
1
,
"action in progress"
)
TAOS_DEFINE_ERROR
(
TSDB_CODE_MSG_NOT_PROCESSED
,
0
,
4
,
"message not processed"
)
TAOS_DEFINE_ERROR
(
TSDB_CODE_LAST_SESSION_NOT_FINISHED
,
0
,
5
,
"last session not finished"
)
TAOS_DEFINE_ERROR
(
TSDB_CODE_INVALID_SESSION_ID
,
0
,
6
,
"invalid session id"
)
TAOS_DEFINE_ERROR
(
TSDB_CODE_INVALID_TRAN_ID
,
0
,
7
,
"invalid transaction id"
)
...
...
src/inc/trpc.h
浏览文件 @
2eadeb93
...
...
@@ -43,7 +43,7 @@ typedef struct {
}
SRpcConnInfo
;
typedef
struct
{
char
msgType
;
uint8_t
msgType
;
void
*
pCont
;
int
contLen
;
int32_t
code
;
...
...
src/
rpc
/inc/tqueue.h
→
src/
util
/inc/tqueue.h
浏览文件 @
2eadeb93
文件已移动
src/
rpc
/src/tqueue.c
→
src/
util
/src/tqueue.c
浏览文件 @
2eadeb93
...
...
@@ -24,8 +24,8 @@ typedef struct _taos_qnode {
}
STaosQnode
;
typedef
struct
_taos_q
{
int
itemSize
;
int
numOfItems
;
int
32_t
itemSize
;
int
32_t
numOfItems
;
struct
_taos_qnode
*
head
;
struct
_taos_qnode
*
tail
;
struct
_taos_q
*
next
;
// for queue set
...
...
@@ -37,15 +37,15 @@ typedef struct _taos_qset {
STaosQueue
*
head
;
STaosQueue
*
current
;
pthread_mutex_t
mutex
;
int
numOfQueues
;
int
numOfItems
;
int
32_t
numOfQueues
;
int
32_t
numOfItems
;
}
STaosQset
;
typedef
struct
_taos_qall
{
STaosQnode
*
current
;
STaosQnode
*
start
;
int
itemSize
;
int
numOfItems
;
int
32_t
itemSize
;
int
32_t
numOfItems
;
}
STaosQall
;
taos_queue
taosOpenQueue
(
int
itemSize
)
{
...
...
@@ -57,7 +57,7 @@ taos_queue taosOpenQueue(int itemSize) {
}
pthread_mutex_init
(
&
queue
->
mutex
,
NULL
);
queue
->
itemSize
=
itemSize
;
queue
->
itemSize
=
(
int32_t
)
itemSize
;
return
queue
;
}
...
...
@@ -108,6 +108,8 @@ int taosWriteQitem(taos_queue param, void *item) {
if
(
queue
->
qset
)
atomic_add_fetch_32
(
&
queue
->
qset
->
numOfItems
,
1
);
pthread_mutex_unlock
(
&
queue
->
mutex
);
return
0
;
}
int
taosReadQitem
(
taos_queue
param
,
void
*
item
)
{
...
...
@@ -291,8 +293,9 @@ int taosReadQitemFromQset(taos_qset param, void *item) {
if
(
qset
->
current
==
NULL
)
qset
->
current
=
qset
->
head
;
STaosQueue
*
queue
=
qset
->
current
;
qset
->
current
=
queue
->
next
;
if
(
queue
)
qset
->
current
=
queue
->
next
;
pthread_mutex_unlock
(
&
qset
->
mutex
);
if
(
queue
==
NULL
)
break
;
pthread_mutex_lock
(
&
queue
->
mutex
);
...
...
@@ -326,8 +329,9 @@ int taosReadAllQitemsFromQset(taos_qset param, taos_qall *res) {
if
(
qset
->
current
==
NULL
)
qset
->
current
=
qset
->
head
;
queue
=
qset
->
current
;
qset
->
current
=
queue
->
next
;
if
(
queue
)
qset
->
current
=
queue
->
next
;
pthread_mutex_unlock
(
&
qset
->
mutex
);
if
(
queue
==
NULL
)
break
;
pthread_mutex_lock
(
&
queue
->
mutex
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录