Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
maestro-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
maestro
maestro-core
Merge requests
!31
Resolve "Add origin timestamp to events"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add origin timestamp to events"
78-add-origin-timestamp-to-events
into
devel
Overview
0
Commits
4
Pipelines
0
Changes
13
Merged
Utz-Uwe Haus
requested to merge
78-add-origin-timestamp-to-events
into
devel
3 years ago
Overview
0
Commits
4
Pipelines
0
Changes
13
Expand
Closes
#78 (closed)
Edited
3 years ago
by
Utz-Uwe Haus
0
0
Merge request reports
Compare
devel
devel (base)
and
latest version
latest version
746eeca4
4 commits,
3 years ago
13 files
+
139
−
71
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
include/maestro/core.h
+
13
−
0
Options
@@ -111,6 +111,19 @@ extern "C" {
/** the number of characters needed to print an @ref mstro_app_id value using @ref PRIappid */
#define MSTRO_APP_ID_STR_LEN (21) // decimal, no sign, no NUL
/** type to express nanosecond time points (since an arbitrary point in time) */
typedef
uint64_t
mstro_nanosec_t
;
/** Printing support */
#define PRInanosec PRIu64
/** Return the current time */
mstro_nanosec_t
mstro_clock
(
void
);
/** nsec-per-seconds multiplier */
#define NSEC_PER_SEC ((mstro_nanosec_t)1000*1000*1000)
/**@} (end of group MSTRO_Core) */
Loading