Created
July 14, 2014 20:49
-
-
Save foliea/2e4cc91363e1936ff7f1 to your computer and use it in GitHub Desktop.
timeout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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