github.com/tencent/goom@v1.0.1/internal/bytecode/stub/makefuncstub.go (about)

     1  // Package stub 负责生成和应用桩函数
     2  package stub
     3  
     4  // unsafe 包使用方式
     5  import _ "unsafe" // 匿名引入
     6  
     7  // MakeFuncStub 用于调用 makeFunc 创建出来的函数
     8  // keep sync with reflect.makeFuncStub
     9  //
    10  //go:linkname MakeFuncStub reflect.makeFuncStub
    11  func MakeFuncStub()