X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fmem-limits.h;h=fb6f16b916060fadc5959a4560499ec96a8d9009;hb=25cc6b26413cb53284ab1e634c47df1070d2a2bf;hp=8dd2c49e65448e3acd77d994a7e07dc56d07ceeb;hpb=6883ee56ec887c2c48abe5b06b5e66aa74031910;p=chise%2Fxemacs-chise.git- diff --git a/src/mem-limits.h b/src/mem-limits.h index 8dd2c49..fb6f16b 100644 --- a/src/mem-limits.h +++ b/src/mem-limits.h @@ -27,8 +27,8 @@ Boston, MA 02111-1307, USA. */ getrlimit() should be preferred to ulimit(). On Linux, ulimit() is deprecated and always returns -1. */ -#ifndef _XEMACS_MEM_LIMITS_H_ -#define _XEMACS_MEM_LIMITS_H_ +#ifndef INCLUDED_mem_limits_h_ +#define INCLUDED_mem_limits_h_ #ifdef HAVE_CONFIG_H #include @@ -38,10 +38,6 @@ Boston, MA 02111-1307, USA. */ #include #endif -#ifdef MSDOS -#include -#endif - /* Some systems need this before . */ #include @@ -70,16 +66,14 @@ extern int etext, __data_start; weak_symbol (__data_start) #ifndef BSD4_2 #ifndef USG -#ifndef MSDOS -#ifndef WINDOWSNT -#ifndef __CYGWIN32__ +#ifndef WIN32_NATIVE +#ifndef CYGWIN #if defined(__linux__) && defined(powerpc) /*Added Kaoru Fukui*/ #else /*Added Kaoru Fukui*/ #include #endif /*Added by Fukui*/ -#endif /* not __CYGWIN32__ */ -#endif /* not WINDOWSNT */ -#endif /* not MSDOS */ +#endif /* not CYGWIN */ +#endif /* not WIN32_NATIVE */ #endif /* not USG */ #else /* if BSD4_2 */ #include @@ -96,24 +90,17 @@ typedef void *POINTER; typedef char *POINTER; #endif -#ifndef __CYGWIN32__ +#ifndef CYGWIN typedef unsigned long SIZE; #endif -extern POINTER start_of_data (); -#ifdef DATA_SEG_BITS -#define EXCEEDS_LISP_PTR(ptr) \ - (((EMACS_UINT) (ptr) & ~DATA_SEG_BITS) >> VALBITS) -#else -#define EXCEEDS_LISP_PTR(ptr) ((EMACS_UINT) (ptr) >> VALBITS) -#endif +extern POINTER start_of_data (void); +#define EXCEEDS_LISP_PTR(ptr) 0 #ifdef BSD -#ifndef DATA_SEG_BITS extern int etext; #define start_of_data() &etext #endif -#endif #else /* not emacs */ extern char etext; @@ -130,7 +117,7 @@ static POINTER data_space_start; /* Number of bytes of writable memory we can expect to be able to get */ extern unsigned int lim_data; -#ifdef HEAP_IN_DATA +#if defined (HEAP_IN_DATA) && !defined(PDUMP) extern unsigned long static_heap_size; extern int initialized; static void @@ -176,7 +163,7 @@ get_lim_data (void) } #else /* not USG */ -#if defined( WINDOWSNT ) +#if defined( WIN32_NATIVE ) static void get_lim_data (void) @@ -188,22 +175,11 @@ get_lim_data (void) #else #if !defined (BSD4_2) && !defined (__osf__) -#ifdef MSDOS -void -get_lim_data (void) -{ - _go32_dpmi_meminfo info; - - _go32_dpmi_get_free_memory_information (&info); - lim_data = info.available_memory; -} -#else /* not MSDOS */ static void get_lim_data (void) { lim_data = vlimit (LIM_DATA, -1); } -#endif /* not MSDOS */ #else /* BSD4_2 */ @@ -220,9 +196,9 @@ get_lim_data (void) #endif } #endif /* BSD4_2 */ -#endif /* not WINDOWSNT */ +#endif /* not WIN32_NATIVE */ #endif /* not USG */ #endif /* not NO_LIM_DATA */ #endif /* not HEAP_IN_DATA */ -#endif /* _XEMACS_MEM_LIMITS_H_ */ +#endif /* INCLUDED_mem_limits_h_ */