Skip to content

Instantly share code, notes, and snippets.

@foliea
Created July 14, 2014 20:49
Show Gist options
  • Save foliea/2e4cc91363e1936ff7f1 to your computer and use it in GitHub Desktop.
Save foliea/2e4cc91363e1936ff7f1 to your computer and use it in GitHub Desktop.
timeout
func main() {
cmd := exec.Command(“stuff”)
chan := make(chan int, 1)
go func() {
cmd.Run()
chan <- STOP
}
go func() {
sleep(5)
chan <- TIMEOUT
}
for {
switch {
when <- TIMEOUT
cmd.Kill()
return 1
when <- STOP
return 0
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment