X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=php5-apc.git;a=blobdiff_plain;f=apc_globals.h;fp=apc_globals.h;h=0000000000000000000000000000000000000000;hp=3908158ed2a4f414edd9e55f130d60f213d7bd6c;hb=a34ea625346aecd2d2b227b8ca4f114eaa607213;hpb=b0895ef8074c6dd090f9b0a65d58179941541756 diff --git a/apc_globals.h b/apc_globals.h deleted file mode 100644 index 3908158..0000000 --- a/apc_globals.h +++ /dev/null @@ -1,116 +0,0 @@ -/* - +----------------------------------------------------------------------+ - | APC | - +----------------------------------------------------------------------+ - | Copyright (c) 2008 The PHP Group | - +----------------------------------------------------------------------+ - | This source file is subject to version 3.01 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.php.net/license/3_01.txt. | - | If you did not receive a copy of the PHP license and are unable to | - | obtain it through the world-wide-web, please send a note to | - | license@php.net so we can mail you a copy immediately. | - +----------------------------------------------------------------------+ - | Authors: Daniel Cowgill | - | George Schlossnagle | - | Rasmus Lerdorf | - | Arun C. Murthy | - | Gopal Vijayaraghavan | - +----------------------------------------------------------------------+ - - This software was contributed to PHP by Community Connect Inc. in 2002 - and revised in 2005 by Yahoo! Inc. to add support for PHP 5.1. - Future revisions and derivatives of this source code must acknowledge - Community Connect Inc. as the original contributor of this module by - leaving this note intact in the source code. - - All other licensing and usage conditions are those of the PHP Group. - - */ - -/* $Id: apc_globals.h,v 3.70.2.8 2008/05/11 18:57:00 rasmus Exp $ */ - -#ifndef APC_GLOBALS_H -#define APC_GLOBALS_H - -#define APC_VERSION "3.0.19" - -#include "apc_cache.h" -#include "apc_stack.h" -#include "apc_php.h" - -ZEND_BEGIN_MODULE_GLOBALS(apc) - /* configuration parameters */ - zend_bool enabled; /* if true, apc is enabled (defaults to true) */ - long shm_segments; /* number of shared memory segments to use */ - long shm_size; /* size of each shared memory segment (in MB) */ - long num_files_hint; /* parameter to apc_cache_create */ - long user_entries_hint; - long gc_ttl; /* parameter to apc_cache_create */ - long ttl; /* parameter to apc_cache_create */ - long user_ttl; -#if APC_MMAP - char *mmap_file_mask; /* mktemp-style file-mask to pass to mmap */ -#endif - char** filters; /* array of regex filters that prevent caching */ - - /* module variables */ - zend_bool initialized; /* true if module was initialized */ - apc_stack_t* cache_stack; /* the stack of cached executable code */ - zend_bool cache_by_default; /* true if files should be cached unless filtered out */ - /* false if files should only be cached if filtered in */ - long slam_defense; /* Probability of a process not caching an uncached file */ - size_t* mem_size_ptr; /* size of blocks allocated to file being cached (NULL outside my_compile_file) */ - long file_update_protection; /* Age in seconds before a file is eligible to be cached - 0 to disable */ - zend_bool enable_cli; /* Flag to override turning APC off for CLI */ - long max_file_size; /* Maximum size of file, in bytes that APC will be allowed to cache */ - long slam_rand; /* A place to store the slam rand value for the request */ - zend_bool fpstat; /* true if fullpath includes should be stat'ed */ - zend_bool stat_ctime; /* true if ctime in addition to mtime should be checked */ - zend_bool write_lock; /* true for a global write lock */ - zend_bool report_autofilter; /* true for auto-filter warnings */ - zend_bool include_once; /* Override the ZEND_INCLUDE_OR_EVAL opcode handler to avoid pointless fopen()s [still experimental] */ - apc_optimize_function_t apc_optimize_function; /* optimizer function callback */ -#ifdef MULTIPART_EVENT_FORMDATA - zend_bool rfc1867; /* Flag to enable rfc1867 handler */ - char* rfc1867_prefix; /* Key prefix */ - char* rfc1867_name; /* Name of hidden field to activate upload progress/key suffix */ - double rfc1867_freq; /* Update frequency as percentage or bytes */ -#endif - HashTable *copied_zvals; /* my_copy recursion detection list */ -#ifdef ZEND_ENGINE_2 - int reserved_offset; /* offset for apc info in op_array->reserved[] */ -#endif - zend_bool force_file_update; /* force files to be updated during apc_compile_file */ - char canon_path[MAXPATHLEN]; /* canonical path for key data */ -#if APC_FILEHITS - zval *filehits; /* Files that came from the cache for this request */ -#endif - zend_bool coredump_unmap; /* Trap signals that coredump and unmap shared memory */ -ZEND_END_MODULE_GLOBALS(apc) - -/* (the following declaration is defined in php_apc.c) */ -ZEND_EXTERN_MODULE_GLOBALS(apc) - -#ifdef ZTS -# define APCG(v) TSRMG(apc_globals_id, zend_apc_globals *, v) -#else -# define APCG(v) (apc_globals.v) -#endif - -/* True globals */ -extern apc_cache_t* apc_cache; /* the global compiler cache */ -extern apc_cache_t* apc_user_cache; /* the global user content cache */ -extern void* apc_compiled_filters; /* compiled filters */ - -#endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: expandtab sw=4 ts=4 sts=4 fdm=marker - * vim<600: expandtab sw=4 ts=4 sts=4 - */