Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
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
Esteban Blanc
proview
Commits
047b4b16
Commit
047b4b16
authored
7 years ago
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of newton:/data1/x0-0-0/pwr
parents
b9172108
3eebaca2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
sev/lib/sev/src/sev_valuecache.cpp
sev/lib/sev/src/sev_valuecache.cpp
+3
-1
src/exe/rt_qmon/src/rt_qmon.c
src/exe/rt_qmon/src/rt_qmon.c
+2
-1
src/exe/rt_redcom/src/rt_redcom.c
src/exe/rt_redcom/src/rt_redcom.c
+2
-1
No files found.
sev/lib/sev/src/sev_valuecache.cpp
View file @
047b4b16
...
...
@@ -199,7 +199,9 @@ void sev_valuecache_double::write( int index, void *thread)
}
if
(
m_write_cb
)
{
pwr_tTime
time
;
time_Aadd
(
&
time
,
&
m_start_time
,
time_Float64ToD
(
0
,
wtime
));
pwr_tDeltaTime
dt
;
time_Float64ToD
(
&
dt
,
wtime
);
time_Aadd
(
&
time
,
&
m_start_time
,
&
dt
);
(
m_write_cb
)(
m_userdata
,
m_useridx
,
&
wval
,
&
time
,
thread
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/exe/rt_qmon/src/rt_qmon.c
View file @
047b4b16
...
...
@@ -960,6 +960,7 @@ get_tmo (
{
float
rto
;
pwr_tTime
now
;
pwr_tDeltaTime
drto
;
rto
=
lp
->
np
->
link
[
lp
->
lix
].
rtt_rto
;
...
...
@@ -974,7 +975,7 @@ get_tmo (
}
time_GetTimeMonotonic
(
&
now
);
time_Aadd
(
tmo
,
&
now
,
time_FloatToD
(
0
,
rto
));
time_Aadd
(
tmo
,
&
now
,
time_FloatToD
(
&
drto
,
rto
));
}
static
void
*
...
...
This diff is collapsed.
Click to expand it.
src/exe/rt_redcom/src/rt_redcom.c
View file @
047b4b16
...
...
@@ -1205,6 +1205,7 @@ get_tmo (
{
float
rto
;
pwr_tTime
now
;
pwr_tDeltaTime
drto
;
rto
=
lp
->
np
->
link
.
rtt_rto
;
...
...
@@ -1220,7 +1221,7 @@ get_tmo (
}
time_GetTimeMonotonic
(
&
now
);
time_Aadd
(
tmo
,
&
now
,
time_FloatToD
(
0
,
rto
));
time_Aadd
(
tmo
,
&
now
,
time_FloatToD
(
&
drto
,
rto
));
}
static
void
*
...
...
This diff is collapsed.
Click to expand it.
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