Add TODO for symbol lookup for non-libc symbols
This commit is contained in:
parent
6cc17f463e
commit
b584de3e8b
1 changed files with 1 additions and 0 deletions
|
|
@ -480,6 +480,7 @@
|
||||||
(defn find-symbol
|
(defn find-symbol
|
||||||
"Gets the [[MemoryAddress]] of a symbol from the loaded libraries."
|
"Gets the [[MemoryAddress]] of a symbol from the loaded libraries."
|
||||||
[sym]
|
[sym]
|
||||||
|
;; TODO(Joshua): Ensure this looks up both in the system, and loaded libraries (see `SymbolLookup#loaderLookup`)
|
||||||
(.. (CLinker/systemLookup) (lookup (name sym)) (orElse nil)))
|
(.. (CLinker/systemLookup) (lookup (name sym)) (orElse nil)))
|
||||||
|
|
||||||
(defn- method-type
|
(defn- method-type
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue