forked from krakjoe/pthreads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_pthreads.h
57 lines (48 loc) · 1.99 KB
/
php_pthreads.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
+----------------------------------------------------------------------+
| pthreads |
+----------------------------------------------------------------------+
| Copyright (c) Joe Watkins 2012 - 2014 |
+----------------------------------------------------------------------+
| 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: |
| http://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 |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Joe Watkins <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef HAVE_PHP_PTHREADS_H
#define HAVE_PHP_PTHREADS_H
#define PHP_PTHREADS_EXTNAME "pthreads"
#define PHP_PTHREADS_VERSION "3.1.7dev"
PHP_MINIT_FUNCTION(pthreads);
PHP_MSHUTDOWN_FUNCTION(pthreads);
PHP_RINIT_FUNCTION(pthreads);
PHP_RSHUTDOWN_FUNCTION(pthreads);
PHP_MINFO_FUNCTION(pthreads);
ZEND_MODULE_POST_ZEND_DEACTIVATE_D(pthreads);
#ifndef HAVE_PTHREADS_CLASS_THREADED_H
# include <classes/threaded.h>
#endif
#ifndef HAVE_PTHREADS_CLASS_THREAD_H
# include <classes/thread.h>
#endif
#ifndef HAVE_PTHREADS_CLASS_COLLECTABLE_H
# include <classes/collectable.h>
#endif
#ifndef HAVE_PTHREADS_CLASS_WORKER_H
# include <classes/worker.h>
#endif
#ifndef HAVE_PTHREADS_CLASS_POOL_H
# include <classes/pool.h>
#endif
#ifndef HAVE_PTHREADS_CLASS_SOCKET_H
# include <classes/socket.h>
#endif
extern zend_module_entry pthreads_module_entry;
#define phpext_pthreads_ptr &pthreads_module_entry
#endif