- Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathzend_persist.h
38 lines (32 loc) · 1.97 KB
/
zend_persist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
+----------------------------------------------------------------------+
| Zend OPcache |
+----------------------------------------------------------------------+
| Copyright (c) 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: |
| https://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: Andi Gutmans <andi@php.net> |
| Zeev Suraski <zeev@php.net> |
| Stanislav Malyshev <stas@zend.com> |
| Dmitry Stogov <dmitry@php.net> |
+----------------------------------------------------------------------+
*/
#ifndefZEND_PERSIST_H
#defineZEND_PERSIST_H
BEGIN_EXTERN_C()
uint32_tzend_accel_script_persist_calc(zend_persistent_script*script, intfor_shm);
zend_persistent_script*zend_accel_script_persist(zend_persistent_script*script, intfor_shm);
voidzend_persist_class_entry_calc(zend_class_entry*ce);
zend_class_entry*zend_persist_class_entry(zend_class_entry*ce);
voidzend_update_parent_ce(zend_class_entry*ce);
voidzend_persist_warnings_calc(uint32_tnum_warnings, zend_error_info**warnings);
zend_error_info**zend_persist_warnings(uint32_tnum_warnings, zend_error_info**warnings);
END_EXTERN_C()
#endif/* ZEND_PERSIST_H */