diff options
author | unknown <serg@janus.mylan> | 2007-12-18 23:22:55 +0100 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-12-18 23:22:55 +0100 |
commit | 4220afa52a0e22a9e99ff50c6878b25d19f1f312 (patch) | |
tree | 2295a8574b4c6f11f6de87297eb8d06649910e78 /storage/maria/lockman.h | |
parent | 630169c6d896bd33b65866d91f2bd8894b79bfa1 (diff) | |
download | mariadb-git-4220afa52a0e22a9e99ff50c6878b25d19f1f312.tar.gz |
solaris fixes
include/lf.h:
Forte fixes
Diffstat (limited to 'storage/maria/lockman.h')
-rw-r--r-- | storage/maria/lockman.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/maria/lockman.h b/storage/maria/lockman.h index 279a5537f76..82ab483896f 100644 --- a/storage/maria/lockman.h +++ b/storage/maria/lockman.h @@ -31,7 +31,7 @@ SLX - Shared + Loose eXclusive LSIX - Loose Shared + Intention eXclusive */ -enum lock_type { N, S, X, IS, IX, SIX, LS, LX, SLX, LSIX, LOCK_TYPE_LAST }; +enum lockman_lock_type { N, S, X, IS, IX, SIX, LS, LX, SLX, LSIX, LOCK_TYPE_LAST }; struct lockman_lock; @@ -66,7 +66,7 @@ void lockman_init(LOCKMAN *, loid_to_lo_func *, uint); void lockman_destroy(LOCKMAN *); enum lockman_getlock_result lockman_getlock(LOCKMAN *lm, LOCK_OWNER *lo, uint64 resource, - enum lock_type lock); + enum lockman_lock_type lock); int lockman_release_locks(LOCKMAN *, LOCK_OWNER *); #ifdef EXTRA_DEBUG |