Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for NewProc (0.2 sec)

  1. test/live_regabi.go

    	return                       // ERROR "live at indirect call: .autotmp_[0-9]+"
    }
    
    // and newproc (go) escapes to the heap
    
    func f27go(b bool) {
    	x := 0
    	if b {
    		go call27(func() { x++ }) // ERROR "live at call to newobject: &x$" "live at call to newobject: &x .autotmp_[0-9]+$" "live at call to newproc: &x$" // allocate two closures, the func literal, and the wrapper for go
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows_test.go

    	}
    }
    
    var (
    	modwinmm    = syscall.NewLazyDLL("winmm.dll")
    	modkernel32 = syscall.NewLazyDLL("kernel32.dll")
    
    	procCreateEvent = modkernel32.NewProc("CreateEventW")
    	procSetEvent    = modkernel32.NewProc("SetEvent")
    )
    
    func createEvent() (syscall.Handle, error) {
    	r0, _, e0 := syscall.Syscall6(procCreateEvent.Addr(), 4, 0, 0, 0, 0, 0, 0)
    	if r0 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/registry_test.go

    	TimeZoneKeyName             [128]uint16
    	DynamicDaylightTimeDisabled uint8
    }
    
    var (
    	modkernel32 = syscall.NewLazyDLL("kernel32.dll")
    
    	procGetDynamicTimeZoneInformation = modkernel32.NewProc("GetDynamicTimeZoneInformation")
    )
    
    func GetDynamicTimeZoneInformation(dtzi *DynamicTimezoneinformation) (rc uint32, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	MOVQ	$runtime·debugCallV2<ABIInternal>(SB), AX
    	RET
    
    // mainPC is a function value for runtime.main, to be passed to newproc.
    // The reference to runtime.main is made via ABIInternal, since the
    // actual function (not the ABI0 wrapper) is needed by newproc.
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	BYTE	$0xcc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// after calling SetMaxStack and trying to allocate a stack that is too big,
    	// since stackalloc works with 32-bit sizes.
    	maxstackceiling = 2 * maxstacksize
    
    	// Allow newproc to start new Ms.
    	mainStarted = true
    
    	if haveSysmon {
    		systemstack(func() {
    			newm(sysmon, nil, -1)
    		})
    	}
    
    	// Lock the main goroutine onto this, the main OS thread,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    	}
    	if asan.Enabled && *done > 0 {
    		asan.Read(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	return err
    }
    
    var ioSync int64
    
    var procSetFilePointerEx = modkernel32.NewProc("SetFilePointerEx")
    
    const ptrSize = unsafe.Sizeof(uintptr(0))
    
    // setFilePointerEx calls SetFilePointerEx.
    // See https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfilepointerex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.Asanread = typecheck.LookupRuntimeFunc("asanread")
    	ir.Syms.Asanwrite = typecheck.LookupRuntimeFunc("asanwrite")
    	ir.Syms.Newobject = typecheck.LookupRuntimeFunc("newobject")
    	ir.Syms.Newproc = typecheck.LookupRuntimeFunc("newproc")
    	ir.Syms.Panicdivide = typecheck.LookupRuntimeFunc("panicdivide")
    	ir.Syms.PanicdottypeE = typecheck.LookupRuntimeFunc("panicdottypeE")
    	ir.Syms.PanicdottypeI = typecheck.LookupRuntimeFunc("panicdottypeI")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*DLLError).Unwrap", Method, 16},
    		{"(*Filetime).Nanoseconds", Method, 0},
    		{"(*Iovec).SetLen", Method, 0},
    		{"(*LazyDLL).Handle", Method, 0},
    		{"(*LazyDLL).Load", Method, 0},
    		{"(*LazyDLL).NewProc", Method, 0},
    		{"(*LazyProc).Addr", Method, 0},
    		{"(*LazyProc).Call", Method, 0},
    		{"(*LazyProc).Find", Method, 0},
    		{"(*Msghdr).SetControllen", Method, 0},
    		{"(*Proc).Addr", Method, 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)
  9. api/go1.txt

    pkg syscall (windows-386), method (*LazyDLL) Handle() uintptr
    pkg syscall (windows-386), method (*LazyDLL) Load() error
    pkg syscall (windows-386), method (*LazyDLL) NewProc(string) *LazyProc
    pkg syscall (windows-386), method (*LazyProc) Addr() uintptr
    pkg syscall (windows-386), method (*LazyProc) Call(...uintptr) (uintptr, uintptr, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top