]> sourceware.org Git - glibc.git/blobdiff - sysdeps/powerpc/powerpc64/backtrace.c
elf: Move vDSO setup to rtld (BZ#24967)
[glibc.git] / sysdeps / powerpc / powerpc64 / backtrace.c
index ee8ba21f27ebd73740fc45841278b40be6fda3e8..65c260ab764c9c78d6805d3f5ad919682f1457c4 100644 (file)
@@ -54,14 +54,14 @@ struct signal_frame_64 {
   /* We don't care about the rest, since the IP value is at 'uc' field.  */
 };
 
-static inline int
+static inline bool
 is_sigtramp_address (void *nip)
 {
 #ifdef HAVE_SIGTRAMP_RT64
-  if (nip == VDSO_SYMBOL (sigtramp_rt64))
-    return 1;
+  if (nip == GLRO (dl_vdso_sigtramp_rt64))
+    return true;
 #endif
-  return 0;
+  return false;
 }
 
 int
This page took 0.027272 seconds and 5 git commands to generate.