summaryrefslogtreecommitdiffstats
path: root/src/runtime/testdata/testprogcgo/trace.go
blob: 875434b1f1e04ac0f131ba6c278a2c8a17acf8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package main

/*
// Defined in trace_*.c.
void cCalledFromGo(void);
*/
import "C"
import (
	"context"
	"fmt"
	"log"
	"os"
	"runtime/trace"
)

func init() {
	register("Trace", Trace)
}

// Trace is used by TestTraceUnwindCGO.
func Trace() {
	file, err := os.CreateTemp("", "testprogcgo_trace")
	if err != nil {
		log.Fatalf("failed to create temp file: %s", err)
	}
	defer file.Close()

	if err := trace.Start(file); err != nil {
		log.Fatal(err)
	}
	defer trace.Stop()

	goCalledFromGo()
	<-goCalledFromCThreadChan

	fmt.Printf("trace path:%s", file.Name())
}

// goCalledFromGo calls cCalledFromGo which calls back into goCalledFromC and
// goCalledFromCThread.
func goCalledFromGo() {
	C.cCalledFromGo()
}

//export goCalledFromC
func goCalledFromC() {
	trace.Log(context.Background(), "goCalledFromC", "")
}

var goCalledFromCThreadChan = make(chan struct{})

//export goCalledFromCThread
func goCalledFromCThread() {
	trace.Log(context.Background(), "goCalledFromCThread", "")
	close(goCalledFromCThreadChan)
}