remove processors/execd/examples/count.go

This commit is contained in:
Steven Soroka 2020-06-24 11:14:21 -04:00
parent 36e584e92f
commit 8ddb8f9f26
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
package main
// Example using HUP signaling
import (
"fmt"
"os"
"os/signal"
"syscall"
)
func main() {
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGHUP)
counter := 0
for {
<-c
fmt.Printf("counter_go count=%d\n", counter)
counter++
}
}