Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
redox-os
ipcd
Commits
f5bcff90
Verified
Commit
f5bcff90
authored
Jul 18, 2019
by
Jeremy Soller
Browse files
Fix unmount logic
parent
b0bb843a
Pipeline
#5325
failed with stages
in 1 minute and 47 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.rs
View file @
f5bcff90
...
...
@@ -46,7 +46,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let
mut
chan_opt
=
Some
(
chan
);
let
mut
shm_opt
=
Some
(
shm
);
while
chan_opt
.is_some
()
&&
shm_opt
.is_some
()
{
while
chan_opt
.is_some
()
||
shm_opt
.is_some
()
{
let
mut
event
=
Event
::
default
();
event_file
.read
(
&
mut
event
)
?
;
...
...
Write
Preview
Supports
Markdown
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