Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
f0f88366
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看板
未验证
提交
f0f88366
编写于
6月 29, 2018
作者:
B
Bernard Xiong
提交者:
GitHub
6月 29, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1579 from RT-Thread/fix_waitqueue
Fix waitqueue issue
上级
0b93fa4a
497a2dd0
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
117 addition
and
26 deletion
+117
-26
components/dfs/filesystems/net/net_sockets.c
components/dfs/filesystems/net/net_sockets.c
+2
-2
components/drivers/include/ipc/waitqueue.h
components/drivers/include/ipc/waitqueue.h
+40
-6
components/drivers/src/pipe.c
components/drivers/src/pipe.c
+2
-2
components/drivers/src/waitqueue.c
components/drivers/src/waitqueue.c
+55
-14
include/rtdef.h
include/rtdef.h
+14
-1
src/device.c
src/device.c
+4
-1
未找到文件。
components/dfs/filesystems/net/net_sockets.c
浏览文件 @
f0f88366
...
...
@@ -141,7 +141,7 @@ int accept(int s, struct sockaddr *addr, socklen_t *addrlen)
d
->
fops
=
dfs_net_get_fops
();
/* initialize wait head */
lwsock
=
lwip_tryget_socket
(
new_client
);
rt_
list
_init
(
&
(
lwsock
->
wait_head
));
rt_
wqueue
_init
(
&
(
lwsock
->
wait_head
));
d
->
flags
=
O_RDWR
;
/* set flags as read and write */
d
->
size
=
0
;
...
...
@@ -317,7 +317,7 @@ int socket(int domain, int type, int protocol)
d
->
data
=
(
void
*
)
sock
;
lwsock
=
lwip_tryget_socket
(
sock
);
rt_
list
_init
(
&
(
lwsock
->
wait_head
));
rt_
wqueue
_init
(
&
(
lwsock
->
wait_head
));
lwsock
->
conn
->
callback
=
event_callback
;
}
else
...
...
components/drivers/include/ipc/waitqueue.h
浏览文件 @
f0f88366
/*
* File : waitqueue.h
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Change Logs:
* Date Author Notes
* 2018/06/26 Bernard Fix the wait queue issue when wakeup a soon
* to blocked thread.
*/
#ifndef WAITQUEUE_H__
#define WAITQUEUE_H__
#include <rtthread.h>
struct
rt_wqueue_node
;
#define RT_WQ_FLAG_CLEAN 0x00
#define RT_WQ_FLAG_WAKEUP 0x01
typedef
rt_list_t
rt_wqueue_t
;
struct
rt_wqueue_node
;
typedef
int
(
*
rt_wqueue_func_t
)(
struct
rt_wqueue_node
*
wait
,
void
*
key
);
struct
rt_wqueue_node
{
rt_thread_t
polling_thread
;
rt_list_t
list
;
rt_thread_t
polling_thread
;
rt_list_t
list
;
rt_wqueue_func_t
wakeup
;
rt_uint32_t
key
;
rt_wqueue_func_t
wakeup
;
rt_uint32_t
key
;
};
typedef
struct
rt_wqueue_node
rt_wqueue_node_t
;
int
__wqueue_default_wake
(
struct
rt_wqueue_node
*
wait
,
void
*
key
);
rt_inline
void
rt_wqueue_init
(
rt_wqueue_t
*
queue
)
{
RT_ASSERT
(
queue
!=
RT_NULL
);
queue
->
flag
=
RT_WQ_FLAG_CLEAN
;
rt_list_init
(
&
(
queue
->
waiting_list
));
}
void
rt_wqueue_add
(
rt_wqueue_t
*
queue
,
struct
rt_wqueue_node
*
node
);
void
rt_wqueue_remove
(
struct
rt_wqueue_node
*
node
);
int
rt_wqueue_wait
(
rt_wqueue_t
*
queue
,
int
condition
,
int
timeout
);
...
...
components/drivers/src/pipe.c
浏览文件 @
f0f88366
...
...
@@ -438,8 +438,8 @@ rt_pipe_t *rt_pipe_create(const char *name, int bufsz)
rt_memset
(
pipe
,
0
,
sizeof
(
rt_pipe_t
));
rt_mutex_init
(
&
(
pipe
->
lock
),
name
,
RT_IPC_FLAG_FIFO
);
rt_
list
_init
(
&
(
pipe
->
reader_queue
));
rt_
list
_init
(
&
(
pipe
->
writer_queue
));
rt_
wqueue
_init
(
&
(
pipe
->
reader_queue
));
rt_
wqueue
_init
(
&
(
pipe
->
writer_queue
));
RT_ASSERT
(
bufsz
<
0xFFFF
);
pipe
->
bufsz
=
bufsz
;
...
...
components/drivers/src/waitqueue.c
浏览文件 @
f0f88366
/*
* File : waitqueue.c
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2006 - 2018, RT-Thread Development Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Change Logs:
* Date Author Notes
* 2018/06/26 Bernard Fix the wait queue issue when wakeup a soon
* to blocked thread.
*/
#include <stdint.h>
#include <rthw.h>
#include <rtdevice.h>
#include <rtservice.h>
extern
struct
rt_thread
*
rt_current_thread
;
void
rt_wqueue_add
(
rt_wqueue_t
*
queue
,
struct
rt_wqueue_node
*
node
)
{
rt_base_t
level
;
level
=
rt_hw_interrupt_disable
();
rt_list_insert_before
(
queue
,
&
(
node
->
list
));
rt_list_insert_before
(
&
(
queue
->
waiting_list
)
,
&
(
node
->
list
));
rt_hw_interrupt_enable
(
level
);
}
...
...
@@ -34,23 +57,29 @@ void rt_wqueue_wakeup(rt_wqueue_t *queue, void *key)
rt_base_t
level
;
register
int
need_schedule
=
0
;
rt_list_t
*
queue_list
;
struct
rt_list_node
*
node
;
struct
rt_wqueue_node
*
entry
;
if
(
rt_list_isempty
(
queue
))
return
;
queue_list
=
&
(
queue
->
waiting_list
);
level
=
rt_hw_interrupt_disable
();
for
(
node
=
queue
->
next
;
node
!=
queue
;
node
=
node
->
next
)
/* set wakeup flag in the queue */
queue
->
flag
=
RT_WQ_FLAG_WAKEUP
;
if
(
!
(
rt_list_isempty
(
queue_list
)))
{
entry
=
rt_list_entry
(
node
,
struct
rt_wqueue_node
,
list
);
if
(
entry
->
wakeup
(
entry
,
key
)
==
0
)
for
(
node
=
queue_list
->
next
;
node
!=
queue_list
;
node
=
node
->
next
)
{
rt_thread_resume
(
entry
->
polling_thread
);
need_schedule
=
1
;
rt_wqueue_remove
(
entry
);
break
;
entry
=
rt_list_entry
(
node
,
struct
rt_wqueue_node
,
list
);
if
(
entry
->
wakeup
(
entry
,
key
)
==
0
)
{
rt_thread_resume
(
entry
->
polling_thread
);
need_schedule
=
1
;
rt_wqueue_remove
(
entry
);
break
;
}
}
}
rt_hw_interrupt_enable
(
level
);
...
...
@@ -62,7 +91,7 @@ void rt_wqueue_wakeup(rt_wqueue_t *queue, void *key)
int
rt_wqueue_wait
(
rt_wqueue_t
*
queue
,
int
condition
,
int
msec
)
{
int
tick
;
rt_thread_t
tid
=
rt_
current_thread
;
rt_thread_t
tid
=
rt_
thread_self
()
;
rt_timer_t
tmr
=
&
(
tid
->
thread_timer
);
struct
rt_wqueue_node
__wait
;
rt_base_t
level
;
...
...
@@ -81,6 +110,12 @@ int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec)
rt_list_init
(
&
__wait
.
list
);
level
=
rt_hw_interrupt_disable
();
if
(
queue
->
flag
==
RT_WQ_FLAG_WAKEUP
)
{
/* already wakeup */
goto
__exit_wakeup
;
}
rt_wqueue_add
(
queue
,
&
__wait
);
rt_thread_suspend
(
tid
);
...
...
@@ -97,6 +132,12 @@ int rt_wqueue_wait(rt_wqueue_t *queue, int condition, int msec)
rt_schedule
();
level
=
rt_hw_interrupt_disable
();
__exit_wakeup:
queue
->
flag
=
0
;
rt_hw_interrupt_enable
(
level
);
rt_wqueue_remove
(
&
__wait
);
return
0
;
...
...
include/rtdef.h
浏览文件 @
f0f88366
...
...
@@ -848,6 +848,9 @@ enum rt_device_class_type
#define RT_DEVICE_CTRL_RTC_SET_ALARM 0x13
/**< set alarm */
typedef
struct
rt_device
*
rt_device_t
;
/**
* operations set for device object
*/
struct
rt_device_ops
{
/* common device interface */
...
...
@@ -859,6 +862,16 @@ struct rt_device_ops
rt_err_t
(
*
control
)(
rt_device_t
dev
,
int
cmd
,
void
*
args
);
};
/**
* WaitQueue structure
*/
struct
rt_wqueue
{
rt_uint32_t
flag
;
rt_list_t
waiting_list
;
};
typedef
struct
rt_wqueue
rt_wqueue_t
;
/**
* Device structure
*/
...
...
@@ -891,7 +904,7 @@ struct rt_device
#if defined(RT_USING_POSIX)
const
struct
dfs_file_ops
*
fops
;
rt_list_t
wait_queue
;
struct
rt_wqueue
wait_queue
;
#endif
void
*
user_data
;
/**< device private data */
...
...
src/device.c
浏览文件 @
f0f88366
...
...
@@ -29,6 +29,9 @@
*/
#include <rtthread.h>
#if defined(RT_USING_POSIX)
#include <rtdevice.h>
/* for wqueue_init */
#endif
#ifdef RT_USING_DEVICE
...
...
@@ -74,7 +77,7 @@ rt_err_t rt_device_register(rt_device_t dev,
#if defined(RT_USING_POSIX)
dev
->
fops
=
RT_NULL
;
rt_
list
_init
(
&
(
dev
->
wait_queue
));
rt_
wqueue
_init
(
&
(
dev
->
wait_queue
));
#endif
return
RT_EOK
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录