Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Fischer
emper
Commits
c0dc475b
Commit
c0dc475b
authored
4 years ago
by
Florian Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[meson] include compare header only if available
parent
183afe36
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
apps/WorkerSleepExample.cpp
+6
-2
6 additions, 2 deletions
apps/WorkerSleepExample.cpp
meson.build
+5
-0
5 additions, 0 deletions
meson.build
tests/AlarmFutureTest.cpp
+5
-1
5 additions, 1 deletion
tests/AlarmFutureTest.cpp
with
16 additions
and
3 deletions
apps/WorkerSleepExample.cpp
+
6
−
2
View file @
c0dc475b
// SPDX-License-Identifier: LGPL-3.0-or-later
// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright © 2020 Florian Schmaus
// Copyright © 2020 Florian Schmaus
#include
<chrono>
// for milliseconds, operator+, hig...
#include
<chrono>
// for milliseconds, operator+, hig...
#include
<compare>
// for operator<, strong_ordering
#include
<cstdlib>
// for exit, EXIT_SUCCESS
#include
<cstdlib>
// for exit, EXIT_SUCCESS
#include
<iostream>
// for operator<<, basic_ostream, endl
#include
<iostream>
// for operator<<, basic_ostream, endl
#include
<ratio>
// for ratio
#include
<ratio>
// for ratio
...
@@ -12,7 +11,12 @@
...
@@ -12,7 +11,12 @@
#include
"Fiber.hpp"
// for Fiber
#include
"Fiber.hpp"
// for Fiber
#include
"Runtime.hpp"
// for Runtime
#include
"Runtime.hpp"
// for Runtime
#include
"emper-common.h"
// for UNUSED_ARG, workerid_t
#include
"emper-common.h"
// for UNUSED_ARG, workerid_t
#include
"emper.hpp"
// for spawn
#include
"emper-config.h"
#include
"emper.hpp"
// for spawn
#ifdef EMPER_HAS_COMPARE_H
#include
<compare>
// for operator>=, strong_ordering
#endif
static
unsigned
int
ITERATIONS
=
10
;
static
unsigned
int
ITERATIONS
=
10
;
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
5
−
0
View file @
c0dc475b
...
@@ -26,6 +26,11 @@ if option_urcu
...
@@ -26,6 +26,11 @@ if option_urcu
emper_dependencies
+=
[
liburcu_dep
]
emper_dependencies
+=
[
liburcu_dep
]
endif
endif
cpp_compiler
=
meson
.
get_compiler
(
'cpp'
)
if
cpp_compiler
.
has_header
(
'compare'
)
conf_data
.
set
(
'EMPER_HAS_COMPARE_H'
,
true
)
endif
conf_data
.
set
(
'EMPER_WORKER_SLEEP'
,
get_option
(
'worker_sleep'
))
conf_data
.
set
(
'EMPER_WORKER_SLEEP'
,
get_option
(
'worker_sleep'
))
conf_data
.
set
(
'EMPER_WORKER_WAKEUP_STRATEGY'
,
get_option
(
'worker_wakeup_strategy'
))
conf_data
.
set
(
'EMPER_WORKER_WAKEUP_STRATEGY'
,
get_option
(
'worker_wakeup_strategy'
))
conf_data
.
set
(
'EMPER_LOCKED_WS_QUEUE'
,
get_option
(
'locked_ws_queue'
))
conf_data
.
set
(
'EMPER_LOCKED_WS_QUEUE'
,
get_option
(
'locked_ws_queue'
))
...
...
This diff is collapsed.
Click to expand it.
tests/AlarmFutureTest.cpp
+
5
−
1
View file @
c0dc475b
...
@@ -3,12 +3,16 @@
...
@@ -3,12 +3,16 @@
#include
<cassert>
// for assert
#include
<cassert>
// for assert
#include
<cerrno>
// for ETIME
#include
<cerrno>
// for ETIME
#include
<chrono>
// for microseconds, duration_cast, operator-
#include
<chrono>
// for microseconds, duration_cast, operator-
#include
<compare>
// for operator>=, strong_ordering
#include
<cstdint>
// for int32_t
#include
<cstdint>
// for int32_t
#include
<cstdlib>
// for exit, EXIT_SUCCESS
#include
<cstdlib>
// for exit, EXIT_SUCCESS
#include
"emper-config.h"
#include
"io/Future.hpp"
// for AlarmFuture
#include
"io/Future.hpp"
// for AlarmFuture
#ifdef EMPER_HAS_COMPARE_H
#include
<compare>
// for operator>=, strong_ordering
#endif
using
emper
::
io
::
AlarmFuture
;
using
emper
::
io
::
AlarmFuture
;
void
emperTest
()
{
void
emperTest
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment