Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
d3da3bd9
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看板
提交
d3da3bd9
编写于
12月 31, 2017
作者:
B
BernardXiong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[libc] move clock_time to time.
上级
1383a977
变更
8
显示空白变更内容
内联
并排
Showing
8 changed file
with
306 addition
and
240 deletion
+306
-240
components/libc/compilers/newlib/syscalls.c
components/libc/compilers/newlib/syscalls.c
+183
-189
components/libc/pthreads/pthread.c
components/libc/pthreads/pthread.c
+0
-3
components/libc/pthreads/pthread.h
components/libc/pthreads/pthread.h
+0
-31
components/libc/pthreads/pthread_internal.h
components/libc/pthreads/pthread_internal.h
+1
-1
components/libc/time/SConscript
components/libc/time/SConscript
+2
-2
components/libc/time/clock_time.c
components/libc/time/clock_time.c
+62
-14
components/libc/time/clock_time.h
components/libc/time/clock_time.h
+58
-0
components/libc/time/posix_sleep.c
components/libc/time/posix_sleep.c
+0
-0
未找到文件。
components/libc/compilers/newlib/syscalls.c
浏览文件 @
d3da3bd9
...
...
@@ -225,25 +225,42 @@ _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
}
#endif
#if
n
def RT_USING_PTHREADS
#ifdef RT_USING_PTHREADS
#ifndef MILLISECOND_PER_SECOND
#define MILLISECOND_PER_SECOND 1000UL
#endif
#include <clock_time.h>
/* POSIX timer provides clock_gettime function */
#include <time.h>
int
_gettimeofday_r
(
struct
_reent
*
ptr
,
struct
timeval
*
__tp
,
void
*
__tzp
)
{
struct
timespec
tp
;
#ifndef MICROSECOND_PER_SECOND
#define MICROSECOND_PER_SECOND 1000000UL
#endif
if
(
clock_gettime
(
CLOCK_REALTIME
,
&
tp
)
==
0
)
{
if
(
__tp
!=
RT_NULL
)
{
__tp
->
tv_sec
=
tp
.
tv_sec
;
__tp
->
tv_usec
=
tp
.
tv_nsec
/
1000UL
;
}
return
tp
.
tv_sec
;
}
/* return "not supported" */
ptr
->
_errno
=
ENOTSUP
;
return
-
1
;
}
#else
#ifndef NANOSECOND_PER_SECOND
#define MILLISECOND_PER_SECOND 1000UL
#define MICROSECOND_PER_SECOND 1000000UL
#define NANOSECOND_PER_SECOND 1000000000UL
#endif
#define MILLISECOND_PER_TICK (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define MICROSECOND_PER_TICK (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define NANOSECOND_PER_TICK (NANOSECOND_PER_SECOND / RT_TICK_PER_SECOND)
struct
timeval
_timevalue
=
{
0
};
#ifdef RT_USING_DEVICE
static
void
libc_system_time_init
(
void
)
...
...
@@ -311,29 +328,6 @@ _gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp)
ptr
->
_errno
=
ENOTSUP
;
return
-
1
;
}
#else
/* POSIX thread provides clock_gettime function */
#include <time.h>
int
_gettimeofday_r
(
struct
_reent
*
ptr
,
struct
timeval
*
__tp
,
void
*
__tzp
)
{
struct
timespec
tp
;
if
(
clock_gettime
(
CLOCK_REALTIME
,
&
tp
)
==
0
)
{
if
(
__tp
!=
RT_NULL
)
{
__tp
->
tv_sec
=
tp
.
tv_sec
;
__tp
->
tv_usec
=
tp
.
tv_nsec
/
1000UL
;
}
return
tp
.
tv_sec
;
}
/* return "not supported" */
ptr
->
_errno
=
ENOTSUP
;
return
-
1
;
}
#endif
/* Memory routine */
...
...
components/libc/pthreads/pthread.c
浏览文件 @
d3da3bd9
...
...
@@ -27,9 +27,6 @@
int
pthread_system_init
(
void
)
{
/* initialize clock and time */
clock_time_system_init
();
/* initialize key area */
pthread_key_system_init
();
/* initialize posix mqueue */
...
...
components/libc/pthreads/pthread.h
浏览文件 @
d3da3bd9
...
...
@@ -276,35 +276,4 @@ int pthread_barrier_init(pthread_barrier_t *barrier,
int
pthread_barrier_wait
(
pthread_barrier_t
*
barrier
);
/* posix clock and timer */
#define MILLISECOND_PER_SECOND 1000UL
#define MICROSECOND_PER_SECOND 1000000UL
#define NANOSECOND_PER_SECOND 1000000000UL
#define MILLISECOND_PER_TICK (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define MICROSECOND_PER_TICK (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define NANOSECOND_PER_TICK (NANOSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#ifndef CLOCK_REALTIME
#define CLOCK_REALTIME 1
#endif
#define CLOCK_CPUTIME_ID 2
#ifndef CLOCK_PROCESS_CPUTIME_ID
#define CLOCK_PROCESS_CPUTIME_ID CLOCK_CPUTIME_ID
#endif
#ifndef CLOCK_THREAD_CPUTIME_ID
#define CLOCK_THREAD_CPUTIME_ID CLOCK_CPUTIME_ID
#endif
#ifndef CLOCK_MONOTONIC
#define CLOCK_MONOTONIC 4
#endif
int
clock_getres
(
clockid_t
clockid
,
struct
timespec
*
res
);
int
clock_gettime
(
clockid_t
clockid
,
struct
timespec
*
tp
);
int
clock_settime
(
clockid_t
clockid
,
const
struct
timespec
*
tp
);
#endif
components/libc/pthreads/pthread_internal.h
浏览文件 @
d3da3bd9
...
...
@@ -83,7 +83,7 @@ rt_inline _pthread_data_t *_pthread_get_data(pthread_t thread)
}
int
clock_time_to_tick
(
const
struct
timespec
*
time
);
void
clock_time_system_init
(
void
);
void
posix_mq_system_init
(
void
);
void
posix_sem_system_init
(
void
);
void
pthread_key_system_init
(
void
);
...
...
components/libc/time
r
/SConscript
→
components/libc/time/SConscript
浏览文件 @
d3da3bd9
...
...
@@ -6,7 +6,7 @@ cwd = GetCurrentDir()
src
=
Glob
(
'*.c'
)
+
Glob
(
'*.cpp'
)
CPPPATH
=
[
cwd
]
group
=
DefineGroup
(
'
libc
'
,
src
,
depend
=
[
'RT_USING_
LIBC'
,
'RT_USING_POSIX_TIMER
'
],
CPPPATH
=
CPPPATH
)
group
=
DefineGroup
(
'
pthreads
'
,
src
,
depend
=
[
'RT_USING_
PTHREADS
'
],
CPPPATH
=
CPPPATH
)
Return
(
'group'
)
components/libc/
pthreads
/clock_time.c
→
components/libc/
time
/clock_time.c
浏览文件 @
d3da3bd9
...
...
@@ -24,10 +24,13 @@
*/
#include <rtthread.h>
#include <rtdevice.h>
#include <pthread.h>
#include "clock_time.h"
struct
timeval
_timevalue
;
void
clock_time_system_init
()
int
clock_time_system_init
()
{
time_t
time
;
rt_tick_t
tick
;
...
...
@@ -46,7 +49,10 @@ void clock_time_system_init()
_timevalue
.
tv_usec
=
(
tick
%
RT_TICK_PER_SECOND
)
*
MICROSECOND_PER_TICK
;
_timevalue
.
tv_sec
=
time
-
tick
/
RT_TICK_PER_SECOND
-
1
;
return
0
;
}
INIT_COMPONENT_EXPORT
(
clock_time_system_init
);
int
clock_time_to_tick
(
const
struct
timespec
*
time
)
{
...
...
@@ -83,38 +89,80 @@ RTM_EXPORT(clock_time_to_tick);
int
clock_getres
(
clockid_t
clockid
,
struct
timespec
*
res
)
{
if
((
clockid
!=
CLOCK_REALTIME
)
||
(
res
==
RT_NULL
))
int
ret
=
0
;
if
(
res
==
RT_NULL
)
{
rt_set_errno
(
EINVAL
);
return
-
1
;
}
switch
(
clockid
)
{
case
CLOCK_REALTIME
:
res
->
tv_sec
=
0
;
res
->
tv_nsec
=
NANOSECOND_PER_SECOND
/
RT_TICK_PER_SECOND
;
break
;
return
0
;
#ifdef RT_USING_CPUTIME
case
CLOCK_CPUTIME_ID
:
res
->
tv_sec
=
0
;
res
->
tv_nsec
=
clock_cpu_getres
();
break
;
#endif
default:
ret
=
-
1
;
rt_set_errno
(
EINVAL
);
break
;
}
return
ret
;
}
RTM_EXPORT
(
clock_getres
);
int
clock_gettime
(
clockid_t
clockid
,
struct
timespec
*
tp
)
{
rt_tick_t
tick
;
int
ret
=
0
;
if
(
(
clockid
!=
CLOCK_REALTIME
)
||
(
tp
==
RT_NULL
)
)
if
(
tp
==
RT_NULL
)
{
rt_set_errno
(
EINVAL
);
return
-
1
;
}
switch
(
clockid
)
{
case
CLOCK_REALTIME
:
{
/* get tick */
tick
=
rt_tick_get
();
int
tick
=
rt_tick_get
();
tp
->
tv_sec
=
_timevalue
.
tv_sec
+
tick
/
RT_TICK_PER_SECOND
;
tp
->
tv_nsec
=
(
_timevalue
.
tv_usec
+
(
tick
%
RT_TICK_PER_SECOND
)
*
MICROSECOND_PER_TICK
)
*
1000
;
}
break
;
return
0
;
#ifdef RT_USING_CPUTIME
case
CLOCK_CPUTIME_ID
:
{
float
unit
=
0
;
long
long
cpu_tick
;
unit
=
clock_cpu_getres
();
cpu_tick
=
clock_cpu_gettime
();
tp
->
tv_sec
=
((
int
)(
cpu_tick
*
unit
))
/
NANOSECOND_PER_SECOND
;
tp
->
tv_nsec
=
((
int
)(
cpu_tick
*
unit
))
%
NANOSECOND_PER_SECOND
;
}
break
;
#endif
default:
rt_set_errno
(
EINVAL
);
ret
=
-
1
;
}
return
ret
;
}
RTM_EXPORT
(
clock_gettime
);
...
...
components/libc/time/clock_time.h
0 → 100644
浏览文件 @
d3da3bd9
/*
* File : clock_time.h
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2006 - 2017, 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
* 2017-12-31 Bernard the first version
*/
#ifndef CLOCK_TIME_H__
#define CLOCK_TIME_H__
/* posix clock and timer */
#define MILLISECOND_PER_SECOND 1000UL
#define MICROSECOND_PER_SECOND 1000000UL
#define NANOSECOND_PER_SECOND 1000000000UL
#define MILLISECOND_PER_TICK (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define MICROSECOND_PER_TICK (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define NANOSECOND_PER_TICK (NANOSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#ifndef CLOCK_REALTIME
#define CLOCK_REALTIME 1
#endif
#define CLOCK_CPUTIME_ID 2
#ifndef CLOCK_PROCESS_CPUTIME_ID
#define CLOCK_PROCESS_CPUTIME_ID CLOCK_CPUTIME_ID
#endif
#ifndef CLOCK_THREAD_CPUTIME_ID
#define CLOCK_THREAD_CPUTIME_ID CLOCK_CPUTIME_ID
#endif
#ifndef CLOCK_MONOTONIC
#define CLOCK_MONOTONIC 4
#endif
int
clock_getres
(
clockid_t
clockid
,
struct
timespec
*
res
);
int
clock_gettime
(
clockid_t
clockid
,
struct
timespec
*
tp
);
int
clock_settime
(
clockid_t
clockid
,
const
struct
timespec
*
tp
);
#endif
components/libc/time
r
/posix_sleep.c
→
components/libc/time/posix_sleep.c
浏览文件 @
d3da3bd9
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录