Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 835 for syscalls (0.21 sec)

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

    	Unused05           int32
    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    // go run mksysnum.go /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/sys/syscall.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && darwin
    
    package unix
    
    // Deprecated: Use libSystem wrappers instead of direct syscalls.
    const (
    	SYS_SYSCALL                        = 0
    	SYS_EXIT                           = 1
    	SYS_FORK                           = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Cpuhit             int64
    	Cpumiss            int64
    	Faults             int64
    	Traps              int64
    	Intrs              int64
    	Swtch              int64
    	Softs              int64
    	Syscalls           int64
    	Pageins            int64
    	Swapins            int64
    	Swapouts           int64
    	Pgswapin           int64
    	Pgswapout          int64
    	Forks              int64
    	Forks_ppwait       int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    	Unused05           int32
    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. cluster/gce/windows/common.psm1

        }
        Start-Sleep -Seconds 1
      }
    }
    
    # This compiles some C# code that can make syscalls, and pulls the
    # result into our powershell environment so we can make syscalls from this script.
    # We make syscalls directly, because whatever the powershell cmdlets do under the hood,
    # they can't seem to open the log files concurrently with writers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  6. src/cmd/trace/jsontrace_test.go

    			checkMetaNamesEmitted(t, data, "thread_name", []string{"GC", "Network", "Timers", "Syscalls", "Proc 0"})
    			checkProcStartStop(t, data)
    			checkSyscalls(t, data)
    			checkNetworkUnblock(t, data)
    			// TODO(mknyszek): Check for flow events.
    		})
    	}
    }
    
    func checkSyscalls(t *testing.T, data format.Data) {
    	data = filterViewerTrace(data,
    		filterEventName("syscall"),
    		filterStackRootFunc("main.blockingSyscall"))
    	if len(data.Events) <= 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/internal/testenv/exec.go

    		return nil
    	}
    
    	// ios has an exec syscall but on real iOS devices it might return a
    	// permission error. In an emulated environment (such as a Corellium host)
    	// it might succeed, so if we need to exec we'll just have to try it and
    	// find out.
    	//
    	// As of 2023-04-19 wasip1 and js don't have exec syscalls at all, but we
    	// may as well use the same path so that this branch can be tested without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go

    // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build riscv64 && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build 386 && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top