Skip to content

Commit

Permalink
Remove debug points
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexclique committed Oct 30, 2019
1 parent 92c4ca8 commit 77fa780
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions bastion-executor/src/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ impl Pool {
let child_id = stack.get_pid() as u64;
let parent_id = worker::get_proc_stack(|t| t.get_pid() as u64).unwrap_or(0);

dbg!(parent_id);
dbg!(child_id);

let (task, handle) = LightProc::recoverable(future, worker::schedule, stack);
task.schedule();
handle
Expand Down
3 changes: 0 additions & 3 deletions bastion-executor/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ pub fn run<F, T>(future: F, stack: ProcStack) -> T
let child_id = stack.get_pid();
let parent_id = worker::get_proc_stack(|t| t.get_pid()).unwrap_or(0);

dbg!(parent_id);
dbg!(child_id);

// Wrap the future into one that drops task-local variables on exit.
// let future = task_local::add_finalizer(future);

Expand Down

0 comments on commit 77fa780

Please sign in to comment.