Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for syscall6 (0.82 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func RegCloseKey(key Handle) (regerrno error) {
    	r0, _, _ := syscall.Syscall(procRegCloseKey.Addr(), 1, uintptr(key), 0, 0)
    	if r0 != 0 {
    		regerrno = syscall.Errno(r0)
    	}
    	return
    }
    
    func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    const (
    	SIGABRT = syscall.Signal(0x6)
    	SIGALRM = syscall.Signal(0xe)
    	SIGFPE  = syscall.Signal(0x8)
    	SIGHUP  = syscall.Signal(0x1)
    	SIGILL  = syscall.Signal(0x4)
    	SIGINT  = syscall.Signal(0x2)
    	SIGIOT  = syscall.Signal(0x6)
    	SIGKILL = syscall.Signal(0x9)
    	SIGPIPE = syscall.Signal(0xd)
    	SIGQUIT = syscall.Signal(0x3)
    	SIGSEGV = syscall.Signal(0xb)
    	SIGTERM = syscall.Signal(0xf)
    	SIGTRAP = syscall.Signal(0x5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    	data="GC sweep termination"
    String id=23
    	data="GC mark termination"
    String id=24
    	data="syscall.read"
    String id=25
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/zsyscall_linux_amd64.go"
    String id=26
    	data="syscall.Read"
    String id=27
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_unix.go"
    String id=28
    	data="internal/poll.ignoringEINTRIO"
    String id=29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package windows
    
    import (
    	"net"
    	"syscall"
    	"unsafe"
    )
    
    // NTStatus corresponds with NTSTATUS, error values returned by ntdll.dll and
    // other native functions.
    type NTStatus uint32
    
    const (
    	// Invented values to support what package os expects.
    	O_RDONLY   = 0x00000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		Name:      readTotal,
    		Help:      "Total read SysCalls to the kernel. /proc/[pid]/io syscr",
    		Type:      counterMetric,
    	}
    }
    
    func getMinIOProcessSysCallWMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: sysCallSubsystem,
    		Name:      writeTotal,
    		Help:      "Total write SysCalls to the kernel. /proc/[pid]/io syscw",
    		Type:      counterMetric,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	"net/http/httputil"
    	"net/http/internal"
    	"net/http/internal/testcert"
    	"net/url"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"testing"
    	"time"
    )
    
    type dummyAddr string
    type oneConnListener struct {
    	conn net.Conn
    }
    
    func (l *oneConnListener) Accept() (c net.Conn, err error) {
    	c = l.conn
    	if c == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=36
    	data="runtime.gcMarkTermination"
    String id=37
    	data="syscall.write"
    String id=38
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/zsyscall_linux_amd64.go"
    String id=39
    	data="syscall.Write"
    String id=40
    	data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_unix.go"
    String id=41
    	data="internal/poll.ignoringEINTRIO"
    String id=42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top