[PATCH] D64057: Add NetBSD LSan support
    Vitaly Buka via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Jul 10 13:28:56 PDT 2019
    
    
  
vitalybuka accepted this revision.
vitalybuka added a comment.
This revision is now accepted and ready to land.
Herald added a subscriber: dexonsmith.
LGTM, Thank you!
================
Comment at: lib/sanitizer_common/sanitizer_netbsd.cc:325
+void internal_sigdelset(__sanitizer_sigset_t *set, int signo) {
+  DEFINE__REAL(int, __sigdelset14, const void *a, int b);
+  (void)_REAL(__sigdelset14, set, signo);
----------------
Looks like you completely forked sanitizer_stoptheworld_netbsd_libcdep
in this case you don't new internal_
up to you if you like to keep them
Repository:
  rL LLVM
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D64057/new/
https://reviews.llvm.org/D64057
    
    
More information about the llvm-commits
mailing list