Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unwinder (0.11 sec)

  1. src/runtime/proc.go

    	// other threads, so mp is usually not getg().m.
    	// In fact mp may not even be stopped.
    	// See golang.org/issue/17165.
    	getg().m.mallocing++
    
    	var u unwinder
    	var stk [maxCPUProfStack]uintptr
    	n := 0
    	if mp.ncgo > 0 && mp.curg != nil && mp.curg.syscallpc != 0 && mp.curg.syscallsp != 0 {
    		cgoOff := 0
    		// Check cgoCallersUse to make sure that we are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	PT_SUNW_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_SUNWSTACK     ProgType = 0x6ffffffb /* Stack segment */
    
    	PT_HIOS ProgType = 0x6fffffff /* Last OS-specific. */
    
    	PT_LOPROC ProgType = 0x70000000 /* First processor-specific type. */
    
    	PT_ARM_ARCHEXT ProgType = 0x70000000 /* Architecture compatibility */
    	PT_ARM_EXIDX   ProgType = 0x70000001 /* Exception unwind tables */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback.go

    	if !x {
    		t.Fatal("nestedCall did not call func")
    	}
    }
    
    func testCallbackGC(t *testing.T) {
    	nestedCall(runtime.GC)
    }
    
    func testCallbackPanic(t *testing.T) {
    	// Make sure panic during callback unwinds properly.
    	if lockedOSThread() {
    		t.Fatal("locked OS thread on entry to TestCallbackPanic")
    	}
    	defer func() {
    		s := recover()
    		if s == nil {
    			t.Fatal("did not panic")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
Back to top