Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for osSetupTLS (0.09 sec)

  1. src/runtime/tls_windows_amd64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    // osSetupTLS is called by needm to set up TLS for non-Go threads.
    //
    // Defined in assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 19:18:50 UTC 2021
    - 294 bytes
    - Viewed (0)
  2. src/runtime/tls_stub.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (windows && !amd64) || !windows
    
    package runtime
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 260 bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	MOVQ	DI, 0(CX)(GS)
    	RET
    
    TEXT runtimeĀ·nanotime1(SB),NOSPLIT,$0-8
    	MOVQ	$_INTERRUPT_TIME, DI
    	MOVQ	time_lo(DI), AX
    	IMULQ	$100, AX
    	MOVQ	AX, ret+0(FP)
    	RET
    
    // func osSetupTLS(mp *m)
    // Setup TLS. for use by needm on Windows.
    TEXT runtimeĀ·osSetupTLS(SB),NOSPLIT,$0-8
    	MOVQ	mp+0(FP), AX
    	LEAQ	m_tls(AX), DI
    	CALL	runtimeĀ·settls(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top