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
96c3797c
Commit
96c3797c
authored
Jan 15, 2019
by
Christoffer Ackelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed miss spelling on filename in wb_pal.
parent
b7255716
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
7 deletions
+8
-7
sev/lib/sev/src/sev_dbhdf5.cpp
sev/lib/sev/src/sev_dbhdf5.cpp
+4
-4
src/tools/bld/src/os_linux/hw_x86_64/variables.mk
src/tools/bld/src/os_linux/hw_x86_64/variables.mk
+2
-1
wb/lib/wb/src/wb_pal.cpp
wb/lib/wb/src/wb_pal.cpp
+2
-2
No files found.
sev/lib/sev/src/sev_dbhdf5.cpp
View file @
96c3797c
...
...
@@ -4832,18 +4832,18 @@ int sev_dbhdf5::time_to_idx(hid_t dataset_id, hid_t memspace_id,
idx
=
size
-
1
;
get_time
(
dataset_id
,
memspace_id
,
dataspace_id
,
mtype
,
idx
,
&
time
);
printf
(
"%d Search time : %d %d
\n
"
,
idx
,
stime
,
time
);
if
(
abs
(
time
-
stime
)
<=
resolution
)
{
if
(
ABS
(
time
-
stime
)
<=
resolution
)
{
*
ridx
=
idx
;
return
1
;
}
if
(
prev_time
&&
abs
(
time
-
prev_time
)
<=
1
)
{
if
(
abs
(
time
-
low_time
)
>
abs
(
high_time
-
time
))
if
(
prev_time
&&
ABS
(
time
-
prev_time
)
<=
1
)
{
if
(
ABS
(
time
-
low_time
)
>
ABS
(
high_time
-
time
))
idx
=
high_idx
-
(
high_idx
-
low_idx
)
/
10
;
else
idx
=
low_idx
+
(
high_idx
-
low_idx
)
/
10
;
get_time
(
dataset_id
,
memspace_id
,
dataspace_id
,
mtype
,
idx
,
&
time
);
printf
(
"%d Search time : %d %d
\n
"
,
idx
,
stime
,
time
);
if
(
abs
(
time
-
stime
)
<=
resolution
)
{
if
(
ABS
(
time
-
stime
)
<=
resolution
)
{
*
ridx
=
idx
;
return
1
;
}
...
...
src/tools/bld/src/os_linux/hw_x86_64/variables.mk
View file @
96c3797c
...
...
@@ -22,7 +22,7 @@ lis_dir := $(module_root)/lis
kit_dir
:=
$(module_root)
/kit
src_dir
:=
$(module_root)
/src
load_dir
:=
$(module_root)
/load
web_dir
:=
$(module_root)
/web
web_dir
:=
$(module_root)
/web
doc_dir
:=
$(release_root)
/exp/doc
elib_dir
:=
$(release_root)
/exp/lib
...
...
@@ -94,6 +94,7 @@ rs_msg_eobjs := $(eobj_dir)/pwr_msg_rs.o
wb_msg_eobjs
:=
$(eobj_dir)
/pwr_msg_wb.o
$(eobj_dir)
/pwr_msg_ge.o
$(eobj_dir)
/pwr_msg_flow.o
linkcp
=
:
pre_so
=
# Configuration
#ifeq ($(pwre_conf_mysql),1)
...
...
wb/lib/wb/src/wb_pal.cpp
View file @
96c3797c
...
...
@@ -662,8 +662,8 @@ void Pal::allocate_pixmaps()
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_getp"
,
&
pixmap_getp
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_head"
,
&
pixmap_head
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_initstep"
,
&
pixmap_initstep
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_logic1
_
"
,
&
pixmap_logic1_
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_logic2
_
"
,
&
pixmap_logic2_
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_logic1"
,
&
pixmap_logic1_
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_logic2"
,
&
pixmap_logic2_
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_wait"
,
&
pixmap_wait
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_order"
,
&
pixmap_order
);
brow_LoadPBM
(
brow_ctx
,
"xnav_bitmap_orderact"
,
&
pixmap_orderact
);
...
...
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