Changeset 596 for branches/1.3/xcache.c
- Timestamp:
- 2009-07-05T06:57:59+02:00 (4 years ago)
- Location:
- branches/1.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/xcache.c
r595 r596 446 446 array_init(ei); 447 447 448 add_assoc_long_ex(ei, ZEND_STRS("size"), entry->size);449 448 add_assoc_long_ex(ei, ZEND_STRS("refcount"), entry->refcount); 450 449 add_assoc_long_ex(ei, ZEND_STRS("hits"), entry->hits); … … 477 476 case XC_TYPE_PHP: 478 477 php = entry->data.php; 478 add_assoc_long_ex(ei, ZEND_STRS("size"), entry->size + php->size); 479 add_assoc_long_ex(ei, ZEND_STRS("phprefcount"), php->refcount); 479 480 add_assoc_long_ex(ei, ZEND_STRS("sourcesize"), php->sourcesize); 480 481 #ifdef HAVE_INODE … … 493 494 #endif 494 495 break; 496 495 497 case XC_TYPE_VAR: 496 498 var = entry->data.var; 499 add_assoc_long_ex(ei, ZEND_STRS("size"), entry->size); 497 500 break; 498 501
Note: See TracChangeset
for help on using the changeset viewer.

