Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bake
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
8
Issues
8
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
bake
Commits
25b489de
Commit
25b489de
authored
Jun 10, 2016
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cut debugging printfs
parent
308dc2a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/bake-bulk-rpc.c
src/bake-bulk-rpc.c
+7
-7
No files found.
src/bake-bulk-rpc.c
View file @
25b489de
...
...
@@ -28,7 +28,7 @@ static void bake_bulk_shutdown_ult(hg_handle_t handle)
struct
hg_info
*
hgi
;
margo_instance_id
mid
;
printf
(
"Got RPC request to shutdown.
\n
"
);
//
printf("Got RPC request to shutdown.\n");
hgi
=
HG_Get_info
(
handle
);
assert
(
hgi
);
...
...
@@ -59,7 +59,7 @@ static void bake_bulk_create_ult(hg_handle_t handle)
/* TODO: this check needs to be somewhere else */
assert
(
sizeof
(
pmemobj_region_id_t
)
<=
BAKE_BULK_REGION_ID_DATA_SIZE
);
printf
(
"Got RPC request to create bulk region.
\n
"
);
//
printf("Got RPC request to create bulk region.\n");
memset
(
&
out
,
0
,
sizeof
(
out
));
...
...
@@ -96,7 +96,7 @@ static void bake_bulk_write_ult(hg_handle_t handle)
margo_instance_id
mid
;
pmemobj_region_id_t
*
prid
;
printf
(
"Got RPC request to write bulk region.
\n
"
);
//
printf("Got RPC request to write bulk region.\n");
memset
(
&
out
,
0
,
sizeof
(
out
));
...
...
@@ -171,7 +171,7 @@ static void bake_bulk_persist_ult(hg_handle_t handle)
char
*
buffer
;
pmemobj_region_id_t
*
prid
;
printf
(
"Got RPC request to persist bulk region.
\n
"
);
//
printf("Got RPC request to persist bulk region.\n");
memset
(
&
out
,
0
,
sizeof
(
out
));
...
...
@@ -217,7 +217,7 @@ static void bake_bulk_get_size_ult(hg_handle_t handle)
hg_return_t
hret
;
pmemobj_region_id_t
*
prid
;
printf
(
"Got RPC request to get_size bulk region.
\n
"
);
//
printf("Got RPC request to get_size bulk region.\n");
memset
(
&
out
,
0
,
sizeof
(
out
));
...
...
@@ -257,7 +257,7 @@ static void bake_bulk_read_ult(hg_handle_t handle)
margo_instance_id
mid
;
pmemobj_region_id_t
*
prid
;
printf
(
"Got RPC request to read bulk region.
\n
"
);
//
printf("Got RPC request to read bulk region.\n");
memset
(
&
out
,
0
,
sizeof
(
out
));
...
...
@@ -328,7 +328,7 @@ static void bake_bulk_probe_ult(hg_handle_t handle)
{
bake_bulk_probe_out_t
out
;
printf
(
"Got RPC request to probe bulk region.
\n
"
);
//
printf("Got RPC request to probe bulk region.\n");
memset
(
&
out
,
0
,
sizeof
(
out
));
...
...
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