svn commit: r203969 - head/lib/libc/stdlib

Marcel Moolenaar marcel at FreeBSD.org
Tue Feb 16 20:46:23 UTC 2010


Author: marcel
Date: Tue Feb 16 20:46:22 2010
New Revision: 203969
URL: http://svn.freebsd.org/changeset/base/203969

Log:
  Define TLS_MODEL for PowerPC as well. Since PowerPC uses variant I,
  like ia64, leave it empty (default model).

Modified:
  head/lib/libc/stdlib/malloc.c

Modified: head/lib/libc/stdlib/malloc.c
==============================================================================
--- head/lib/libc/stdlib/malloc.c	Tue Feb 16 20:00:21 2010	(r203968)
+++ head/lib/libc/stdlib/malloc.c	Tue Feb 16 20:46:22 2010	(r203969)
@@ -250,6 +250,7 @@ __FBSDID("$FreeBSD$");
 #endif
 #ifdef __powerpc__
 #  define LG_QUANTUM		4
+#  define TLS_MODEL		/* default */
 #endif
 #ifdef __s390x__
 #  define LG_QUANTUM		4


More information about the svn-src-head mailing list