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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
maestro
maestro-core
Merge requests
!32
Draft: Resolve "cmake integration issues"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Draft: Resolve "cmake integration issues"
82-cmake-integration-issues
into
main
Overview
0
Commits
5
Pipelines
0
Changes
13
Closed
Ghost User
requested to merge
82-cmake-integration-issues
into
main
3 years ago
Overview
0
Commits
5
Pipelines
0
Changes
13
Closes
#82
0
0
Merge request reports
Compare
main
version 1
8f062490
3 years ago
main (base)
and
latest version
latest version
8f062490
5 commits,
3 years ago
version 1
8f062490
5 commits,
3 years ago
13 files
+
141
−
74
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
include/maestro/core.h
+
13
−
0
View file @ 8f062490
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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