From 94ffedf6e607675b0eeb7dfec020d722a0b94230 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 31 Jul 1999 04:34:31 +0000 Subject: Update. 1999-07-30 Ulrich Drepper * malloc/malloc.c (ptmalloc_init): Correct last patch. The assignment cannot be moved. --- malloc/malloc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'malloc/malloc.c') diff --git a/malloc/malloc.c b/malloc/malloc.c index db12226828..143009bdfc 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1663,16 +1663,18 @@ ptmalloc_init __MALLOC_P((void)) /* Initialize the pthreads interface. */ if (__pthread_initialize != NULL) __pthread_initialize(); + __libc_pagesize = __getpagesize(); #endif mutex_init(&main_arena.mutex); mutex_init(&list_lock); tsd_key_create(&arena_key, NULL); tsd_setspecific(arena_key, (Void_t *)&main_arena); thread_atfork(ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_init_all); -#endif /* !defined NO_THREADS */ +#else /* !defined NO_THREADS */ #ifdef _LIBC __libc_pagesize = __getpagesize(); #endif +#endif /* !defined NO_THREADS */ #if defined _LIBC || defined MALLOC_HOOKS if((s = getenv("MALLOC_TRIM_THRESHOLD_"))) mALLOPt(M_TRIM_THRESHOLD, atoi(s)); -- cgit 1.4.1