1
0
mirror of https://github.com/DataDog/go-profiler-notes.git synced 2025-07-15 23:54:16 +02:00

stack-unwind-overhead

This commit is contained in:
Felix Geisendörfer
2021-04-04 14:39:53 +02:00
parent f8f6e88e3a
commit b393c68281
4 changed files with 695 additions and 0 deletions

View File

@ -0,0 +1,18 @@
// Package main is a code generator that creates functions of different size.
package main
import (
"fmt"
"os"
)
func main() {
if err := run(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
func run() error {
return nil
}