[PATCH] D73990: [Sanitizers] Get link map on FreeBSD via documented API
Kamil Rytarowski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 7 00:28:20 PST 2020
krytarowski added inline comments.
================
Comment at: compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp:269
+int internal_dlinfo(void *handle, int request, void *p) {
+ return dlinfo(handle, request, p);
+}
----------------
So as we implemented it for NetBSD here. Please put it in the expected final form.
```
DEFINE__REAL(int, dlinfo, void *a, int b, void *c);
return _REAL(dlinfo, handle, request, p);
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73990/new/
https://reviews.llvm.org/D73990
More information about the llvm-commits
mailing list