zend_dtrace.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend Engine |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1998-2009 Zend Technologies Ltd. (http://www.zend.com) |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 2.00 of the Zend license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.zend.com/license/2_00.txt. |
  11. | If you did not receive a copy of the Zend license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@zend.com so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: David Soria Parra <david.soriaparra@sun.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef _ZEND_DTRACE_H
  19. #define _ZEND_DTRACE_H
  20. #ifndef ZEND_WIN32
  21. # include <unistd.h>
  22. #endif
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #ifdef HAVE_DTRACE
  27. ZEND_API extern zend_op_array *(*zend_dtrace_compile_file)(zend_file_handle *file_handle, int type);
  28. ZEND_API extern void (*zend_dtrace_execute)(zend_op_array *op_array);
  29. ZEND_API extern void (*zend_dtrace_execute_internal)(zend_execute_data *execute_data, zval *return_value);
  30. ZEND_API zend_op_array *dtrace_compile_file(zend_file_handle *file_handle, int type);
  31. ZEND_API void dtrace_execute_ex(zend_execute_data *execute_data);
  32. ZEND_API void dtrace_execute_internal(zend_execute_data *execute_data, zval *return_value);
  33. #include <zend_dtrace_gen.h>
  34. #endif /* HAVE_DTRACE */
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif /* _ZEND_DTRACE_H */
  39. /*
  40. * Local variables:
  41. * tab-width: 4
  42. * c-basic-offset: 4
  43. * indent-tabs-mode: t
  44. * End:
  45. * vim600: sw=4 ts=4 fdm=marker
  46. * vim<600: sw=4 ts=4
  47. */