Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
e9cf10da
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e9cf10da
编写于
3月 28, 2013
作者:
R
Rogerz Zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add comments to help understanding pthread
上级
8e6a534f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
5 deletion
+13
-5
components/pthreads/pthread.h
components/pthreads/pthread.h
+3
-3
components/pthreads/pthread_rwlock.c
components/pthreads/pthread_rwlock.c
+10
-2
未找到文件。
components/pthreads/pthread.h
浏览文件 @
e9cf10da
...
...
@@ -104,9 +104,9 @@ struct pthread_rwlock
pthread_cond_t
rw_condreaders
;
/* for reader threads waiting */
pthread_cond_t
rw_condwriters
;
/* for writer threads waiting */
int
rw_nwaitreaders
;
/* the number waiting */
int
rw_nwaitwriters
;
/* the number waiting */
int
rw_refcount
;
int
rw_nwaitreaders
;
/* the number
of reader threads
waiting */
int
rw_nwaitwriters
;
/* the number
of writer threads
waiting */
int
rw_refcount
;
/* 0: unlocked, -1: locked by writer, > 0 locked by n readers */
};
typedef
struct
pthread_rwlock
pthread_rwlock_t
;
...
...
components/pthreads/pthread_rwlock.c
浏览文件 @
e9cf10da
...
...
@@ -112,9 +112,11 @@ int pthread_rwlock_rdlock (pthread_rwlock_t *rwlock)
while
(
rwlock
->
rw_refcount
<
0
||
rwlock
->
rw_nwaitwriters
>
0
)
{
rwlock
->
rw_nwaitreaders
++
;
/* rw_mutex will be released when waiting for rw_condreaders */
result
=
pthread_cond_wait
(
&
rwlock
->
rw_condreaders
,
&
rwlock
->
rw_mutex
);
/* rw_mutex should have been taken again when returned from waiting */
rwlock
->
rw_nwaitreaders
--
;
if
(
result
!=
0
)
if
(
result
!=
0
)
/* wait error */
break
;
}
...
...
@@ -160,7 +162,9 @@ int pthread_rwlock_timedrdlock (pthread_rwlock_t * rwlock, const struct timespec
while
(
rwlock
->
rw_refcount
<
0
||
rwlock
->
rw_nwaitwriters
>
0
)
{
rwlock
->
rw_nwaitreaders
++
;
/* rw_mutex will be released when waiting for rw_condreaders */
result
=
pthread_cond_timedwait
(
&
rwlock
->
rw_condreaders
,
&
rwlock
->
rw_mutex
,
abstime
);
/* rw_mutex should have been taken again when returned from waiting */
rwlock
->
rw_nwaitreaders
--
;
if
(
result
!=
0
)
break
;
...
...
@@ -187,7 +191,9 @@ int pthread_rwlock_timedwrlock (pthread_rwlock_t *rwlock, const struct timespec
while
(
rwlock
->
rw_refcount
!=
0
)
{
rwlock
->
rw_nwaitwriters
++
;
/* rw_mutex will be released when waiting for rw_condwriters */
result
=
pthread_cond_timedwait
(
&
rwlock
->
rw_condwriters
,
&
rwlock
->
rw_mutex
,
abstime
);
/* rw_mutex should have been taken again when returned from waiting */
rwlock
->
rw_nwaitwriters
--
;
if
(
result
!=
0
)
break
;
...
...
@@ -233,7 +239,7 @@ int pthread_rwlock_unlock (pthread_rwlock_t *rwlock)
if
(
rwlock
->
rw_refcount
>
0
)
rwlock
->
rw_refcount
--
;
/* releasing a reader */
else
if
(
rwlock
->
rw_refcount
==
-
1
)
rwlock
->
rw_refcount
=
0
;
/* releasing a
read
er */
rwlock
->
rw_refcount
=
0
;
/* releasing a
writ
er */
/* give preference to waiting writers over waiting readers */
if
(
rwlock
->
rw_nwaitwriters
>
0
)
...
...
@@ -264,7 +270,9 @@ int pthread_rwlock_wrlock (pthread_rwlock_t *rwlock)
while
(
rwlock
->
rw_refcount
!=
0
)
{
rwlock
->
rw_nwaitwriters
++
;
/* rw_mutex will be released when waiting for rw_condwriters */
result
=
pthread_cond_wait
(
&
rwlock
->
rw_condwriters
,
&
rwlock
->
rw_mutex
);
/* rw_mutex should have been taken again when returned from waiting */
rwlock
->
rw_nwaitwriters
--
;
if
(
result
!=
0
)
break
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录