~fallenpegasus/drizzle/logcsv

« back to all changes in this revision

Viewing changes to plugin/innobase/os/os0sync.c

  • Committer: lbieber at stabletransit
  • Date: 2010-10-13 16:20:08 UTC
  • mfrom: (1843.1.3 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101013162008-qi2e6k5yvfm16964
Merge Stewart - update innobase plugin to be based on innodb_plugin 1.0.6
Merge Monty - more valgrind cleanup
Merge Monty - Moved libdrizzle api listings from doxygen to sphinx

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        UT_LIST_INIT(os_event_list);
88
88
        UT_LIST_INIT(os_mutex_list);
89
89
 
 
90
        os_sync_mutex = NULL;
 
91
        os_sync_mutex_inited = FALSE;
 
92
 
90
93
        os_sync_mutex = os_mutex_create(NULL);
91
94
 
92
95
        os_sync_mutex_inited = TRUE;
714
717
                os_mutex_enter(os_sync_mutex);
715
718
        }
716
719
 
 
720
        ut_ad(os_fast_mutex_count > 0);
717
721
        os_fast_mutex_count--;
718
722
 
719
723
        if (UNIV_LIKELY(os_sync_mutex_inited)) {