Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for goexit0 (0.28 sec)

  1. src/runtime/asm_mips64x.s

    	MOVV	savedG-8(SP), g
    	MOVV	savedR23-16(SP), R23
    	RET
    
    // The top-most function running on a goroutine
    // returns to goexit+PCQuantum.
    TEXT runtime·goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
    	NOR	R0, R0	// NOP
    	JAL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	NOR	R0, R0	// NOP
    
    TEXT ·checkASM(SB),NOSPLIT,$0-1
    	MOVW	$1, R1
    	MOVB	R1, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    	MOVD	24(R1), R2
    	BL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	MOVD	R0, R0	// NOP
    
    // prepGoExitFrame saves the current TOC pointer (i.e. the TOC pointer for the
    // module containing runtime) to the frame that goexit will execute in when
    // the goroutine exits. It's implemented in assembly mainly because that's the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz.txt

    # Test that f.Skipped within f.Fuzz panics
    ! go test skipped_fuzz_fn_fuzz_test.go
    ! stdout ^ok
    ! stdout 'f.Skipped is'
    stdout FAIL
    stdout 'fuzz target'
    stdout 't.Skipped is false'
    
    # Test that runtime.Goexit within the fuzz function is an error.
    ! go test goexit_fuzz_fn_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    
    # Test that a call to f.Fatal after the Fuzz func is executed.
    ! go test fatal_after_fuzz_func_fuzz_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. cmd/leak-detect_test.go

    var ignoredStackFns = []string{
    	"",
    	// Below are the stacks ignored by the upstream leaktest code.
    	"testing.Main(",
    	"testing.tRunner(",
    	"testing.tRunner(",
    	"runtime.goexit",
    	"created by runtime.gc",
    	// ignore the snapshot function.
    	// since the snapshot is taken here the entry will have the current function too.
    	"pickRelevantGoroutines",
    	"runtime.MHeap_Scavenger",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/runtime/asm_s390x.s

    	MOVD	R4, LR
    	MOVD	R5, R11
    	RET
    
    // The top-most function running on a goroutine
    // returns to goexit+PCQuantum.
    TEXT runtime·goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
    	BYTE $0x07; BYTE $0x00; // 2-byte nop
    	BL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	BYTE $0x07; BYTE $0x00; // 2-byte nop
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/testing/fuzz.go

    // called.
    func fRunner(f *F, fn func(*F)) {
    	// When this goroutine is done, either because runtime.Goexit was called, a
    	// panic started, or fn returned normally, record the duration and send
    	// t.signal, indicating the fuzz test is done.
    	defer func() {
    		// Detect whether the fuzz test panicked or called runtime.Goexit
    		// without calling F.Fuzz, F.Fail, or F.Skip. If it did, panic (possibly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/net/http/main_test.go

    			strings.Contains(stack, "closeWriteAndWait") ||
    			strings.Contains(stack, "testing.Main(") ||
    			// These only show up with GOTRACEBACK=2; Issue 5005 (comment 28)
    			strings.Contains(stack, "runtime.goexit") ||
    			strings.Contains(stack, "created by runtime.gc") ||
    			strings.Contains(stack, "interestingGoroutines") ||
    			strings.Contains(stack, "runtime.MHeap_Scavenger") {
    			continue
    		}
    		gs = append(gs, stack)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/runtime/traceback_system_test.go

    traceback_system_test.go:45: runtime_test.child2: 	child3()
    traceback_system_test.go:41: runtime_test.child1: 	child2()
    traceback_system_test.go:35: runtime_test.crash.func1: 		child1()
    redacted.go:0: runtime.goexit
    `
    	if strings.TrimSpace(got) != strings.TrimSpace(want) {
    		t.Errorf("got:\n%swant:\n%s", got, want)
    	}
    }
    
    // parseStackPCs parses the parent process's program counters for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/runtime/asm_mipsx.s

    	MOVW	R9, g
    	MOVW	R10, R31
    
    	RET
    
    // The top-most function running on a goroutine
    // returns to goexit+PCQuantum.
    TEXT runtime·goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
    	NOR	R0, R0	// NOP
    	JAL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	NOR	R0, R0	// NOP
    
    TEXT ·checkASM(SB),NOSPLIT,$0-1
    	MOVW	$1, R1
    	MOVB	R1, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/runtime/asm_loong64.s

    	MOVV	savedG-8(SP), g
    	MOVV	savedREGTMP-16(SP), R30
    	RET
    
    // The top-most function running on a goroutine
    // returns to goexit+PCQuantum.
    TEXT runtime·goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
    	NOOP
    	JAL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	NOOP
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    TEXT runtime·addmoduledata(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (2)
Back to top