/* +----------------------------------------------------------------------+ | pthreads | +----------------------------------------------------------------------+ | Copyright (c) Joe Watkins 2012 | +----------------------------------------------------------------------+ | 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 | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Joe Watkins | +----------------------------------------------------------------------+ */ #ifndef HAVE_PHP_PTHREADS_H #define HAVE_PHP_PTHREADS_H #define PHP_PTHREADS_EXTNAME "pthreads" #define PHP_PTHREADS_VERSION "0.45-rc" PHP_MINIT_FUNCTION(pthreads); PHP_MSHUTDOWN_FUNCTION(pthreads); PHP_MINFO_FUNCTION(pthreads); #ifndef HAVE_PTHREADS_CLASS_THREAD_H # include #endif #ifndef HAVE_PTHREADS_CLASS_WORKER_H # include #endif #ifndef HAVE_PTHREADS_CLASS_STACKABLE_H # include #endif #ifndef HAVE_PTHREADS_CLASS_MUTEX_H # include #endif #ifndef HAVE_PTHREADS_CLASS_COND_H # include #endif extern zend_module_entry pthreads_module_entry; #define phpext_pthreads_ptr &pthreads_module_entry #endif