theMutex           74 nosyscallsreal.c static pthread_mutex_t theMutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
theMutex           92 nosyscallsreal.c void _dmtcp_lock() { pthread_mutex_lock (&theMutex); }
theMutex           93 nosyscallsreal.c void _dmtcp_unlock() { pthread_mutex_unlock (&theMutex); }
theMutex           53 syscallsreal.c static pthread_mutex_t theMutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
theMutex           67 syscallsreal.c void _dmtcp_lock() { _real_pthread_mutex_lock (&theMutex); }
theMutex           68 syscallsreal.c void _dmtcp_unlock() { _real_pthread_mutex_unlock (&theMutex); }
theMutex           74 syscallsreal.c   pthread_mutex_init (&theMutex, &attr);