Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. llvm/projects/compiler-rt/lib/msan/msan_interceptors.cc:1446:15: error: no member named 'real_shmctl' in namespace '__interception'; did you mean 'real_ioctl'?
  2. int res = REAL(shmctl)(shmid, shmctl_ipc_stat, &ds);
  3. ^~~~~~~~~~~~
  4. llvm/projects/compiler-rt/lib/msan/../interception/interception.h:162:34: note: expanded from macro 'REAL'
  5. # define REAL(x) __interception::PTR_TO_REAL(x)
  6. ~~~~~~~~~~~~~~~~^
  7. llvm/projects/compiler-rt/lib/msan/../interception/interception.h:161:25: note: expanded from macro 'PTR_TO_REAL'
  8. # define PTR_TO_REAL(x) real_##x
  9. ^
  10. <scratch space>:70:1: note: expanded from here
  11. real_shmctl
  12. ^
  13. llvm/projects/compiler-rt/lib/msan/../sanitizer_common/sanitizer_common_interceptors.inc:1706:1: note: 'real_ioctl' declared here
  14. INTERCEPTOR(int, ioctl, int d, unsigned long request, ...) {
  15. ^
  16. llvm/projects/compiler-rt/lib/msan/../interception/interception.h:213:3: note: expanded from macro 'INTERCEPTOR'
  17. DEFINE_REAL(ret_type, func, __VA_ARGS__) \
  18. ^
  19. llvm/projects/compiler-rt/lib/msan/../interception/interception.h:194:23: note: expanded from macro 'DEFINE_REAL'
  20. FUNC_TYPE(func) PTR_TO_REAL(func); \
  21. ^
  22. llvm/projects/compiler-rt/lib/msan/../interception/interception.h:161:25: note: expanded from macro 'PTR_TO_REAL'
  23. # define PTR_TO_REAL(x) real_##x
  24. ^
  25. <scratch space>:108:1: note: expanded from here
  26. real_ioctl
  27. ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement