Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2bfb4dbc
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
9
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2bfb4dbc
编写于
7月 01, 2000
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Use up-to-date functions.
上级
4e74239c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
56 addition
and
7 deletion
+56
-7
apps/speed.c
apps/speed.c
+56
-7
未找到文件。
apps/speed.c
浏览文件 @
2bfb4dbc
...
...
@@ -82,16 +82,22 @@
#include <openssl/rand.h>
#include <openssl/err.h>
#if !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
#define TIMES
#if defined(__FreeBSD__)
# define USE_TOD
#elif !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
# define TIMES
#endif
#ifndef _IRIX
#include <time.h>
#
include <time.h>
#endif
#ifdef TIMES
#include <sys/types.h>
#include <sys/times.h>
# include <sys/types.h>
# include <sys/times.h>
#endif
#ifdef USE_TOD
# include <sys/time.h>
# include <sys/resource.h>
#endif
/* Depending on the VMS version, the tms structure is perhaps defined.
...
...
@@ -203,7 +209,49 @@ static SIGRETTYPE sig_done(int sig)
static
double
Time_F
(
int
s
,
int
usertime
)
{
double
ret
;
#ifdef TIMES
#ifdef USE_TOD
if
(
usertime
)
{
static
struct
rusage
tstart
,
tend
;
if
(
s
==
START
)
{
getrusage
(
RUSAGE_SELF
,
&
tstart
);
return
(
0
);
}
else
{
long
i
;
getrusage
(
RUSAGE_SELF
,
&
tend
);
i
=
(
long
)
tend
.
ru_utime
.
tv_usec
-
(
long
)
tstart
.
ru_utime
.
tv_usec
;
ret
=
((
double
)(
tend
.
ru_utime
.
tv_sec
-
tstart
.
ru_utime
.
tv_sec
))
+
((
double
)
i
)
/
1000000
.
0
;
return
((
ret
<
0
.
001
)
?
0
.
001
:
ret
);
}
}
else
{
static
struct
timeval
tstart
,
tend
;
long
i
;
if
(
s
==
START
)
{
gettimeofday
(
&
tstart
,
NULL
);
return
(
0
);
}
else
{
gettimeofday
(
&
tend
,
NULL
);
i
=
(
long
)
tend
.
tv_usec
-
(
long
)
tstart
.
tv_usec
;
ret
=
((
double
)(
tend
.
tv_sec
-
tstart
.
tv_sec
))
+
((
double
)
i
)
/
1000000
.
0
;
return
((
ret
<
0
.
001
)
?
0
.
001
:
ret
);
}
}
#else
/* ndef USE_TOD */
# ifdef TIMES
if
(
usertime
)
{
static
struct
tms
tstart
,
tend
;
...
...
@@ -221,7 +269,7 @@ static double Time_F(int s, int usertime)
}
}
else
#endif
/* times() */
#
endif
/* times() */
{
static
struct
timeb
tstart
,
tend
;
long
i
;
...
...
@@ -239,6 +287,7 @@ static double Time_F(int s, int usertime)
return
((
ret
<
0
.
001
)
?
0
.
001
:
ret
);
}
}
#endif
}
int
MAIN
(
int
,
char
**
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录