Skip to content
Snippets Groups Projects
Commit c7989b44 authored by Yaroslav Dynnikov's avatar Yaroslav Dynnikov
Browse files

chore: arrange privacy in ipc module

parent ae55e9f7
No related branches found
No related tags found
1 merge request!266Minor fixes
...@@ -5,7 +5,7 @@ use serde::ser::Serialize; ...@@ -5,7 +5,7 @@ use serde::ser::Serialize;
use std::marker::PhantomData; use std::marker::PhantomData;
#[derive(Debug)] #[derive(Debug)]
pub struct Fd(pub libc::c_int); pub struct Fd(libc::c_int);
#[derive(Debug)] #[derive(Debug)]
pub struct Sender<T> { pub struct Sender<T> {
......
...@@ -460,7 +460,7 @@ fn main_run(args: args::Run) -> ! { ...@@ -460,7 +460,7 @@ fn main_run(args: args::Run) -> ! {
.func(move || { .func(move || {
use ::tarantool::ffi::tarantool::CoIOFlags; use ::tarantool::ffi::tarantool::CoIOFlags;
use ::tarantool::coio::coio_wait; use ::tarantool::coio::coio_wait;
coio_wait(from_parent.0, CoIOFlags::READ, f64::INFINITY).ok(); coio_wait(*from_parent, CoIOFlags::READ, f64::INFINITY).ok();
tlog!(Warning, "Supervisor terminated, exiting"); tlog!(Warning, "Supervisor terminated, exiting");
std::process::exit(0); std::process::exit(0);
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment