Source file
src/runtime/example_test.go
1
2
3
4
5 package runtime_test
6
7 import (
8 "fmt"
9 "os"
10 "runtime"
11 "strings"
12 )
13
14 func ExampleFrames() {
15 c := func() {
16
17 pc := make([]uintptr, 10)
18 n := runtime.Callers(0, pc)
19 if n == 0 {
20
21
22
23
24
25 return
26 }
27
28 pc = pc[:n]
29 frames := runtime.CallersFrames(pc)
30
31
32
33 for {
34 frame, more := frames.Next()
35
36
37
38
39 function := strings.ReplaceAll(frame.Function, "main.main", "runtime_test.ExampleFrames")
40 fmt.Printf("- more:%v | %s\n", more, function)
41 if function == "runtime_test.ExampleFrames" {
42 break
43 }
44
45
46 if !more {
47 break
48 }
49 }
50 }
51
52 b := func() { c() }
53 a := func() { b() }
54
55 a()
56
57
58
59
60
61
62 }
63
64 func ExampleAddCleanup() {
65 tempFile, err := os.CreateTemp(os.TempDir(), "file.*")
66 if err != nil {
67 fmt.Println("failed to create temp file:", err)
68 return
69 }
70
71 ch := make(chan struct{})
72
73
74 runtime.AddCleanup(&tempFile, func(fileName string) {
75 if err := os.Remove(fileName); err == nil {
76 fmt.Println("temp file has been removed")
77 }
78 ch <- struct{}{}
79 }, tempFile.Name())
80
81 if err := tempFile.Close(); err != nil {
82 fmt.Println("failed to close temp file:", err)
83 return
84 }
85
86
87
88 runtime.GC()
89
90
91 <-ch
92
93
94
95 }
96
View as plain text