2 This file is part of drd, a thread error detector.
4 Copyright (C) 2006-2011 Bart Van Assche <bvanassche@acm.org>.
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 The GNU General Public License is contained in the file COPYING.
29 #include "drd_thread.h" /* DrdThreadid */
30 #include "pub_tool_basics.h" /* Addr */
33 /* Forward declarations. */
38 /* Variable declarations. */
40 extern Addr
DRD_(pthread_cond_initializer
);
41 extern int DRD_(pthread_cond_initializer_size
);
44 /* Function declarations. */
46 void DRD_(cond_set_report_signal_unlocked
)(const Bool r
);
47 void DRD_(cond_set_trace
)(const Bool trace_cond
);
48 struct cond_info
* DRD_(cond_get
)(const Addr cond
);
49 void DRD_(cond_pre_init
)(const Addr cond
);
50 void DRD_(cond_post_destroy
)(const Addr cond
);
51 void DRD_(cond_pre_wait
)(const Addr cond
, const Addr mutex
);
52 void DRD_(cond_post_wait
)(const Addr cond
);
53 void DRD_(cond_pre_signal
)(const Addr cond
);
54 void DRD_(cond_pre_broadcast
)(const Addr cond
);
57 #endif /* __DRD_COND_H */