Annotation of freem/src/journal.h, revision 1.1
1.1 ! snw 1: /*
! 2: * *
! 3: * * *
! 4: * * *
! 5: * ***************
! 6: * * * * *
! 7: * * MUMPS *
! 8: * * * * *
! 9: * ***************
! 10: * * *
! 11: * * *
! 12: * *
! 13: *
! 14: * journal.h
! 15: * Function prototypes, structs, and macros for FreeM
! 16: * journaling implementation
! 17: *
! 18: *
! 19: * Author: Serena Willis <jpw@coherent-logic.com>
! 20: * Copyright (C) 1998 MUG Deutschland
! 21: * Copyright (C) 2020 Coherent Logic Development LLC
! 22: *
! 23: *
! 24: * This file is part of FreeM.
! 25: *
! 26: * FreeM is free software: you can redistribute it and/or modify
! 27: * it under the terms of the GNU Affero Public License as published by
! 28: * the Free Software Foundation, either version 3 of the License, or
! 29: * (at your option) any later version.
! 30: *
! 31: * FreeM is distributed in the hope that it will be useful,
! 32: * but WITHOUT ANY WARRANTY; without even the implied warranty of
! 33: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! 34: * GNU Affero Public License for more details.
! 35: *
! 36: * You should have received a copy of the GNU Affero Public License
! 37: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
! 38: *
! 39: **/
! 40:
! 41: #ifndef _JOURNAL_H
! 42: # define _JOURNAL_H
! 43:
! 44: #include <time.h>
! 45: #include <limits.h>
! 46:
! 47: #if !defined(PATH_MAX) && defined(_SCO_DS)
! 48: # define PATH_MAX 4096
! 49: #endif
! 50:
! 51: #if !defined(PATH_MAX) && defined(__gnu_hurd__)
! 52: # define PATH_MAX 1024
! 53: #endif
! 54:
! 55: #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
! 56: # include <sys/syslimits.h>
! 57: #endif
! 58:
! 59: #include "jnldefs.h"
! 60:
! 61: extern short jnl_enabled;
! 62:
! 63: extern short jnl_init(char *jnlfile, char *hostid, unsigned long jnl_cut_threshold, unsigned long tran_id);
! 64: extern short jnl_ent_init(jnl_ent_t *entry);
! 65: extern short jnl_ent_write(short action, char *key, char *data);
! 66:
! 67: #endif
! 68:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>