sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | This file is part of drd, a data race detector. |
| 3 | |
sewardj | 8564292 | 2008-01-14 11:54:56 +0000 | [diff] [blame] | 4 | Copyright (C) 2006-2008 Bart Van Assche |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 5 | bart.vanassche@gmail.com |
| 6 | |
| 7 | This program is free software; you can redistribute it and/or |
| 8 | modify it under the terms of the GNU General Public License as |
| 9 | published by the Free Software Foundation; either version 2 of the |
| 10 | License, or (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, but |
| 13 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with this program; if not, write to the Free Software |
| 19 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 20 | 02111-1307, USA. |
| 21 | |
| 22 | The GNU General Public License is contained in the file COPYING. |
| 23 | */ |
| 24 | |
| 25 | |
| 26 | // Mutex state information: owner thread and recursion count. |
| 27 | |
| 28 | |
| 29 | #ifndef __MUTEX_H |
| 30 | #define __MUTEX_H |
| 31 | |
| 32 | |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 33 | #include "drd_clientreq.h" // MutexT |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 34 | #include "drd_thread.h" // DrdThreadId |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 35 | #include "drd_vc.h" |
| 36 | #include "pub_tool_basics.h" // Addr, SizeT |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 37 | |
| 38 | |
| 39 | struct mutex_info; |
| 40 | |
| 41 | |
| 42 | void mutex_set_trace(const Bool trace_mutex); |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 43 | struct mutex_info* mutex_init(const Addr mutex, const SizeT size, |
| 44 | const MutexT mutex_type); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 45 | void mutex_post_destroy(const Addr mutex); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 46 | struct mutex_info* mutex_get(const Addr mutex); |
bart | 3b1ee45 | 2008-02-29 19:28:15 +0000 | [diff] [blame] | 47 | void mutex_pre_lock(const Addr mutex, const SizeT size, |
| 48 | const MutexT mutex_type); |
bart | 0034464 | 2008-03-01 15:27:41 +0000 | [diff] [blame] | 49 | int mutex_post_lock(const Addr mutex, const Bool took_lock); |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 50 | int mutex_unlock(const Addr mutex, const MutexT mutex_type); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 51 | const char* mutex_get_typename(struct mutex_info* const p); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 52 | const char* mutex_type_name(const MutexT mt); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 53 | Bool mutex_is_locked_by(const Addr mutex, const DrdThreadId tid); |
| 54 | const VectorClock* mutex_get_last_vc(const Addr mutex); |
| 55 | int mutex_get_recursion_count(const Addr mutex); |
bart | 291b369 | 2008-02-24 18:27:11 +0000 | [diff] [blame] | 56 | void mutex_thread_delete(const DrdThreadId tid); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 57 | ULong get_mutex_lock_count(void); |
| 58 | |
| 59 | |
| 60 | #endif /* __MUTEX_H */ |