Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
033aa98c
Unverified
Commit
033aa98c
authored
May 08, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
time.c: Windows API provides `clock_gettime`.
`gettimeofday` emulation needed no longer.
parent
f8345dbc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
mrbgems/mruby-time/src/time.c
mrbgems/mruby-time/src/time.c
+7
-3
No files found.
mrbgems/mruby-time/src/time.c
View file @
033aa98c
...
...
@@ -85,8 +85,12 @@ double round(double x) {
/** end of Time class configuration */
#ifndef NO_GETTIMEOFDAY
# ifdef _WIN32
#if (defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0) && defined(CLOCK_REALTIME)
# define USE_CLOCK_GETTIME
#endif
#if !defined(NO_GETTIMEOFDAY)
# if defined(_WIN32) && !defined(USE_CLOCK_GETTIME)
# define WIN32_LEAN_AND_MEAN
/* don't include winsock.h */
# include <windows.h>
# define gettimeofday my_gettimeofday
...
...
@@ -389,7 +393,7 @@ current_mrb_time(mrb_state *mrb)
sec
=
ts
.
tv_sec
;
usec
=
ts
.
tv_nsec
/
1000
;
}
#elif
(defined(_POSIX_TIMERS) && _POSIX_TIMERS > 0) && defined(CLOCK_REAL
TIME)
#elif
defined(USE_CLOCK_GET
TIME)
{
struct
timespec
ts
;
clock_gettime
(
CLOCK_REALTIME
,
&
ts
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment