Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 306 for setpgid (0.15 sec)

  1. src/syscall/exec_libc.go

    func forkx(flags uintptr) (pid uintptr, err Errno)
    func getpid() (pid uintptr, err Errno)
    func ioctl(fd uintptr, req uintptr, arg uintptr) (err Errno)
    func setgid(gid uintptr) (err Errno)
    func setgroups1(ngid uintptr, gid uintptr) (err Errno)
    func setrlimit1(which uintptr, lim unsafe.Pointer) (err Errno)
    func setsid() (pid uintptr, err Errno)
    func setuid(uid uintptr) (err Errno)
    func setpgid(pid uintptr, pgid uintptr) (err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. src/syscall/exec_bsd.go

    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/syscall/exec_freebsd.go

    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. src/syscall/exec_libc2.go

    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/runtime/syscall2_solaris.go

    //go:cgo_import_dynamic libc_getpid getpid "libc.so"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    //go:cgo_import_dynamic libc_setgid setgid "libc.so"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.so"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    //go:cgo_import_dynamic libc_setsid setsid "libc.so"
    //go:cgo_import_dynamic libc_setuid setuid "libc.so"
    //go:cgo_import_dynamic libc_setpgid setpgid "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/syscall/exec_unix_test.go

    	}
    
    	if cpid != cpgrp {
    		t.Fatalf("Child's process group is not the child's process ID")
    	}
    }
    
    func TestPgid(t *testing.T) {
    	ppid, ppgrp := parent()
    
    	cmd1 := create(t)
    
    	cmd1.proc.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
    	cmd1.Start()
    	defer cmd1.Stop()
    
    	cpid1, cpgrp1 := cmd1.Info()
    
    	if cpid1 == ppid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/syscall/asm_solaris_amd64.s

    	JMP	runtime·syscall_setgroups(SB)
    
    TEXT ·setrlimit1(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setrlimit(SB)
    
    TEXT ·setsid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setsid(SB)
    
    TEXT ·setuid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setuid(SB)
    
    TEXT ·setpgid(SB),NOSPLIT,$0
    	JMP	runtime·syscall_setpgid(SB)
    
    TEXT ·Syscall(SB),NOSPLIT,$0
    	JMP	runtime·syscall_syscall(SB)
    
    TEXT ·wait4(SB),NOSPLIT,$0
    	JMP	runtime·syscall_wait4(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 17:21:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/syscall_aix.go

    //go:cgo_import_dynamic libc_setgid setgid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setsid setsid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setuid setuid "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setpgid setpgid "libc.a/shr_64.o"
    
    //go:linkname libc_chdir libc_chdir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/syscall/exec_linux.go

    	Ptrace bool
    	Setsid bool // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/syscall/syscall_openbsd.go

    //sys	Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err error)
    //sysnb	Setegid(egid int) (err error)
    //sysnb	Seteuid(euid int) (err error)
    //sysnb	Setgid(gid int) (err error)
    //sys	Setlogin(name string) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error)
    //sys	Setpriority(which int, who int, prio int) (err error)
    //sysnb	Setregid(rgid int, egid int) (err error)
    //sysnb	Setreuid(ruid int, euid int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top