diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/l4/hurd/pt-thread-alloc.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-06-05 Neal H. Walfield <neal@gnu.org> + + * sysdeps/l4/hurd/pt-thread-alloc.c (__pthread_thread_alloc): + Replace use of as_slot_ensure with as_ensure. + 2008-06-01 Neal H. Walfield <neal@gnu.org> * include/pthread/pthread.h (PTHREAD_MUTEX_RECURSIVE_INITIALIZER_NP): diff --git a/sysdeps/l4/hurd/pt-thread-alloc.c b/sysdeps/l4/hurd/pt-thread-alloc.c index 6941e10..ada7b3b 100644 --- a/sysdeps/l4/hurd/pt-thread-alloc.c +++ b/sysdeps/l4/hurd/pt-thread-alloc.c @@ -56,7 +56,7 @@ __pthread_thread_alloc (struct __pthread *thread) addr_t slot = addr_chop (PTR_TO_ADDR (thread->exception_area_va + i * PAGESIZE), PAGESIZE_LOG2); - as_slot_ensure (slot); + as_ensure (slot); struct storage storage = storage_alloc (ADDR_VOID, cap_page, STORAGE_LONG_LIVED, |