You've already forked go-profiler-notes
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:
18
examples/stack-unwind-overhead/main.go
Normal file
18
examples/stack-unwind-overhead/main.go
Normal 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
|
||||
}
|
Reference in New Issue
Block a user