Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
promise
OpenXG-RAN
Commits
1261ae75
Commit
1261ae75
authored
May 11, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update remote_old.c to deal with time in events
parent
aacb2ff7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
common/utils/T/tracer/remote_old.c
common/utils/T/tracer/remote_old.c
+6
-0
No files found.
common/utils/T/tracer/remote_old.c
View file @
1261ae75
...
@@ -94,7 +94,13 @@ void get_message(int s)
...
@@ -94,7 +94,13 @@ void get_message(int s)
int32_t
size
;
int32_t
size
;
int
m
;
int
m
;
#ifdef T_SEND_TIME
struct
timespec
t
;
#endif
if
(
GET
(
s
,
&
size
,
4
)
!=
4
)
abort
();
if
(
GET
(
s
,
&
size
,
4
)
!=
4
)
abort
();
#ifdef T_SEND_TIME
if
(
GET
(
s
,
&
t
,
sizeof
(
struct
timespec
))
!=
sizeof
(
struct
timespec
))
abort
();
#endif
if
(
GET
(
s
,
&
m
,
sizeof
(
int
))
!=
sizeof
(
int
))
abort
();
if
(
GET
(
s
,
&
m
,
sizeof
(
int
))
!=
sizeof
(
int
))
abort
();
switch
(
m
)
{
switch
(
m
)
{
case
T_first
:
{
case
T_first
:
{
...
...
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