~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to storage/innobase/include/sync0sync.h

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
470
470
implementation of a mutual exclusion semaphore. */
471
471
 
472
472
struct mutex_struct {
 
473
        os_event_t      event;  /* Used by sync0arr.c for the wait queue */
473
474
        ulint   lock_word;      /* This ulint is the target of the atomic
474
475
                                test-and-set instruction in Win32 */
475
476
#if !defined(_WIN32) || !defined(UNIV_CAN_USE_X86_ASSEMBLER)