diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-30 01:51:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-30 01:51:11 +0000 |
commit | cc13edc8d4351bb96bb2e0d785284ec089705cfa (patch) | |
tree | 189d5223b8c3cfc8ded13ee906a3515d8d2406d0 /hurd | |
parent | 7a9ce79a3b0746e0db7d3cc4264a78a9d79620a3 (diff) | |
download | glibc-cc13edc8d4351bb96bb2e0d785284ec089705cfa.tar.gz glibc-cc13edc8d4351bb96bb2e0d785284ec089705cfa.tar.xz glibc-cc13edc8d4351bb96bb2e0d785284ec089705cfa.zip |
* sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup: doinit):
Change argument type from int to intptr_t. * locale/global-locale.c (__libc_tsd_LOCALE_data): Conditionalize the initializer on [! _HURD_THREADVAR_H] (bad kludge). * sysdeps/mach/hurd/i386/init-first.c (init): Initialize _HURD_THREADVAR_LOCALE slot to &_nl_global_locale. * hurd/hurdsig.c (_hurdsig_init): Likewise. Zero other slots.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurdsig.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 2507a8b8a9..bbd0c17182 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,01 +/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,01,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -31,6 +31,7 @@ #include "hurdfault.h" #include "hurdmalloc.h" /* XXX */ +#include "../locale/localeinfo.h" const char *_hurdsig_getenv (const char *); @@ -1265,6 +1266,10 @@ _hurdsig_init (const int *intarray, size_t intarraysize) malloc (__hurd_threadvar_max * sizeof (unsigned long int)); if (__hurd_sigthread_variables == NULL) __libc_fatal ("hurd: Can't allocate threadvars for signal thread\n"); + memset (__hurd_sigthread_variables, 0, + __hurd_threadvar_max * sizeof (unsigned long int)); + __hurd_sigthread_variables[_HURD_THREADVAR_LOCALE] + = (unsigned long int) &_nl_global_locale; /* Reinitialize the MiG support routines so they will use a per-thread variable for the cached reply port. */ |