summaryrefslogtreecommitdiff
path: root/obfs4proxy/parentMonitor_linux.go
diff options
context:
space:
mode:
authorYawning Angel <yawning@torproject.org>2015-03-26 06:46:24 +0000
committerYawning Angel <yawning@torproject.org>2015-03-26 06:46:24 +0000
commitb670a079236a4e382cfe927f3e352b3e7a231166 (patch)
tree99e3a7d1a91e009d535345902d47b85176d78f9d /obfs4proxy/parentMonitor_linux.go
parent4e4c9052f436b86729b853715086e9445c76e185 (diff)
Fix comments. (No functional changes)
Diffstat (limited to 'obfs4proxy/parentMonitor_linux.go')
-rw-r--r--obfs4proxy/parentMonitor_linux.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/obfs4proxy/parentMonitor_linux.go b/obfs4proxy/parentMonitor_linux.go
index 0fc967f..65fd307 100644
--- a/obfs4proxy/parentMonitor_linux.go
+++ b/obfs4proxy/parentMonitor_linux.go
@@ -33,10 +33,9 @@ import (
)
func parentMonitorInitLinux() error {
- /* Use prctl() to have the kernel deliver a SIGTERM if the parent
- * process dies. This beats anything else that can be done before
- * #15435 is implemented.
- */
+ // Use prctl() to have the kernel deliver a SIGTERM if the parent
+ // process dies. This beats anything else that can be done before
+ // #15435 is implemented.
_, _, errno := syscall.Syscall(syscall.SYS_PRCTL, syscall.PR_SET_PDEATHSIG, uintptr(syscall.SIGTERM), 0)
if errno != 0 {
var err error = errno