6c3f97399a
tlog is used heavily everywhere and deserves a shorter name. Renamed using sed magic, without any manual rework: find * -type f -exec sed -i 's/toggledlog/tlog/g' {} +
23 lines
459 B
Go
23 lines
459 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
|
)
|
|
|
|
// Send signal USR1 to "pid" (usually our parent process). This notifies it
|
|
// that the mounting has completed sucessfully.
|
|
func sendUsr1(pid int) {
|
|
p, err := os.FindProcess(pid)
|
|
if err != nil {
|
|
tlog.Warn.Printf("sendUsr1: FindProcess: %v\n", err)
|
|
return
|
|
}
|
|
err = p.Signal(syscall.SIGUSR1)
|
|
if err != nil {
|
|
tlog.Warn.Printf("sendUsr1: Signal: %v\n", err)
|
|
}
|
|
}
|