Diff for /embedaddon/php/TSRM/TSRM.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:47:52 version 1.1.1.2, 2012/05/29 12:34:34
Line 90  typedef struct { Line 90  typedef struct {
 # define MUTEX_T beos_ben *   # define MUTEX_T beos_ben * 
 #endif  #endif
   
   #ifdef HAVE_SIGNAL_H
   #include <signal.h>
   #endif
   
 typedef void (*ts_allocate_ctor)(void *, void ***);  typedef void (*ts_allocate_ctor)(void *, void ***);
 typedef void (*ts_allocate_dtor)(void *, void ***);  typedef void (*ts_allocate_dtor)(void *, void ***);
   
Line 138  TSRM_API MUTEX_T tsrm_mutex_alloc(void); Line 142  TSRM_API MUTEX_T tsrm_mutex_alloc(void);
 TSRM_API void tsrm_mutex_free(MUTEX_T mutexp);  TSRM_API void tsrm_mutex_free(MUTEX_T mutexp);
 TSRM_API int tsrm_mutex_lock(MUTEX_T mutexp);  TSRM_API int tsrm_mutex_lock(MUTEX_T mutexp);
 TSRM_API int tsrm_mutex_unlock(MUTEX_T mutexp);  TSRM_API int tsrm_mutex_unlock(MUTEX_T mutexp);
   #ifdef HAVE_SIGPROCMASK
   TSRM_API int tsrm_sigmask(int how, const sigset_t *set, sigset_t *oldset);
   #endif
   
 TSRM_API void *tsrm_set_new_thread_begin_handler(tsrm_thread_begin_func_t new_thread_begin_handler);  TSRM_API void *tsrm_set_new_thread_begin_handler(tsrm_thread_begin_func_t new_thread_begin_handler);
 TSRM_API void *tsrm_set_new_thread_end_handler(tsrm_thread_end_func_t new_thread_end_handler);  TSRM_API void *tsrm_set_new_thread_end_handler(tsrm_thread_end_func_t new_thread_end_handler);

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>