Annotation of freem/src/tp_check.h, revision 1.1.1.1

1.1       snw         1: /*
                      2:  *                            *
                      3:  *                           * *
                      4:  *                          *   *
                      5:  *                     ***************
                      6:  *                      * *       * *
                      7:  *                       *  MUMPS  *
                      8:  *                      * *       * *
                      9:  *                     ***************
                     10:  *                          *   *
                     11:  *                           * *
                     12:  *                            *
                     13:  *
                     14:  *   tp_check.h
                     15:  *    TP checkpointing declarations
                     16:  *
                     17:  *  
                     18:  *   Author: Serena Willis <jpw@coherent-logic.com>
                     19:  *    Copyright (C) 1998 MUG Deutschland
                     20:  *    Copyright (C) 2022 Coherent Logic Development LLC
                     21:  *
                     22:  *
                     23:  *   This file is part of FreeM.
                     24:  *
                     25:  *   FreeM is free software: you can redistribute it and/or modify
                     26:  *   it under the terms of the GNU Affero Public License as published by
                     27:  *   the Free Software Foundation, either version 3 of the License, or
                     28:  *   (at your option) any later version.
                     29:  *
                     30:  *   FreeM is distributed in the hope that it will be useful,
                     31:  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     32:  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     33:  *   GNU Affero Public License for more details.
                     34:  *
                     35:  *   You should have received a copy of the GNU Affero Public License
                     36:  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
                     37:  *
                     38:  **/
                     39: 
                     40: #define CP_UNUSED 0
                     41: #define CP_REMOVE 1
                     42: #define CP_RESTORE 2
                     43: 
                     44: typedef struct cptab {
                     45: 
                     46:     char mode; /* CP_UNUSED, CP_REMOVE, or CP_RESTORE */
                     47: 
                     48:     char *global; /* global name */
                     49:     char *file; /* fully-qualified file path */
                     50: 
                     51:     char *cp_file; /* fully-qualified checkpoint file path */
                     52: 
                     53:     struct cptab *next;
                     54: 
                     55: } cptab;
                     56: 
                     57: extern cptab *cptab_head[];
                     58: 
                     59: extern cptab *cptab_insert(int tlevel, char *global);
                     60: extern cptab *cptab_retrieve(int tlevel, char *global);
                     61: extern void cptab_delete(int tlevel, char *global);
                     62: extern short cptab_precommit(int tlevel);
                     63: extern void cptab_postcommit(int tlevel);
                     64: extern void cptab_dump(int tlevel);
                     65: short cptab_rollback(int tlevel);
                     66:     

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>