gitea源码

runtime.go 281B

1234567891011121314
  1. // Copyright 2024 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package util
  4. import "runtime"
  5. func CallerFuncName(skip int) string {
  6. pc := make([]uintptr, 1)
  7. runtime.Callers(skip+1, pc)
  8. funcName := runtime.FuncForPC(pc[0]).Name()
  9. return funcName
  10. }