(reported by James Y Knight)
* improved SB-BSD-SOCKETS support on Windows. (thanks to Timothy
Ritchey)
+ * bug fix: saving large (>2GB) cores on x86-64 now works
* fixed some bugs revealed by Paul Dietz' test suite:
** MISC.641: LET-conversion were not supposed to work in late
compilation stages.
static void
output_space(FILE *file, int id, lispobj *addr, lispobj *end, os_vm_offset_t file_offset)
{
- int words, bytes, data;
+ size_t words, bytes, data;
static char *names[] = {NULL, "dynamic", "static", "read-only"};
write_lispobj(id, file);
bytes = words * sizeof(lispobj);
- printf("writing %d bytes from the %s space at 0x%08lx\n",
+ printf("writing %ld bytes from the %s space at 0x%08lx\n",
bytes, names[id], (unsigned long)addr);
data = write_bytes(file, (char *)addr, bytes, file_offset);
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.13.13"
+"0.9.13.14"