Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Test7978 (0.68 sec)

  1. src/cmd/cgo/internal/test/cgo_test.go

    func Test6907Go(t *testing.T)                { test6907Go(t) }
    func Test7560(t *testing.T)                  { test7560(t) }
    func Test7665(t *testing.T)                  { test7665(t) }
    func Test7978(t *testing.T)                  { test7978(t) }
    func Test8092(t *testing.T)                  { test8092(t) }
    func Test8517(t *testing.T)                  { test8517(t) }
    func Test8694(t *testing.T)                  { test8694(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/testx.go

    	var buf [128]int
    	if n == 0 {
    		return 0
    	}
    	return buf[growStack(n-1)]
    }
    
    func issue7978go() {
    	C.issue7978c((*C.uint32_t)(&issue7978sync))
    	issue7978wait(7, 8)
    }
    
    func test7978(t *testing.T) {
    	if runtime.Compiler == "gccgo" {
    		t.Skip("gccgo can not do stack traces of C code")
    	}
    	debug.SetTraceback("2")
    	issue7978sync = 0
    	go issue7978go()
    	// test in c code, before callback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top