Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 667 for syscalls (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.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.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.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)
  3. src/syscall/exec_libc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build aix || solaris
    
    // This file handles forkAndExecInChild function for OS using libc syscall like AIX or Solaris.
    
    package syscall
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Setsid     bool        // Create session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.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.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.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.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.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.6K bytes
    - Viewed (0)
  7. src/runtime/sys_netbsd_amd64.s

    	MOVL	$SYS____lwp_park60, AX
    	SYSCALL
    	MOVL	AX, ret+40(FP)
    	RET
    
    TEXT runtime·lwp_unpark(SB),NOSPLIT,$0
    	MOVL	lwp+0(FP), DI		// arg 1 - lwp
    	MOVQ	hint+8(FP), SI		// arg 2 - hint
    	MOVL	$SYS__lwp_unpark, AX
    	SYSCALL
    	MOVL	AX, ret+16(FP)
    	RET
    
    TEXT runtime·lwp_self(SB),NOSPLIT,$0
    	MOVL	$SYS__lwp_self, AX
    	SYSCALL
    	MOVL	AX, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. src/runtime/sys_dragonfly_amd64.s

    // /usr/src/sys/kern/syscalls.master for syscall numbers.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "cgo/abi_amd64.h"
    
    TEXT runtime·sys_umtx_sleep(SB),NOSPLIT,$0
    	MOVQ addr+0(FP), DI		// arg 1 - ptr
    	MOVL val+8(FP), SI		// arg 2 - value
    	MOVL timeout+12(FP), DX		// arg 3 - timeout
    	MOVL $469, AX		// umtx_sleep
    	SYSCALL
    	JCC	2(PC)
    	NEGQ	AX
    	MOVL	AX, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_386.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    // System calls and other sys.stuff for 386, FreeBSD
    // /usr/src/sys/kern/syscalls.master for syscall numbers.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		4
    
    #define SYS_exit		1
    #define SYS_read		3
    #define SYS_write		4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/minio-dashboard.json

              "expr": "rate(minio_node_syscall_write_total{job=~\"$scrape_jobs\"}[$__rate_interval])",
              "interval": "",
              "legendFormat": "Write Syscalls [{{server}}]",
              "refId": "B"
            }
          ],
          "title": "Syscalls",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
Back to top