Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
ion
Commits
33c3bd66
Commit
33c3bd66
authored
6 years ago
by
Michael Aaron Murphy
Browse files
Options
Downloads
Patches
Plain Diff
Fix background jobs that don't request TTY access
parent
68980d60
No related branches found
No related tags found
1 merge request
!779
Fix background jobs that don't request TTY access
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lib/shell/pipe_exec/streams.rs
+11
-10
11 additions, 10 deletions
src/lib/shell/pipe_exec/streams.rs
with
11 additions
and
10 deletions
src/lib/shell/pipe_exec/streams.rs
+
11
−
10
View file @
33c3bd66
...
@@ -13,14 +13,13 @@ pub(crate) fn redir(old: RawFd, new: RawFd) {
...
@@ -13,14 +13,13 @@ pub(crate) fn redir(old: RawFd, new: RawFd) {
/// Duplicates STDIN, STDOUT, and STDERR; in that order; and returns them as `File`s.
/// Duplicates STDIN, STDOUT, and STDERR; in that order; and returns them as `File`s.
/// Why, you ask? A simple safety mechanism to ensure that the duplicated FDs are closed
/// Why, you ask? A simple safety mechanism to ensure that the duplicated FDs are closed
/// when dropped.
/// when dropped.
pub
(
crate
)
fn
duplicate_streams
()
->
io
::
Result
<
(
File
,
File
,
File
)
>
{
pub
(
crate
)
fn
duplicate_streams
()
->
io
::
Result
<
(
Option
<
File
>
,
File
,
File
)
>
{
// Duplicates STDIN and converts it into a `File`.
// STDIN may have been closed for a background shell, so it is ok if it cannot be duplicated.
sys
::
dup
(
sys
::
STDIN_FILENO
)
.map
(|
fd
|
unsafe
{
File
::
from_raw_fd
(
fd
)
})
let
stdin
=
sys
::
dup
(
sys
::
STDIN_FILENO
)
.ok
()
.map
(|
fd
|
unsafe
{
File
::
from_raw_fd
(
fd
)
});
// Do the same for stdout, and then meld the result with stdin
.and_then
(|
stdin
|
sys
::
dup
(
sys
::
STDOUT_FILENO
)
sys
::
dup
(
sys
::
STDOUT_FILENO
)
.map
(|
fd
|
unsafe
{
File
::
from_raw_fd
(
fd
)
})
.map
(|
fd
|
unsafe
{
File
::
from_raw_fd
(
fd
)
})
.map
(|
stdout
|
(
stdin
,
stdout
))
.map
(|
stdout
|
(
stdin
,
stdout
))
)
// And then meld stderr alongside stdin and stdout
// And then meld stderr alongside stdin and stdout
.and_then
(|(
stdin
,
stdout
)|
sys
::
dup
(
sys
::
STDERR_FILENO
)
.and_then
(|(
stdin
,
stdout
)|
sys
::
dup
(
sys
::
STDERR_FILENO
)
.map
(|
fd
|
unsafe
{
File
::
from_raw_fd
(
fd
)
})
.map
(|
fd
|
unsafe
{
File
::
from_raw_fd
(
fd
)
})
...
@@ -28,8 +27,10 @@ pub(crate) fn duplicate_streams() -> io::Result<(File, File, File)> {
...
@@ -28,8 +27,10 @@ pub(crate) fn duplicate_streams() -> io::Result<(File, File, File)> {
)
)
}
}
pub
(
crate
)
fn
redirect_streams
(
inp
:
File
,
out
:
File
,
err
:
File
)
{
pub
(
crate
)
fn
redirect_streams
(
inp
:
Option
<
File
>
,
out
:
File
,
err
:
File
)
{
redir
(
inp
.as_raw_fd
(),
sys
::
STDIN_FILENO
);
if
let
Some
(
inp
)
=
inp
{
redir
(
inp
.as_raw_fd
(),
sys
::
STDIN_FILENO
);
}
redir
(
out
.as_raw_fd
(),
sys
::
STDOUT_FILENO
);
redir
(
out
.as_raw_fd
(),
sys
::
STDOUT_FILENO
);
redir
(
err
.as_raw_fd
(),
sys
::
STDERR_FILENO
);
redir
(
err
.as_raw_fd
(),
sys
::
STDERR_FILENO
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment