mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
20 lines
586 B
C
20 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
|
||
|
|