mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
104 lines
2.9 KiB
C
104 lines
2.9 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Thread Safe Resource Manager |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1998, 1999 Zeev Suraski |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to the Zend license, that is bundled |
|
|
| with this package in the file LICENSE. If you did not receive a |
|
|
| copy of the Zend license, please mail us at zend@zend.com so we can |
|
|
| send you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Zeev Suraski <zeev@zend.com> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
|
|
#ifndef _TSRM_H
|
|
#define _TSRM_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# undef PACKAGE
|
|
# undef VERSION
|
|
# include "tsrm_config.h"
|
|
# undef PACKAGE
|
|
# undef VERSION
|
|
#endif
|
|
|
|
#if WIN32||WINNT
|
|
# include <windows.h>
|
|
#elif defined(PTHREADS)
|
|
# include <pthread.h>
|
|
#endif
|
|
|
|
typedef int ts_rsrc_id;
|
|
|
|
#if WIN32||WINNT
|
|
# ifdef TSRM_EXPORTS
|
|
# define TSRM_API __declspec(dllexport)
|
|
# else
|
|
# define TSRM_API __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# define TSRM_API
|
|
#endif
|
|
|
|
|
|
/* Define THREAD_T and MUTEX_T */
|
|
#if defined(WIN32)
|
|
# define THREAD_T DWORD
|
|
# define MUTEX_T void *
|
|
#elif defined(PTHREADS)
|
|
# define THREAD_T pthread_t
|
|
# define MUTEX_T pthread_mutex_t *
|
|
#elif defined(NSAPI)
|
|
# define THREAD_T SYS_THREAD
|
|
# define MUTEX_T CRITICAL
|
|
#elif defined(PI3WEB)
|
|
# define THREAD_T PIThread *
|
|
# define MUTEX_T PISync *
|
|
#endif
|
|
|
|
|
|
#define THREAD_HASH_OF(thr,ts) thr%ts
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* startup/shutdown */
|
|
TSRM_API int tsrm_startup(int expected_threads, int expected_resources, int debug_status);
|
|
TSRM_API void tsrm_shutdown();
|
|
|
|
/* allocates a new thread-safe-resource id */
|
|
TSRM_API ts_rsrc_id ts_allocate_id(size_t size, void (*ctor)(void *resource), void (*dtor)(void *resource));
|
|
|
|
/* fetches the requested resource for the current thread */
|
|
TSRM_API void *ts_resource(ts_rsrc_id id);
|
|
|
|
/* frees all resources allocated for the current thread */
|
|
TSRM_API void ts_free_thread();
|
|
|
|
/* deallocates all occurrences of a given id */
|
|
TSRM_API void ts_free_id(ts_rsrc_id id);
|
|
|
|
|
|
/* Debug support */
|
|
TSRM_API void tsrm_debug_set(int status);
|
|
|
|
/* utility functions */
|
|
TSRM_API THREAD_T tsrm_thread_id(void);
|
|
TSRM_API MUTEX_T tsrm_mutex_alloc(void);
|
|
TSRM_API void tsrm_mutex_free(MUTEX_T mutexp);
|
|
TSRM_API int tsrm_mutex_lock(MUTEX_T mutexp);
|
|
TSRM_API int tsrm_mutex_unlock(MUTEX_T mutexp);
|
|
|
|
TSRM_API void *tsrm_set_new_thread_begin_handler(void (*new_thread_begin_handler)(THREAD_T thread_id));
|
|
TSRM_API void *tsrm_set_new_thread_end_handler(void (*new_thread_end_handler)(THREAD_T thread_id));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _TSRM_H */
|