LEFT | RIGHT |
(Both sides are equal) |
1 // Copyright 2014 The Go Authors. All rights reserved. | 1 // Copyright 2014 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package runtime | 5 package runtime |
6 | 6 |
7 import "unsafe" | 7 import "unsafe" |
8 | 8 |
9 // Declarations for runtime services implemented in C or assembly. | 9 // Declarations for runtime services implemented in C or assembly. |
10 // C implementations of these functions are in stubs.goc. | 10 // C implementations of these functions are in stubs.goc. |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 func atomicor8(ptr *uint8, val uint8) | 251 func atomicor8(ptr *uint8, val uint8) |
252 | 252 |
253 //go:noescape | 253 //go:noescape |
254 func setcallerpc(argp unsafe.Pointer, pc uintptr) | 254 func setcallerpc(argp unsafe.Pointer, pc uintptr) |
255 | 255 |
256 //go:noescape | 256 //go:noescape |
257 func getcallerpc(argp unsafe.Pointer) uintptr | 257 func getcallerpc(argp unsafe.Pointer) uintptr |
258 | 258 |
259 //go:noescape | 259 //go:noescape |
260 func getcallersp(argp unsafe.Pointer) uintptr | 260 func getcallersp(argp unsafe.Pointer) uintptr |
LEFT | RIGHT |