Mercurial > hg > xemacs-beta
comparison src/s/linux.h @ 3763:142260edb7b5
[xemacs-hg @ 2006-12-28 12:15:23 by malcolmp]
Use system malloc on ppc64, alpha and ia64.
author | malcolmp |
---|---|
date | Thu, 28 Dec 2006 12:15:38 +0000 |
parents | d46451e73f6d |
children |
comparison
equal
deleted
inserted
replaced
3762:e3fe0d9ca941 | 3763:142260edb7b5 |
---|---|
204 actually set a process group. */ | 204 actually set a process group. */ |
205 | 205 |
206 /* XEmacs: removed setpgrp() definition because we use setpgid() when | 206 /* XEmacs: removed setpgrp() definition because we use setpgid() when |
207 it's available, and autodetect it. */ | 207 it's available, and autodetect it. */ |
208 | 208 |
209 /* The in-built malloc does not work on PPC64 or Alpha, so use the system | |
210 malloc for now. */ | |
211 #if defined(__powerpc64__) || defined(__alpha__) || defined(__ia64__) | |
212 #define SYSTEM_MALLOC | |
213 #endif |