From 3d0aedeecaeee68377936c60e2006080be3b8cee Mon Sep 17 00:00:00 2001 From: antifallobst Date: Thu, 9 Mar 2023 00:45:00 +0100 Subject: [PATCH] docs: documented fix of symbol name resolve bug when function is extern / assembly --- .wiki/Kernel-documentation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index b3793ec..4ed56fb 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -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. \ No newline at end of file +#### `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.