docs: documented fix of symbol name resolve bug when function is extern / assembly

This commit is contained in:
antifallobst 2023-03-09 00:45:00 +01:00
parent 6d60157da0
commit 3d0aedeeca
1 changed files with 2 additions and 2 deletions

View File

@ -1743,5 +1743,5 @@ Returns whether the char (**_chr_**) is lowercase(a-z) or not.
#### `symbol_resolve_from_name(symbols, num_symbols, name);` - function (symbol_T*)
This searches **_symbols_** for a symbol with a matching **_name_**.
#### `symbol_resolve_function_from_rip(symbols, num_symbols, rip);` - function (symbol_T*)
Give it a list of **_symbols_** and an instruction pointer (**_rip_**) and it will return the function, where **_rip_** lays in.
#### `symbol_resolve_from_rip(symbols, num_symbols, rip);` - function (symbol_T*)
Give it a list of **_symbols_** and an instruction pointer (**_rip_**) and it will return the symbol (function), where **_rip_** lays in.