Skip to content
Snippets Groups Projects
Select Git revision
  • 664f85a376cad9ff8220ce87c0a2696d88d13ac6
  • master default
  • dbck-q-n-d-link
  • foutput-text_stat-override
  • generations
  • text-stat-sha256
  • use-nettle
  • import-nettle
  • refactor-cached_get_text
  • refactor-cached_get_text-part-2
  • add-text_store
  • introduce-generation_position
  • remove-reclamation
  • dbfile-temp-filenames
  • sstrdup
  • dbfile_open_read-check-magic
  • adns_dist
  • liboop_dist
  • search
  • isc
  • dbdbckmultiplechoice
  • last.cvs.revision
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • adns_1_0
  • liboop_0_9
  • 2.0.7
  • search_bp
  • 2.0.6
  • 2.0.5
  • isc_1_01
  • Protocol-A-10.4
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • isc_1_00
  • isc_merge_1999_05_01
  • isc_merge_1999_04_21
41 results

ram-parse.h

Blame
  • main.c 12.79 KiB
    /*
    || This file is part of Pike. For copyright information see COPYRIGHT.
    || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
    || for more information.
    || $Id: main.c,v 1.235 2008/07/31 21:11:36 mast Exp $
    */
    
    #include "global.h"
    #include "fdlib.h"
    #include "backend.h"
    #include "module.h"
    #include "object.h"
    #include "lex.h"
    #include "pike_types.h"
    #include "builtin_functions.h"
    #include "array.h"
    #include "stralloc.h"
    #include "interpret.h"
    #include "pike_error.h"
    #include "pike_macros.h"
    #include "callback.h"
    #include "signal_handler.h"
    #include "threads.h"
    #include "dynamic_load.h"
    #include "gc.h"
    #include "multiset.h"
    #include "mapping.h"
    #include "cpp.h"
    #include "main.h"
    #include "operators.h"
    #include "rbtree.h"
    #include "pike_security.h"
    #include "constants.h"
    #include "version.h"
    #include "program.h"
    #include "pike_rusage.h"
    #include "module_support.h"
    #include "opcodes.h"
    
    #ifdef AUTO_BIGNUM
    #include "bignum.h"
    #endif
    
    #include "pike_embed.h"
    
    #if defined(__linux__) && defined(HAVE_DLOPEN) && defined(HAVE_DLFCN_H)
    #include <dlfcn.h>
    #endif
    
    #include "las.h"
    
    #ifdef HAVE_UNISTD_H
    #include <unistd.h>
    #endif
    #ifdef HAVE_ERRNO_H
    #include <errno.h>
    #endif
    
    #ifdef HAVE_LOCALE_H
    #include <locale.h>
    #endif
    
    #include "time_stuff.h"
    
    #ifdef HAVE_SYS_RESOURCE_H
    #include <sys/resource.h>
    #endif
    
    /* Define this to trace the execution of main(). */
    /* #define TRACE_MAIN */