Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeleteProcThreadAttributeList (0.15 sec)

  1. src/syscall/export_windows_test.go

    // license that can be found in the LICENSE file.
    
    package syscall
    
    var NewProcThreadAttributeList = newProcThreadAttributeList
    var UpdateProcThreadAttribute = updateProcThreadAttribute
    var DeleteProcThreadAttributeList = deleteProcThreadAttributeList
    
    const PROC_THREAD_ATTRIBUTE_HANDLE_LIST = _PROC_THREAD_ATTRIBUTE_HANDLE_LIST
    
    var EncodeWTF16 = encodeWTF16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 500 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	return updateProcThreadAttribute(al.data, 0, attribute, value, size, nil, nil)
    }
    
    // Delete frees ProcThreadAttributeList's resources.
    func (al *ProcThreadAttributeListContainer) Delete() {
    	deleteProcThreadAttributeList(al.data)
    	LocalFree(Handle(unsafe.Pointer(al.data)))
    	al.data = nil
    	al.pointers = nil
    }
    
    // List returns the actual ProcThreadAttributeList to be passed to StartupInfoEx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top