Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for pdfork (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    	SYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    	SYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    	SYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    	SYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_CAP_ENTER                = 516 // { int cap_enter(void); }
    	SYS_CAP_GETMODE              = 517 // { int cap_getmode(u_int *modep); }
    	SYS_PDFORK                   = 518 // { int pdfork(int *fdp, int flags); }
    	SYS_PDKILL                   = 519 // { int pdkill(int fd, int signum); }
    	SYS_PDGETPID                 = 520 // { int pdgetpid(int fd, pid_t *pidp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         */
        @Input
        public boolean isFork() {
            return fork;
        }
    
        /**
         * Sets whether to run the Groovy compiler in a separate process. Defaults to {@code true}.
         */
        public void setFork(boolean fork) {
            this.fork = fork;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/syscall/exec_plan9.go

    type ProcAttr struct {
    	Dir   string    // Current working directory.
    	Env   []string  // Environment.
    	Files []uintptr // File descriptors.
    	Sys   *SysProcAttr
    }
    
    type SysProcAttr struct {
    	Rfork int // additional flags to pass to rfork
    }
    
    var zeroProcAttr ProcAttr
    var zeroSysProcAttr SysProcAttr
    
    func forkExec(argv0 string, argv []string, attr *ProcAttr) (pid int, err error) {
    	var (
    		p      [2]int
    		n      int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    	const (
    		PR_CAP_AMBIENT       = 0x2f
    		PR_CAP_AMBIENT_RAISE = 0x2
    	)
    
    	// vfork requires that the child not touch any of the parent's
    	// active stack frames. Hence, the child does all post-fork
    	// processing in this stack frame and never returns, while the
    	// parent returns immediately from this frame and does all
    	// post-fork processing in the outer frame.
    	//
    	// Declare all variables at top in case any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         */
        @Input
        public boolean isFork() {
            return fork;
        }
    
        /**
         * Sets whether to run the compiler in its own process. Note that this does
         * not necessarily mean that a new process will be created for each compile task.
         * Defaults to {@code false}.
         */
        public void setFork(boolean fork) {
            this.fork = fork;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

                spec.getCompileOptions().setHeaderOutputDirectory(null);
            }
            return spec;
        }
    
        private void validateForkOptionsMatchToolchain() {
            if (!getOptions().isFork()) {
                return;
            }
    
            JavaCompiler javaCompilerTool = getJavaCompiler().get();
            File toolchainJavaHome = javaCompilerTool.getMetadata().getInstallationPath().getAsFile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top