projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
386e916
)
schlock global variable needs to be volatile
author
Xiaoyin Liu
<xiaoyinl@users.noreply.github.com>
Mon, 24 Jul 2017 15:28:50 +0000
(11:28 -0400)
committer
Rich Salz
<rsalz@openssl.org>
Mon, 24 Jul 2017 18:58:11 +0000
(14:58 -0400)
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4000)
apps/speed.c
patch
|
blob
|
history
diff --git
a/apps/speed.c
b/apps/speed.c
index becdf6efcda96c76e5a9541244156bd73a6895c3..2d943b12e2778701191c708e55d5e8558f151435 100644
(file)
--- a/
apps/speed.c
+++ b/
apps/speed.c
@@
-275,7
+275,8
@@
static SIGRETTYPE sig_done(int sig)
# if !defined(SIGALRM)
# define SIGALRM
# endif
-static unsigned int lapse, schlock;
+static unsigned int lapse;
+static volatile unsigned int schlock;
static void alarm_win32(unsigned int secs)
{
lapse = secs * 1000;