Merge branch 'pull/master'
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 2 Jul 2007 14:00:23 +0000 (16:00 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 2 Jul 2007 14:00:23 +0000 (16:00 +0200)
Conflicts:

src/memory.c

1  2 
src/memory.c

diff --cc src/memory.c
  # include <mach/vm_statistics.h>
  #endif
  
- #if HAVE_HOST_STATISTICS || HAVE_SYSCTLBYNAME || KERNEL_LINUX || HAVE_LIBKSTAT
- # define MEMORY_HAVE_READ 1
- #else
- # define MEMORY_HAVE_READ 0
- #endif
  /* vm_statistics_data_t */
 -#if defined(HOST_VM_INFO)
 +#if HAVE_HOST_STATISTICS
  static mach_port_t port_host;
  static vm_size_t pagesize;
 -/* #endif HOST_VM_INFO */
 +/* #endif HAVE_HOST_STATISTICS */
  
  #elif HAVE_SYSCTLBYNAME
  /* no global variables */
  #elif HAVE_LIBKSTAT
  static int pagesize;
  static kstat_t *ksp;
- #endif /* HAVE_LIBKSTAT */
+ /* #endif HAVE_LIBKSTAT */
+ #else
+ # error "No applicable input method."
+ #endif
  
- #if MEMORY_HAVE_READ
  static int memory_init (void)
  {
 -#if defined(HOST_VM_INFO)
 +#if HAVE_HOST_STATISTICS
        port_host = mach_host_self ();
        host_page_size (port_host, &pagesize);
 -/* #endif HOST_VM_INFO */
 +/* #endif HAVE_HOST_STATISTICS */
  
  #elif HAVE_SYSCTLBYNAME
  /* no init stuff */