Skip to content

Commit

Permalink
Revert "removed gag, linux is still borked."
Browse files Browse the repository at this point in the history
This reverts commit fea75e3.
  • Loading branch information
Kurt Lawrence committed Mar 14, 2019
1 parent fea75e3 commit 9960a85
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/pfh/compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,10 @@ where

let (tx, rx) = std::sync::mpsc::channel();

//let (stdout_gag, stderr_gag) = get_gags();
let (stdout_gag, stderr_gag) = get_gags();

// let jh =
// std::thread::spawn(move || redirect_output(std_pipes_cb, rx, stdout_gag, stderr_gag));

let jh = std::thread::spawn(move || {});
let jh =
std::thread::spawn(move || redirect_output(std_pipes_cb, rx, stdout_gag, stderr_gag));

let r = func(app_data);

Expand Down

0 comments on commit 9960a85

Please sign in to comment.