Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for exitStack (0.61 sec)

  1. src/runtime/sys_freebsd_386.s

    // Exit the entire program (like C exit)
    TEXT runtime·exit(SB),NOSPLIT,$-4
    	MOVL	$SYS_exit, AX
    	INT	$0x80
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    GLOBL exitStack<>(SB),RODATA,$8
    DATA exitStack<>+0x00(SB)/4, $0
    DATA exitStack<>+0x04(SB)/4, $0
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0-4
    	MOVL	wait+0(FP), AX
    	// We're done using the stack.
    	MOVL	$0, (AX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top