Diff for /embedaddon/php/Zend/zend_list.c between versions 1.1.1.3.2.1 and 1.1.1.4

version 1.1.1.3.2.1, 2013/10/14 08:17:38 version 1.1.1.4, 2014/06/15 20:04:04
Line 2 Line 2
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
    | Zend Engine                                                          |     | Zend Engine                                                          |
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
   | Copyright (c) 1998-2013 Zend Technologies Ltd. (http://www.zend.com) |   | Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) |
    +----------------------------------------------------------------------+     +----------------------------------------------------------------------+
    | This source file is subject to version 2.00 of the Zend license,     |     | This source file is subject to version 2.00 of the Zend license,     |
    | that is bundled with this package in the file LICENSE, and is        |      | that is bundled with this package in the file LICENSE, and is        | 
Line 47  ZEND_API int zend_list_insert(void *ptr, int type TSRM Line 47  ZEND_API int zend_list_insert(void *ptr, int type TSRM
         return index;          return index;
 }  }
   
ZEND_API int _zend_list_delete(ulong id TSRMLS_DC)ZEND_API int _zend_list_delete(int id TSRMLS_DC)
 {  {
         zend_rsrc_list_entry *le;          zend_rsrc_list_entry *le;
                   
Line 64  ZEND_API int _zend_list_delete(ulong id TSRMLS_DC) Line 64  ZEND_API int _zend_list_delete(ulong id TSRMLS_DC)
 }  }
   
   
ZEND_API void *_zend_list_find(ulong id, int *type TSRMLS_DC)ZEND_API void *_zend_list_find(int id, int *type TSRMLS_DC)
 {  {
         zend_rsrc_list_entry *le;          zend_rsrc_list_entry *le;
   
Line 77  ZEND_API void *_zend_list_find(ulong id, int *type TSR Line 77  ZEND_API void *_zend_list_find(ulong id, int *type TSR
         }          }
 }  }
   
ZEND_API int _zend_list_addref(ulong id TSRMLS_DC)ZEND_API int _zend_list_addref(int id TSRMLS_DC)
 {  {
         zend_rsrc_list_entry *le;          zend_rsrc_list_entry *le;
                   
Line 348  void zend_destroy_rsrc_list_dtors(void) Line 348  void zend_destroy_rsrc_list_dtors(void)
 }  }
   
   
const char *zend_rsrc_list_get_rsrc_type(ulong resource TSRMLS_DC)const char *zend_rsrc_list_get_rsrc_type(int resource TSRMLS_DC)
 {  {
         zend_rsrc_list_dtors_entry *lde;          zend_rsrc_list_dtors_entry *lde;
         int rsrc_type;          int rsrc_type;

Removed from v.1.1.1.3.2.1  
changed lines
  Added in v.1.1.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>