fix condor version

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1367 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2005-08-18 19:25:40 +00:00
parent b18224a460
commit 5870526dd8
4 changed files with 277 additions and 145 deletions

View File

@ -48,7 +48,7 @@ int STD_PROTO(rational_tree_loop,(CELL *, CELL *, CELL **));
int int
rational_tree_loop(CELL *pt0, CELL *pt0_end, CELL **to_visit0 rational_tree_loop(CELL *pt0, CELL *pt0_end, CELL **to_visit0
#if USE_SYSTEM_MALLOC #if USE_SYSTEM_MALLOC
, CELL *to_visit_max , CELL **to_visit_max
#endif #endif
) )
{ {

View File

@ -241,9 +241,10 @@
#undef USE_DL_MALLOC #undef USE_DL_MALLOC
#undef USE_MALLOC #undef USE_MALLOC
#define USE_MMAP (HAVE_MMAP & !USE_MALLOC) #undef USE_SYSTEM_MALLOC
#define USE_SHM (HAVE_SHMAT & !HAVE_MMAP & !USE_MALLOC) #define USE_MMAP (HAVE_MMAP & !USE_MALLOC & !USE_SYSTEM_MALLOC)
#define USE_SBRK (HAVE_SBRK & !HAVE_MMAP & !HAVE_SHMAT & !USE_MALLOC) #define USE_SHM (HAVE_SHMAT & !HAVE_MMAP & !USE_MALLOC & !USE_SYSTEM_MALLOC)
#define USE_SBRK (HAVE_SBRK & !HAVE_MMAP & !HAVE_SHMAT & !USE_MALLOC & !USE_SYSTEM_MALLOC)
/* for OSes that do not allow user access to the first /* for OSes that do not allow user access to the first
quadrant of the memory space */ quadrant of the memory space */

411
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -1101,7 +1101,7 @@ fi
dnl disable smart memory management dnl disable smart memory management
if test "$use_malloc" = yes if test "$use_malloc" = yes
then then
AC_DEFINE(USE_MALLOC,1) AC_DEFINE(USE_SYSTEM_MALLOC,1)
AC_DEFINE(GC_NO_TAGS,1) AC_DEFINE(GC_NO_TAGS,1)
fi fi