Custom Query (267 matches)
Results (10 - 12 of 267)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #14 | fixed | Weblog error with xcache: Cannot redeclare () | moo | soporte@… |
| Description |
Hi Moo ;) Well, I already know I might be better with a short reproducible to crash the extension, but this is not always possible... the weblog serendipity http://www.s9y.org/ (branch 1.0 stable from the current svn), crashes miserably with xcache enabled. the error is : Fatal error: Cannot redeclare () in .../include/lang.inc.php on line 43 In using latest xcache from svn, PHP 5_2 . ps: APC had the same bug, but they fixed it, I don't know how though ;-) |
|||
| #15 | fixed | pcode cache does not work | moo | soff@… |
| Description |
xcache.size = 64M xcache.count = 4 xcache.slots = 8K xcache.var_size = 0 xcache.var_count = 1 xcache.var_slots = 8K xcache.test = Off xcache.readonly_protection = Off xcache.mmap_path = "/tmp/xcache" [12-Jun-2006 23:03:54] PHP Fatal error: XCache: Cannot create shm in Unknown on line 0 [12-Jun-2006 23:03:54] PHP Fatal error: XCache: Cannot init in Unknown on line 0 [12-Jun-2006 23:03:54] PHP Fatal error: Unable to start XCache module in Unknown on line 0 |
|||
| #16 | fixed | segfault on startup if readonly protections is disabled | moo | jan |
| Description |
If readonly protection is disabled a munmap(shm->ptr_ro, ...) is executed with ptr_ro = NULL. Initializing shm->ptr_ro with XCACHE_MAP_FAILED is skipping the munmap(). --- mmap.c 2006-06-13 21:24:12.000000000 +0200
+++ mmap.c~ 2006-06-05 08:43:25.000000000 +0200
@@ -153,7 +153,6 @@
CHECK(shm = calloc(1, sizeof(xc_shm_t)), "shm OOM");
shm->size = size;
- shm->ptr_ro = XCACHE_MAP_FAILED;
if (path == NULL || !path[0]) {
static int inc = 0;
|
|||

