Diff for /gforth/Attic/main.c between versions 1.55 and 1.56

version 1.55, 1997/03/11 16:00:40 version 1.56, 1997/03/11 16:15:13
Line 178  Address my_alloc(Cell size) Line 178  Address my_alloc(Cell size)
   static Address next_address=0;    static Address next_address=0;
   Address r;    Address r;
   
 #if HAVE_MMAP  /* the 256MB jump restriction on the MIPS architecture makes the
      combination of direct threading and mmap unsafe. */
   #if HAVE_MMAP && (!defined(mips) || defined(INDIRECT_THREADED))
 #if defined(MAP_ANON)  #if defined(MAP_ANON)
   if (debug)    if (debug)
     fprintf(stderr,"try mmap($%lx, $%lx, ..., MAP_ANON, ...); ", (long)next_address, (long)size);      fprintf(stderr,"try mmap($%lx, $%lx, ..., MAP_ANON, ...); ", (long)next_address, (long)size);

Removed from v.1.55  
changed lines
  Added in v.1.56


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>