97b3a1d7ea
Common is no more a thing Use of TorrentParam instead of SearchParam now Common structs for search are exported in utils/search/structs Util has been renamed utils
26 lignes
415 o
Go
26 lignes
415 o
Go
// +build !win32
|
|
|
|
package signals
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
)
|
|
|
|
func Handle() {
|
|
chnl := make(chan os.Signal)
|
|
signal.Notify(chnl, syscall.SIGHUP, os.Interrupt)
|
|
go func(chnl chan os.Signal) {
|
|
for sig := range chnl {
|
|
switch sig {
|
|
case syscall.SIGHUP:
|
|
handleReload()
|
|
case os.Interrupt:
|
|
interrupted()
|
|
// XXX: put unix specific cleanup here as needed
|
|
return
|
|
}
|
|
}
|
|
}(chnl)
|
|
}
|