Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PR_SET_PDEATHSIG (0.28 sec)

  1. src/syscall/exec_linux.go

    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Parent death signal
    	if sys.Pdeathsig != 0 {
    		_, _, err1 = RawSyscall6(SYS_PRCTL, PR_SET_PDEATHSIG, uintptr(sys.Pdeathsig), 0, 0, 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    
    		// Signal self if parent is already dead. This might cause a
    		// duplicate signal in rare cases, but it won't matter when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	PR_GET_NAME                     = 16
    	PR_SET_NO_NEW_PRIVS             = 38
    	PR_GET_NO_NEW_PRIVS             = 39
    	PR_SET_DUMPABLE                 = 4
    	PR_GET_DUMPABLE                 = 3
    	PR_SET_PDEATHSIG                = 1
    	PR_GET_PDEATHSIG                = 2
    	PR_SET_CHILD_SUBREAPER          = 36
    	PR_GET_CHILD_SUBREAPER          = 37
    	AT_FDCWD                        = -100
    	AT_EACCESS                      = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	PR_SET_MM_START_DATA                        = 0x3
    	PR_SET_MM_START_STACK                       = 0x5
    	PR_SET_NAME                                 = 0xf
    	PR_SET_NO_NEW_PRIVS                         = 0x26
    	PR_SET_PDEATHSIG                            = 0x1
    	PR_SET_PTRACER                              = 0x59616d61
    	PR_SET_SECCOMP                              = 0x16
    	PR_SET_SECUREBITS                           = 0x1c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"PR_SET_DUMPABLE", Const, 0},
    		{"PR_SET_ENDIAN", Const, 0},
    		{"PR_SET_FPEMU", Const, 0},
    		{"PR_SET_FPEXC", Const, 0},
    		{"PR_SET_KEEPCAPS", Const, 0},
    		{"PR_SET_NAME", Const, 0},
    		{"PR_SET_PDEATHSIG", Const, 0},
    		{"PR_SET_PTRACER", Const, 0},
    		{"PR_SET_SECCOMP", Const, 0},
    		{"PR_SET_SECCOMP_FILTER", Const, 0},
    		{"PR_SET_SECUREBITS", Const, 0},
    		{"PR_SET_TIMERSLACK", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top