~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/thread_var.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
16
/* Defines to make different thread packages compatible */
17
17
 
21
21
#include <pthread.h>
22
22
#include <boost/thread/recursive_mutex.hpp>
23
23
#include <boost/thread/mutex.hpp>
 
24
#include <boost/thread/shared_mutex.hpp>
24
25
#include <boost/thread/condition_variable.hpp>
25
26
 
26
27
namespace drizzled
30
31
 
31
32
struct st_my_thread_var
32
33
{
33
 
  pthread_cond_t suspend;
34
 
  pthread_mutex_t mutex;
35
 
  pthread_mutex_t * volatile current_mutex;
36
 
  pthread_cond_t * volatile current_cond;
37
 
  pthread_t pthread_self;
 
34
  boost::condition_variable_any suspend;
 
35
  boost::mutex mutex;
 
36
  boost::mutex * volatile current_mutex;
 
37
  boost::condition_variable_any * volatile current_cond;
38
38
  uint64_t id;
39
39
  int volatile abort;
40
 
  bool init;
41
 
  struct st_my_thread_var *next,**prev;
42
40
  void *opt_info;
 
41
 
 
42
  st_my_thread_var() :
 
43
    current_mutex(0),
 
44
    current_cond(0),
 
45
    id(0),
 
46
    abort(false),
 
47
    opt_info(0)
 
48
  { 
 
49
  }
 
50
 
 
51
  ~st_my_thread_var()
 
52
  {
 
53
  }
43
54
};
44
55
 
45
56
extern struct st_my_thread_var *_my_thread_var(void);