mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
9948adca3c
git-svn-id: file:///svn/toku/tokudb@35506 c7de825b-a66e-492c-adef-691d508d4ae1
17 lines
647 B
C
17 lines
647 B
C
#ifndef KIBBUTZ_H
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2010 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."
|
|
|
|
#include "c_dialects.h"
|
|
|
|
C_BEGIN
|
|
|
|
typedef struct kibbutz *KIBBUTZ;
|
|
KIBBUTZ toku_kibbutz_create (int n_workers);
|
|
void toku_kibbutz_enq (KIBBUTZ k, void (*f)(void*), void *extra);
|
|
void toku_kibbutz_destroy (KIBBUTZ k);
|
|
|
|
C_END
|
|
|
|
#endif
|