Free only fake jobs.
[beanstalkd.git] / binlog.h
blobf664cd45668e217e0480ee583799ef5e4b6549f3
1 /* binlog.h - binary log implementation */
3 /* Copyright (C) 2008 Graham Barr
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef binlog_h
20 #define binlog_h
22 #include "job.h"
24 typedef struct binlog *binlog;
26 struct binlog {
27 binlog next;
28 unsigned int refs;
29 char path[];
32 extern char *binlog_dir;
33 extern size_t binlog_size_limit;
35 /* Return the number of locks acquired: either 0 or 1. */
36 int binlog_lock();
38 void binlog_write_job(job j);
39 void binlog_read(job binlog_jobs);
40 void binlog_close();
41 const char *binlog_oldest_index();
42 const char *binlog_current_index();
44 #endif