Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 204 for syscalls (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/cgocall.go

    	checkm := gp.m
    
    	// Save current syscall parameters, so m.winsyscall can be
    	// used again if callback decide to make syscall.
    	winsyscall := gp.m.winsyscall
    
    	// entersyscall saves the caller's SP to allow the GC to trace the Go
    	// stack. However, since we're returning to an earlier stack frame and
    	// need to pair with the entersyscall() call made by cgocall, we must
    	// save syscall* and let reentersyscall restore them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    | `minio_node_scanner_versions_scanned`      | Total number of object versions scanned since server start. |
    | `minio_node_syscall_read_total`            | Total read SysCalls to the kernel. /proc/[pid]/io syscr.    |
    | `minio_node_syscall_write_total`           | Total write SysCalls to the kernel. /proc/[pid]/io syscw.   |
    | `minio_usage_last_activity_nano_seconds`   | Time elapsed (in nano seconds) since last scan activity.    |
    
    # Bucket Metrics
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  8. src/cmd/trace/pprof.go

    		return strings.Contains(reason, "chan") || strings.Contains(reason, "sync") || strings.Contains(reason, "select")
    	})
    }
    
    // computePprofSyscall returns a computePprofFunc that generates a syscall pprof-like
    // profile (time spent in syscalls).
    func computePprofSyscall() computePprofFunc {
    	return makeComputePprofFunc(trace.GoSyscall, func(_ string) bool {
    		return true
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. docs/metrics/v3.md

    | `minio_system_process_syscall_read_total`          | `counter` | Total read SysCalls to the kernel. /proc/[pid]/io syscr                                                        | `server` |
    | `minio_system_process_syscall_write_total`         | `counter` | Total write SysCalls to the kernel. /proc/[pid]/io syscw                                                       | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_arm.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 ARM, FreeBSD
    // /usr/src/sys/kern/syscalls.master for syscall numbers.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    // for EABI, as we don't support OABI
    #define SYS_BASE 0x0
    
    #define SYS_exit (SYS_BASE + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top