~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/lock/lock0lock.c

  • Committer: Stewart Smith
  • Date: 2010-11-17 04:47:55 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1971.
  • Revision ID: stewart@flamingspork.com-20101117044755-6i1nayvug5sixiq2
fix merge probleM: had enum twice

Show diffs side-by-side

added added

removed removed

Lines of Context:
3987
3987
        mutex_exit(&kernel_mutex);
3988
3988
}
3989
3989
 
3990
 
/** Record locking request status */
3991
 
enum lock_rec_req_status {
3992
 
        /** Failed to acquire a lock */
3993
 
        LOCK_REC_FAIL,
3994
 
        /** Succeeded in acquiring a lock (implicit or already acquired) */
3995
 
        LOCK_REC_SUCCESS,
3996
 
        /** Explicitly created a new lock */
3997
 
        LOCK_REC_SUCCESS_CREATED
3998
 
};
3999
 
 
4000
3990
/*********************************************************************//**
4001
3991
Releases transaction locks, and releases possible other transactions waiting
4002
3992
because of these locks. */