Diff for /gforth/engine/main.c between versions 1.217 and 1.218

version 1.217, 2008/10/06 19:31:36 version 1.218, 2008/10/15 15:27:33
Line 37 Line 37
 #include <fcntl.h>  #include <fcntl.h>
 #include <assert.h>  #include <assert.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <stdbool.h>  
 #include <signal.h>  #include <signal.h>
 #ifndef STANDALONE  #ifndef STANDALONE
 #if HAVE_SYS_MMAN_H  #if HAVE_SYS_MMAN_H
Line 522  static void after_alloc(Address r, Cell Line 521  static void after_alloc(Address r, Cell
 #ifndef MAP_PRIVATE  #ifndef MAP_PRIVATE
 # define MAP_PRIVATE 0  # define MAP_PRIVATE 0
 #endif  #endif
   #ifndef PROT_NONE
   # define PROT_NONE 0
   #endif
 #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)  #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
 # define MAP_ANON MAP_ANONYMOUS  # define MAP_ANON MAP_ANONYMOUS
 #endif  #endif
Line 875  static void prepare_super_table() Line 877  static void prepare_super_table()
        significant space so we only do it if the user explicitly         significant space so we only do it if the user explicitly
        disables state equivalence. */         disables state equivalence. */
     debugp(stderr, "Disabling tpa-automaton, because nsupers>0 and state equivalence is enabled.\n");      debugp(stderr, "Disabling tpa-automaton, because nsupers>0 and state equivalence is enabled.\n");
     tpa_noautomaton = true;      tpa_noautomaton = 1;
   }    }
 }  }
   

Removed from v.1.217  
changed lines
  Added in v.1.218


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