summaryrefslogtreecommitdiff
path: root/libpthread/sysdeps
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-17 13:55:11 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-17 13:55:11 +0100
commita858b6d4273835eaf8027275d542c75f210855a3 (patch)
tree625b6c6fb0bbe9b17abe421d428bffd231c5187d /libpthread/sysdeps
parentee961b372e1d403d3fb205b5887025ccc72c0a87 (diff)
Replace use of l4_msb, etc. with vg_msb.
libpthread/ 2008-12-17 Neal H. Walfield <neal@gnu.org> * signal/signal-dispatch.c: Include <viengoos/math.h>. (signal_dispatch): Use vg_lsb64, not l4_lsb64. * sysdeps/viengoos/pt-sigstate.c (__pthread_sigstate): Likewise. * signal/sigwaitinfo.c (sigwaitinfo): Use vg_msb64, not l4_msb64. libviengoos/ 2008-12-17 Neal H. Walfield <neal@gnu.org> * t-addr.c: Don't include <l4/math.h>. Include <viengoos/math.h>. (main): Use vg_msb64 instead of l4_msb64 and vg_lsb64 instead of l4_lsb64. viengoos/ 2008-12-17 Neal H. Walfield <neal@gnu.org> * zalloc.c: Don't include <l4/math.h>. Include <viengoos/math.h>. (zfree): Use vg_msb instead of l4_msb. * ager.c (update_stats): Likewise.
Diffstat (limited to 'libpthread/sysdeps')
-rw-r--r--libpthread/sysdeps/viengoos/pt-sigstate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/sysdeps/viengoos/pt-sigstate.c b/libpthread/sysdeps/viengoos/pt-sigstate.c
index 66dd08c..7894d99 100644
--- a/libpthread/sysdeps/viengoos/pt-sigstate.c
+++ b/libpthread/sysdeps/viengoos/pt-sigstate.c
@@ -20,6 +20,7 @@
#include <pthread.h>
#include <assert.h>
#include <signal.h>
+#include <viengoos/math.h>
#include <pt-internal.h>
@@ -75,7 +76,7 @@ __pthread_sigstate (struct __pthread *thread, int how,
pthread_mutex_unlock (&ss->lock);
if (extant)
- raise (l4_lsb64 (extant));
+ raise (vg_lsb64 (extant));
return 0;
}