Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sds-keyval
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
sds
sds-keyval
Commits
262e79b0
Commit
262e79b0
authored
Mar 21, 2019
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sending-side now also using ABT-IO for migration
parent
930beed2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/sdskv-server.cc
src/sdskv-server.cc
+3
-2
No files found.
src/sdskv-server.cc
View file @
262e79b0
...
...
@@ -238,7 +238,6 @@ extern "C" int sdskv_provider_register(
margo_register_data
(
mid
,
rpc_id
,
(
void
*
)
tmp_svr_ctx
,
NULL
);
/* register a REMI client */
// TODO use an ABT-IO instance
ret
=
remi_client_init
(
mid
,
ABT_IO_INSTANCE_NULL
,
&
(
tmp_svr_ctx
->
remi_client
));
if
(
ret
!=
REMI_SUCCESS
)
{
sdskv_server_finalize_cb
(
tmp_svr_ctx
);
...
...
@@ -246,7 +245,6 @@ extern "C" int sdskv_provider_register(
}
/* register a REMI provider */
// TODO use an ABT-IO instance
ret
=
remi_provider_register
(
mid
,
ABT_IO_INSTANCE_NULL
,
provider_id
,
abt_pool
,
&
(
tmp_svr_ctx
->
remi_provider
));
if
(
ret
!=
REMI_SUCCESS
)
{
sdskv_server_finalize_cb
(
tmp_svr_ctx
);
...
...
@@ -2377,5 +2375,8 @@ extern "C" int sdskv_provider_set_abtio_instance(
remi_provider_set_abt_io_instance
(
provider
->
remi_provider
,
abtio
);
remi_client_set_abt_io_instance
(
provider
->
remi_client
,
abtio
);
return
SDSKV_SUCCESS
;
}
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