summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-01-31 23:10:37 -0800
committerStanislav Malyshev <stas@php.net>2015-01-31 23:10:37 -0800
commitdd15207dc57df01c68397ee7fcc5e92f39f2520a (patch)
treebe97f3fc8202055cdfbd8579695b1c93dfb72fba
parentc408c808861b8cac4f6642279ec5487068e98f43 (diff)
parentbdb2d490715c70b413e0c8a4eaebab78407a46b5 (diff)
downloadphp-git-dd15207dc57df01c68397ee7fcc5e92f39f2520a.tar.gz
Merge branch 'pull-request/945'
* pull-request/945: Update zend_accelerator_hash.c hashmap sizes Wasted Shared Memory aboce 2Gb fix
-rw-r--r--ext/opcache/zend_shared_alloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/zend_shared_alloc.h b/ext/opcache/zend_shared_alloc.h
index da9bc3c0f4..01de10d90f 100644
--- a/ext/opcache/zend_shared_alloc.h
+++ b/ext/opcache/zend_shared_alloc.h
@@ -102,7 +102,7 @@ typedef struct _zend_smm_shared_globals {
/* Amount of free shared memory */
size_t shared_free;
/* Amount of shared memory allocated by garbage */
- int wasted_shared_memory;
+ size_t wasted_shared_memory;
/* No more shared memory flag */
zend_bool memory_exhausted;
/* Saved Shared Allocator State */