mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-18 01:30:27 +02:00
Merge remote-tracking branch 'origin/stable-2.0'
Conflicts: configure.ac
This commit is contained in:
commit
bfe35b90ff
10 changed files with 199 additions and 107 deletions
|
@ -95,7 +95,11 @@ scm_realloc (void *mem, size_t size)
|
|||
return ptr;
|
||||
|
||||
/* Time is hard: trigger a full, ``stop-the-world'' GC, and try again. */
|
||||
#ifdef HAVE_GC_GCOLLECT_AND_UNMAP
|
||||
GC_gcollect_and_unmap ();
|
||||
#else
|
||||
GC_gcollect ();
|
||||
#endif
|
||||
|
||||
SCM_SYSCALL (ptr = realloc (mem, size));
|
||||
if (ptr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue