2021-09-09 14:25:25 +02:00
|
|
|
//go:build plan9 || js
|
2021-01-03 01:05:52 +01:00
|
|
|
// +build plan9 js
|
|
|
|
|
|
|
|
package mountlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NotifyOnSigHup makes SIGHUP notify given channel on supported systems
|
|
|
|
func NotifyOnSigHup(sighupChan chan os.Signal) {}
|