/* GSPThread.h Copyright (C) 2010 Free Software Foundation, Inc. Written by: Niels Grewe This file is part of the GNUstep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA. */ #ifndef _GSPThread_h_ #define _GSPThread_h_ #include #import "Foundation/NSLock.h" @class GSStackTrace; @class NSArray; @class NSMapTable; /* * Macro to initialize recursive mutexes in a portable way. Adopted from * libobjc2 (lock.h). */ # ifdef PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP # define GS_INIT_RECURSIVE_MUTEX(x) \ x = (pthread_mutex_t) PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP # elif defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER) # define GS_INIT_RECURSIVE_MUTEX(x) \ x = (pthread_mutex_t) PTHREAD_RECURSIVE_MUTEX_INITIALIZER # else # define GS_INIT_RECURSIVE_MUTEX(x) GSPThreadInitRecursiveMutex(&(x)) static inline void GSPThreadInitRecursiveMutex(pthread_mutex_t *x) { pthread_mutexattr_t recursiveAttributes; pthread_mutexattr_init(&recursiveAttributes); pthread_mutexattr_settype(&recursiveAttributes, PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init(x, &recursiveAttributes); pthread_mutexattr_destroy(&recursiveAttributes); } # endif // PTHREAD_RECURSIVE_MUTEX_INITIALIZER(_NP) /* Class to obtain/encapsulate a stack trace for exception reporting and/or * lock tracing. */ @interface GSStackTrace : NSObject { NSArray *symbols; NSArray *addresses; @public NSUInteger recursion; // Recursion count for lock trace NSUInteger *returns; // The return addresses on the stack int numReturns; // Number of return addresses } - (NSArray*) addresses; // Return addresses from last trace - (NSArray*) symbols; // Return symbols from last trace - (void) trace; // Populate with new stack trace @end /* Versions of the lock classes where the locking is never traced */ @interface GSUntracedCondition : NSCondition @end @interface GSUntracedConditionLock : NSConditionLock @end @interface GSUntracedLock : NSLock @end @interface GSUntracedRecursiveLock : NSRecursiveLock @end /* Versions of the lock classes where the locking is traced */ @interface GSTracedCondition : NSCondition { GSStackTrace *stack; } - (GSStackTrace*) stack; @end @interface GSTracedConditionLock : NSConditionLock @end @interface GSTracedLock : NSLock { GSStackTrace *stack; } - (GSStackTrace*) stack; @end @interface GSTracedRecursiveLock : NSRecursiveLock { GSStackTrace *stack; } - (GSStackTrace*) stack; @end #endif // _GSPThread_h_