Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for lockOSThread (0.24 sec)

  1. src/os/exec/exec.go

    // type [*ExitError]. Other error types may be returned for other situations.
    //
    // If the calling goroutine has locked the operating system thread
    // with [runtime.LockOSThread] and modified any inheritable OS-level
    // thread state (for example, Linux or Plan 9 name spaces), the new
    // process will inherit the caller's thread state.
    func (c *Cmd) Run() error {
    	if err := c.Start(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    // the index of the last subkey (obtainable from RegQueryInfoKey),
    // decrementing until index 0 is enumerated.
    //
    // Successive calls to this API must happen on the same OS thread,
    // so call [runtime.LockOSThread] before calling this function.
    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: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"GOMAXPROCS", Func, 0},
    		{"GOOS", Const, 0},
    		{"GOROOT", Func, 0},
    		{"Goexit", Func, 0},
    		{"GoroutineProfile", Func, 0},
    		{"Gosched", Func, 0},
    		{"KeepAlive", Func, 7},
    		{"LockOSThread", Func, 0},
    		{"MemProfile", Func, 0},
    		{"MemProfileRate", Var, 0},
    		{"MemProfileRecord", Type, 0},
    		{"MemProfileRecord.AllocBytes", Field, 0},
    		{"MemProfileRecord.AllocObjects", Field, 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