Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
02f006d8
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看板
未验证
提交
02f006d8
编写于
11月 10, 2018
作者:
B
Bernard Xiong
提交者:
GitHub
11月 10, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1964 from RT-Thread/fix_exfun
[libc] Fix the _EXFUN issue in newlib
上级
b69baa96
e108dfe4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
14 addition
and
12 deletion
+14
-12
components/dfs/include/dfs_posix.h
components/dfs/include/dfs_posix.h
+3
-1
components/dfs/src/dfs_posix.c
components/dfs/src/dfs_posix.c
+2
-2
include/libc/libc_signal.h
include/libc/libc_signal.h
+9
-9
未找到文件。
components/dfs/include/dfs_posix.h
浏览文件 @
02f006d8
...
...
@@ -41,13 +41,15 @@ int closedir(DIR* d);
/* file api*/
int
open
(
const
char
*
file
,
int
flags
,
...);
int
close
(
int
d
);
#ifdef RT_USING_NEWLIB
#if defined(RT_USING_NEWLIB) && defined(_EXFUN)
_READ_WRITE_RETURN_TYPE
_EXFUN
(
read
,
(
int
__fd
,
void
*
__buf
,
size_t
__nbyte
));
_READ_WRITE_RETURN_TYPE
_EXFUN
(
write
,
(
int
__fd
,
const
void
*
__buf
,
size_t
__nbyte
));
#else
int
read
(
int
fd
,
void
*
buf
,
size_t
len
);
int
write
(
int
fd
,
const
void
*
buf
,
size_t
len
);
#endif
off_t
lseek
(
int
fd
,
off_t
offset
,
int
whence
);
int
rename
(
const
char
*
from
,
const
char
*
to
);
int
unlink
(
const
char
*
pathname
);
...
...
components/dfs/src/dfs_posix.c
浏览文件 @
02f006d8
...
...
@@ -110,7 +110,7 @@ RTM_EXPORT(close);
* @return the actual read data buffer length. If the returned value is 0, it
* may be reach the end of file, please check errno.
*/
#if
def RT_USING_NEWLIB
#if
defined(RT_USING_NEWLIB) && defined(_EXFUN)
_READ_WRITE_RETURN_TYPE
_EXFUN
(
read
,
(
int
fd
,
void
*
buf
,
size_t
len
))
#else
int
read
(
int
fd
,
void
*
buf
,
size_t
len
)
...
...
@@ -154,7 +154,7 @@ RTM_EXPORT(read);
*
* @return the actual written data buffer length.
*/
#if
def RT_USING_NEWLIB
#if
defined(RT_USING_NEWLIB) && defined(_EXFUN)
_READ_WRITE_RETURN_TYPE
_EXFUN
(
write
,
(
int
fd
,
const
void
*
buf
,
size_t
len
))
#else
int
write
(
int
fd
,
const
void
*
buf
,
size_t
len
)
...
...
include/libc/libc_signal.h
浏览文件 @
02f006d8
...
...
@@ -76,20 +76,20 @@ typedef struct siginfo siginfo_t;
typedef
unsigned
long
sigset_t
;
#define SIGHUP 1
/
/ #define SIGINT 2
/
* #define SIGINT 2 */
#define SIGQUIT 3
/
/ #define SIGILL 4
/
* #define SIGILL 4 */
#define SIGTRAP 5
/
/ #define SIGABRT 6
/
* #define SIGABRT 6 */
#define SIGEMT 7
/
/ #define SIGFPE 8
/
* #define SIGFPE 8 */
#define SIGKILL 9
#define SIGBUS 10
/
/ #define SIGSEGV 11
/
* #define SIGSEGV 11 */
#define SIGSYS 12
#define SIGPIPE 13
#define SIGALRM 14
/
/ #define SIGTERM 15
/
* #define SIGTERM 15 */
#define SIGURG 16
#define SIGSTOP 17
#define SIGTSTP 18
...
...
@@ -99,8 +99,8 @@ typedef unsigned long sigset_t;
#define SIGTTOU 22
#define SIGPOLL 23
#define SIGWINCH 24
/
/ #define SIGUSR1 25
/
/ #define SIGUSR2 26
/
* #define SIGUSR1 25 */
/
* #define SIGUSR2 26 */
#define SIGRTMIN 27
#define SIGRTMAX 31
#define NSIG 32
...
...
@@ -136,7 +136,7 @@ typedef unsigned long sigset_t;
#define SIGQUIT 3
#define SIGILL 4
#define SIGTRAP 5
/
/ #define SIGABRT 6
/
* #define SIGABRT 6 */
#define SIGEMT 7
#define SIGFPE 8
#define SIGKILL 9
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录