File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,6 @@ func GetRandomData(r []byte) {
33
33
getRandomData (r )
34
34
}
35
35
36
- // CallOnG0 calls a function (func(off int)) on g0 stack.
37
- //
38
- // The function is meant to be invoked within Go assembly and its arguments
39
- // must be passed through registers rather than on the frame pointer, see
40
- // definition in sys_tamago_$GOARCH.s for details.
41
- func CallOnG0 ()
42
-
43
36
// WakeG modifies a goroutine cached timer for time.Sleep (g.timer) to fire as
44
37
// soon as possible.
45
38
//
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ var ramStart uint32
11
11
var ramSize uint32
12
12
var ramStackOffset uint32
13
13
14
+ // CallOnG0 calls a function (func(off int)) on g0 stack.
15
+ //
16
+ // The function is meant to be invoked within Go assembly and its arguments
17
+ // must be passed through registers rather than on the frame pointer, see
18
+ // definition in sys_tamago_arm.s for details.
19
+ func CallOnG0 ()
20
+
14
21
// GetG returns the pointer to the current G and its P.
15
22
func GetG () (gp uint32 , pp uint32 )
16
23
You can’t perform that action at this time.
0 commit comments