Browse Source

Close files upon stop. Still need to fix bash issues?

pull/55/head
Jae Kwon 10 years ago
parent
commit
02bc535e0e
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      common/os.go
  2. +1
    -0
      process/process.go

+ 1
- 0
common/os.go View File

@ -9,6 +9,7 @@ import (
func TrapSignal(cb func()) {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
signal.Notify(c, os.Kill)
go func() {
for sig := range c {
fmt.Printf("captured %v, exiting...\n", sig)


+ 1
- 0
process/process.go View File

@ -84,6 +84,7 @@ func Create(mode int, label string, execPath string, args []string, input string
}
func Stop(proc *Process, kill bool) error {
defer proc.OutputFile.Close()
if kill {
fmt.Printf("Killing process %v\n", proc.Cmd.Process)
return proc.Cmd.Process.Kill()


Loading…
Cancel
Save