HomeSort by relevance Sort by last modified time
    Searched refs:systemstack (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/runtime/
stubs.go 39 // systemstack runs fn on a system stack.
40 // If systemstack is called from the per-OS-thread (g0) stack, or
41 // if systemstack is called from the signal handling (gsignal) stack,
42 // systemstack calls fn directly and returns.
43 // Otherwise, systemstack is being called from the limited stack
44 // of an ordinary goroutine. In this case, systemstack switches
51 // systemstack(func() {
57 func systemstack(fn func()) func
60 throw("systemstack called from unexpected goroutine")
cgocheck.go 42 systemstack(func() {
135 systemstack(func() {
149 systemstack(func() {
184 systemstack(func() {
199 //go:systemstack
cgo_sigaction.go 56 // systemstack will make the call directly; otherwise, it will switch to
59 // The function literal that we pass to systemstack is not nosplit, but
62 systemstack(func() {
export_test.go 52 systemstack(func() {
171 systemstack(func() {
211 systemstack(func() {
cgo_mmap.go 27 systemstack(func() {
os_nacl.go 171 systemstack(func() {
191 systemstack(func() {
228 systemstack(func() {
os_windows.go 470 systemstack(func() {
475 systemstack(func() {
481 systemstack(func() {
493 systemstack(func() {
507 systemstack(func() {
610 systemstack(func() {
os_dragonfly.go 88 systemstack(func() {
123 systemstack(func() {
os_freebsd.go 79 systemstack(func() {
107 systemstack(func() {
mbarrier.go 141 //go:systemstack
183 systemstack(func() {
206 systemstack(func() {
228 systemstack(func() { throw("bad pointer in write barrier") })
341 systemstack(func() {
mprof.go 257 systemstack(func() {
638 systemstack(func() {
683 systemstack(func() {
724 systemstack(func() {
744 systemstack(func() {
panic.go 202 systemstack(func() {
221 systemstack(func() {
254 systemstack(func() {
569 systemstack(startpanic_m)
577 systemstack(func() {
  /prebuilts/go/linux-x86/src/runtime/
stubs.go 39 // systemstack runs fn on a system stack.
40 // If systemstack is called from the per-OS-thread (g0) stack, or
41 // if systemstack is called from the signal handling (gsignal) stack,
42 // systemstack calls fn directly and returns.
43 // Otherwise, systemstack is being called from the limited stack
44 // of an ordinary goroutine. In this case, systemstack switches
51 // systemstack(func() {
57 func systemstack(fn func()) func
60 throw("systemstack called from unexpected goroutine")
cgocheck.go 42 systemstack(func() {
135 systemstack(func() {
149 systemstack(func() {
184 systemstack(func() {
199 //go:systemstack
cgo_sigaction.go 56 // systemstack will make the call directly; otherwise, it will switch to
59 // The function literal that we pass to systemstack is not nosplit, but
62 systemstack(func() {
export_test.go 52 systemstack(func() {
171 systemstack(func() {
211 systemstack(func() {
cgo_mmap.go 27 systemstack(func() {
os_nacl.go 171 systemstack(func() {
191 systemstack(func() {
228 systemstack(func() {
os_windows.go 470 systemstack(func() {
475 systemstack(func() {
481 systemstack(func() {
493 systemstack(func() {
507 systemstack(func() {
610 systemstack(func() {
os_dragonfly.go 88 systemstack(func() {
123 systemstack(func() {
os_freebsd.go 79 systemstack(func() {
107 systemstack(func() {
mbarrier.go 141 //go:systemstack
183 systemstack(func() {
206 systemstack(func() {
228 systemstack(func() { throw("bad pointer in write barrier") })
341 systemstack(func() {
mprof.go 257 systemstack(func() {
638 systemstack(func() {
683 systemstack(func() {
724 systemstack(func() {
744 systemstack(func() {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
lex.go 55 Systemstack // func must run on system stack
78 case "go:systemstack":
80 yyerror("//go:systemstack only allowed in runtime")
82 return Systemstack
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
lex.go 55 Systemstack // func must run on system stack
78 case "go:systemstack":
80 yyerror("//go:systemstack only allowed in runtime")
82 return Systemstack

Completed in 609 milliseconds

1 2 3 4