diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mach/hurd/i386/pt-setup.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2002-11-25 Neal H. Walfield <neal@cs.uml.edu> + + * sysdeps/mach/hurd/i386/pt-setup.c (__pthread_setup): Fix last + change. + 2002-11-18 Neal H. Walfield <neal@cs.uml.edu> * sysdeps/mach/pt-wakeup.c (__pthread_wakeup): Use the size of diff --git a/sysdeps/mach/hurd/i386/pt-setup.c b/sysdeps/mach/hurd/i386/pt-setup.c index 369a28e..9a85584 100644 --- a/sysdeps/mach/hurd/i386/pt-setup.c +++ b/sysdeps/mach/hurd/i386/pt-setup.c @@ -89,7 +89,7 @@ __pthread_setup (struct __pthread *thread, thread->mcontext.pc = entry_point; thread->mcontext.sp = stack_setup (thread, start_routine, arg); - ktid = __mach_port_self (); + ktid = __mach_thread_self (); if (thread->kernel_thread != ktid) { err = __thread_set_pcsp (thread->kernel_thread, |