Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/stdlib The HPPA architectures (1.1 and 2.0) both de...



details:   https://anonhg.NetBSD.org/src/rev/5e22de0fc56a
branches:  trunk
changeset: 827883:5e22de0fc56a
user:      skrll <skrll%NetBSD.org@localhost>
date:      Thu Nov 16 13:54:00 2017 +0000

description:
The HPPA architectures (1.1 and 2.0) both define quadruple-word (128-bit)
floating point types.  Adjust alignment to match.

diffstat:

 lib/libc/stdlib/jemalloc.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 93f9e86d6c53 -r 5e22de0fc56a lib/libc/stdlib/jemalloc.c
--- a/lib/libc/stdlib/jemalloc.c        Thu Nov 16 10:40:29 2017 +0000
+++ b/lib/libc/stdlib/jemalloc.c        Thu Nov 16 13:54:00 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: jemalloc.c,v 1.42 2017/05/19 19:55:16 christos Exp $   */
+/*     $NetBSD: jemalloc.c,v 1.43 2017/11/16 13:54:00 skrll Exp $      */
 
 /*-
  * Copyright (C) 2006,2007 Jason Evans <jasone%FreeBSD.org@localhost>.
@@ -118,7 +118,7 @@
 
 #include <sys/cdefs.h>
 /* __FBSDID("$FreeBSD: src/lib/libc/stdlib/malloc.c,v 1.147 2007/06/15 22:00:16 jasone Exp $"); */ 
-__RCSID("$NetBSD: jemalloc.c,v 1.42 2017/05/19 19:55:16 christos Exp $");
+__RCSID("$NetBSD: jemalloc.c,v 1.43 2017/11/16 13:54:00 skrll Exp $");
 
 #ifdef __FreeBSD__
 #include "libc_private.h"
@@ -287,6 +287,7 @@
 #endif
 #ifdef __hppa__                                                                                                                                         
 #  define QUANTUM_2POW_MIN     4                                                                                                                        
+#  define TINY_MIN_2POW        4
 #  define SIZEOF_PTR_2POW      2                                                                                                                        
 #  define USE_BRK                                                                                                                                       
 #endif           



Home | Main Index | Thread Index | Old Index