mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
3b42b55489
git-svn-id: file:///svn/toku/tokudb@9507 c7de825b-a66e-492c-adef-691d508d4ae1
19 lines
586 B
C
19 lines
586 B
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
|
|
#ifndef TOKU_LEAFLOCK_H
|
|
#define TOKU_LEAFLOCK_H
|
|
typedef struct leaflock *LEAFLOCK;
|
|
|
|
void toku_leaflock_init(void);
|
|
void toku_leaflock_destroy(void);
|
|
|
|
int toku_leaflock_borrow(LEAFLOCK *leaflockp);
|
|
void toku_leaflock_unlock_and_return(LEAFLOCK *leaflockp);
|
|
|
|
void toku_leaflock_lock_by_leaf(LEAFLOCK leaflock);
|
|
void toku_leaflock_unlock_by_leaf(LEAFLOCK leaflock);
|
|
|
|
void toku_leaflock_lock_by_cursor(LEAFLOCK leaflock);
|
|
void toku_leaflock_unlock_by_cursor(LEAFLOCK leaflock);
|
|
#endif
|
|
|