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:
parent
b18224a460
commit
5870526dd8
@ -48,7 +48,7 @@ int STD_PROTO(rational_tree_loop,(CELL *, CELL *, CELL **));
|
||||
int
|
||||
rational_tree_loop(CELL *pt0, CELL *pt0_end, CELL **to_visit0
|
||||
#if USE_SYSTEM_MALLOC
|
||||
, CELL *to_visit_max
|
||||
, CELL **to_visit_max
|
||||
#endif
|
||||
)
|
||||
{
|
||||
|
@ -241,9 +241,10 @@
|
||||
|
||||
#undef USE_DL_MALLOC
|
||||
#undef USE_MALLOC
|
||||
#define USE_MMAP (HAVE_MMAP & !USE_MALLOC)
|
||||
#define USE_SHM (HAVE_SHMAT & !HAVE_MMAP & !USE_MALLOC)
|
||||
#define USE_SBRK (HAVE_SBRK & !HAVE_MMAP & !HAVE_SHMAT & !USE_MALLOC)
|
||||
#undef USE_SYSTEM_MALLOC
|
||||
#define USE_MMAP (HAVE_MMAP & !USE_MALLOC & !USE_SYSTEM_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
|
||||
quadrant of the memory space */
|
||||
|
@ -1101,7 +1101,7 @@ fi
|
||||
dnl disable smart memory management
|
||||
if test "$use_malloc" = yes
|
||||
then
|
||||
AC_DEFINE(USE_MALLOC,1)
|
||||
AC_DEFINE(USE_SYSTEM_MALLOC,1)
|
||||
AC_DEFINE(GC_NO_TAGS,1)
|
||||
fi
|
||||
|
||||
|
Reference in New Issue
Block a user