Commit 9025013 1 parent ee8050c commit 9025013 Copy full SHA for 9025013
File tree 1 file changed +4
-4
lines changed
rust-crates/symblib-capi/c
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -141,24 +141,24 @@ extern void symblib_retpadextr_free(SymblibRetPadExtractor* extr);
141
141
// Opaque handle to SymblibPointResolver.
142
142
typedef struct SymblibPointResolver SymblibPointResolver ;
143
143
144
- // Create a new SymblibPointResolver handler from a Go executable .
144
+ // Creates a new SymblibPointResolver.
145
145
extern SymblibStatus symblib_goruntime_new (
146
146
const char * executable ,
147
147
SymblibPointResolver * * runtime // out arg
148
148
);
149
149
150
- // Frees a Go based SymblibPointResolver
150
+ // Frees a SymblibPointResolver.
151
151
extern void symblib_goruntime_free (SymblibPointResolver * runtime );
152
152
153
- // Hold information about a symbol and its origin.
153
+ // Contains information about a symbol and its origin.
154
154
typedef struct SymblibResolvedSymbol {
155
155
uint64_t start_addr ;
156
156
SymblibString function_name ;
157
157
SymblibString file_name ;
158
158
uint32_t line_number ;
159
159
} SymblibResolvedSymbol ;
160
160
161
- // Enveloping struct that holds len number of symbols in data.
161
+ // Enveloping struct that contains len number of symbols in data.
162
162
typedef struct SymblibSlice_SymblibResolvedSymbol {
163
163
const SymblibResolvedSymbol * data ;
164
164
size_t len ;
You can’t perform that action at this time.
0 commit comments