Add TODO for symbol lookup for non-libc symbols

This commit is contained in:
Joshua Suskalo 2021-09-17 15:17:18 -05:00 committed by GitHub
parent 6cc17f463e
commit b584de3e8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -480,6 +480,7 @@
(defn find-symbol
"Gets the [[MemoryAddress]] of a symbol from the loaded libraries."
[sym]
;; TODO(Joshua): Ensure this looks up both in the system, and loaded libraries (see `SymbolLookup#loaderLookup`)
(.. (CLinker/systemLookup) (lookup (name sym)) (orElse nil)))
(defn- method-type