Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for _Trace (0.19 sec)

  1. src/syscall/zsyscall_openbsd_amd64.go

    //go:nosplit
    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	_, _, e1 := syscall6(abi.FuncPCABI0(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ptrace_trampoline()
    
    //go:cgo_import_dynamic libc_ptrace ptrace "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_arm64.go

    //go:nosplit
    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	_, _, e1 := syscall6(abi.FuncPCABI0(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ptrace_trampoline()
    
    //go:cgo_import_dynamic libc_ptrace ptrace "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_ppc64.go

    //go:nosplit
    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	_, _, e1 := syscall6(abi.FuncPCABI0(libc_ptrace_trampoline), uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ptrace_trampoline()
    
    //go:cgo_import_dynamic libc_ptrace ptrace "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.go

    	-installsuffix suffix
    		a suffix to use in the name of the package installation directory,
    		in order to keep output separate from default builds.
    		If using the -race flag, the install suffix is automatically set to race
    		or, if set explicitly, has _race appended to it. Likewise for the -msan
    		and -asan flags. Using a -buildmode option that requires non-default compile
    		flags has a similar effect.
    	-ldflags '[pattern=]arg list'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    		// But some tools don't recognize Go symbols as symbols, so we prefix them
    		// as well.)
    		symstr.AddUint8('_')
    
    		// replace "·" as ".", because DTrace cannot handle it.
    		name := strings.Replace(ldr.SymExtname(s), "·", ".", -1)
    
    		name = mangleABIName(ctxt, ldr, s, name)
    		symstr.Addstring(name)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    		err = enc.EncodeToken(tok)
    		if err != nil {
    			t.Fatalf("enc.EncodeToken: Unable to encode token (%#v), %v", tok, err)
    		}
    	}
    }
    
    // Issue 9796. Used to fail with GORACE="halt_on_error=1" -race.
    func TestRace9796(t *testing.T) {
    	type A struct{}
    	type B struct {
    		C []A `xml:"X>Y"`
    	}
    	var wg sync.WaitGroup
    	for i := 0; i < 2; i++ {
    		wg.Add(1)
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. src/os/exec/exec_test.go

    // This test is run by cmd/dist under the race detector to verify that
    // the race detector no longer reports any problems.
    func TestStdinCloseRace(t *testing.T) {
    	t.Parallel()
    
    	cmd := helperCommand(t, "stdinClose")
    	stdin, err := cmd.StdinPipe()
    	if err != nil {
    		t.Fatalf("StdinPipe: %v", err)
    	}
    	if err := cmd.Start(); err != nil {
    		t.Fatalf("Start: %v", err)
    
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	_, _, e1 := Syscall(SYS_KEYCTL, uintptr(cmd), uintptr(arg2), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {
    	_, _, e1 := Syscall6(SYS_PTRACE, uintptr(request), uintptr(pid), uintptr(addr), uintptr(data), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		// The standard demangler skips printing "int".
    	} else {
    		ps.print(ft.Base)
    		ps.writeByte(' ')
    	}
    	if ft.Accum {
    		ps.writeString("_Accum")
    	} else {
    		ps.writeString("_Fract")
    	}
    }
    
    func (ft *FixedType) Traverse(fn func(AST) bool) {
    	if fn(ft) {
    		ft.Base.Traverse(fn)
    	}
    }
    
    func (ft *FixedType) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BinaryExpr.Op", Field, 0},
    		{"BinaryExpr.OpPos", Field, 0},
    		{"BinaryExpr.X", Field, 0},
    		{"BinaryExpr.Y", Field, 0},
    		{"BlockStmt", Type, 0},
    		{"BlockStmt.Lbrace", Field, 0},
    		{"BlockStmt.List", Field, 0},
    		{"BlockStmt.Rbrace", Field, 0},
    		{"BranchStmt", Type, 0},
    		{"BranchStmt.Label", Field, 0},
    		{"BranchStmt.Tok", Field, 0},
    		{"BranchStmt.TokPos", Field, 0},
    		{"CallExpr", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top