Skip to content

Commit

Permalink
Remove unused local bindings from system.
Browse files Browse the repository at this point in the history
  • Loading branch information
fracek committed Jun 24, 2014
1 parent 4dd66c8 commit f6930d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/system/unix-operating-system.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ define function run-application
run-outputter(outputter, outputter-read-fd);
end if;

let (return-pid, status-code) = %waitpid(pid, 0);
let (_return-pid, status-code) = %waitpid(pid, 0);
let signal-code = logand(status-code, #o177);
let exit-code = ash(status-code, -8);
apply(values, exit-code, (signal-code ~= 0) & signal-code, #f,
Expand Down Expand Up @@ -428,7 +428,7 @@ define function wait-for-application-process
(process :: <application-process>)
=> (exit-code :: <integer>, signal :: false-or(<integer>));
if (process.%application-process-state == #"running")
let (return-pid, return-status)
let (_return-pid, return-status)
= %waitpid(process.application-process-id, 0);
process.%application-process-status-code := return-status;
process.%application-process-state := #"exited";
Expand Down

0 comments on commit f6930d9

Please sign in to comment.