Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for SYSCALL (0.45 sec)

  1. api/go1.3.txt

    pkg syscall (freebsd-386), const AF_INET6_SDP = 42
    pkg syscall (freebsd-386), const AF_INET6_SDP ideal-int
    pkg syscall (freebsd-386), const AF_INET_SDP = 40
    pkg syscall (freebsd-386), const AF_INET_SDP ideal-int
    pkg syscall (freebsd-386), const AF_MAX = 42
    pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 246
    pkg syscall (freebsd-386), const DLT_MPEG_2_TS = 243
    pkg syscall (freebsd-386), const DLT_MPEG_2_TS ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall(procGetIfEntry.Addr(), 1, uintptr(unsafe.Pointer(pIfRow)), 0, 0)
    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    func AddDllDirectory(path *uint16) (cookie uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procAddDllDirectory.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0)
    	cookie = uintptr(r0)
    	if cookie == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/proc.go

    	if sched.gcwaiting.Load() {
    		systemstack(entersyscall_gcwait)
    		save(pc, sp, bp)
    	}
    
    	gp.m.locks--
    }
    
    // Standard syscall entry used by the go syscall library and normal cgo calls.
    //
    // This is exported via linkname to assembly in the syscall package and x/sys.
    //
    // Other packages should not be accessing entersyscall directly,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/ppc64/asm9.go

    		}
    		o1 = AOP_RRR(OP_MCRFS, ((uint32(p.To.Reg) & 7) << 2), ((0 & 7) << 2), 0)
    
    	case 77: /* syscall $scon, syscall Rx */
    		if p.From.Type == obj.TYPE_CONST {
    			if p.From.Offset > BIG || p.From.Offset < -BIG {
    				c.ctxt.Diag("illegal syscall, sysnum too large: %v", p)
    			}
    			o1 = AOP_IRR(OP_ADDI, REGZERO, REGZERO, uint32(p.From.Offset))
    		} else if p.From.Type == obj.TYPE_REG {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/load/pkg.go

    		}
    		if p.UsesCgo() && (!p.Standard || !cgoSyscallExclude[p.ImportPath]) {
    			addImport("syscall", true)
    		}
    
    		// SWIG adds imports of some standard packages.
    		if p.UsesSwig() {
    			addImport("unsafe", true)
    			if cfg.BuildContext.Compiler != "gccgo" {
    				addImport("runtime/cgo", true)
    			}
    			addImport("syscall", true)
    			addImport("sync", true)
    
    			// TODO: The .swig and .swigcxx files can use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. 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