|
Last change
on this file since 1018 was
1018,
checked in by moo, 11 months ago
|
|
updated deps header
|
-
Property svn:eol-style set to
native
|
|
File size:
1023 bytes
|
| Line | |
|---|
| 1 | #ifndef XC_SANDBOX_H_3AFE4094B1D005188B909F9B6538599C |
|---|
| 2 | #define XC_SANDBOX_H_3AFE4094B1D005188B909F9B6538599C |
|---|
| 3 | |
|---|
| 4 | #if _MSC_VER > 1000 |
|---|
| 5 | #pragma once |
|---|
| 6 | #endif // _MSC_VER > 1000 |
|---|
| 7 | |
|---|
| 8 | /* Purpose: run specified function in compiler sandbox, restore everything to previous state after it returns |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | #include "xcache.h" |
|---|
| 12 | #include "xcache/xc_compatibility.h" |
|---|
| 13 | |
|---|
| 14 | int xc_sandbox_module_init(int module_number TSRMLS_DC); |
|---|
| 15 | void xc_sandbox_module_shutdown(); |
|---|
| 16 | |
|---|
| 17 | /* return op_array to install */ |
|---|
| 18 | typedef zend_op_array *(*xc_sandboxed_func_t)(void *data TSRMLS_DC); |
|---|
| 19 | zend_op_array *xc_sandbox(xc_sandboxed_func_t sandboxed_func, void *data, ZEND_24(NOTHING, const) char *filename TSRMLS_DC); |
|---|
| 20 | const Bucket *xc_sandbox_user_function_begin(TSRMLS_D); |
|---|
| 21 | const Bucket *xc_sandbox_user_class_begin(TSRMLS_D); |
|---|
| 22 | zend_uint xc_sandbox_compilererror_cnt(TSRMLS_D); |
|---|
| 23 | #ifdef XCACHE_ERROR_CACHING |
|---|
| 24 | xc_compilererror_t *xc_sandbox_compilererrors(TSRMLS_D); |
|---|
| 25 | zend_uint xc_sandbox_compilererror_cnt(TSRMLS_D); |
|---|
| 26 | #endif |
|---|
| 27 | |
|---|
| 28 | #endif /* XC_SANDBOX_H_3AFE4094B1D005188B909F9B6538599C */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.