mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
580f5caafb
git-svn-id: file:///svn/toku/tokudb@15562 c7de825b-a66e-492c-adef-691d508d4ae1
23 lines
1 KiB
C
23 lines
1 KiB
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ifndef TOKU_LEAFLOCK_H
|
|
#define TOKU_LEAFLOCK_H
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007, 2008, 2009 Tokutek Inc. All rights reserved."
|
|
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
|
|
|
|
typedef struct leaflock *LEAFLOCK;
|
|
typedef struct leaflock_pool *LEAFLOCK_POOL;
|
|
|
|
int toku_leaflock_create(LEAFLOCK_POOL* pool);
|
|
int toku_leaflock_destroy(LEAFLOCK_POOL* pool);
|
|
|
|
int toku_leaflock_borrow(LEAFLOCK_POOL pool, LEAFLOCK *leaflockp);
|
|
void toku_leaflock_unlock_and_return(LEAFLOCK_POOL pool, 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
|
|
|