Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
HeteroFlow
THAPI
Commits
d73cca23
Commit
d73cca23
authored
Oct 13, 2020
by
Brice Videau
Browse files
Variables should have been static.
parent
d5e827dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
ze/tracer_ze_helpers.include.c
View file @
d73cca23
...
...
@@ -153,8 +153,8 @@ struct _ze_event_h {
pthread_mutex_unlock(&_ze_events_mutex); \
}
struct
_ze_event_h
*
_ze_events
=
NULL
;
pthread_mutex_t
_ze_events_mutex
=
PTHREAD_MUTEX_INITIALIZER
;
static
struct
_ze_event_h
*
_ze_events
=
NULL
;
static
pthread_mutex_t
_ze_events_mutex
=
PTHREAD_MUTEX_INITIALIZER
;
static
inline
void
_register_ze_event
(
ze_event_handle_t
event
,
...
...
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