51b870f689280ffed1c3eab11caa44b609b65a54
[dragonfly.git] / sys / sys / ckpt.h
1 /*-
2  * Copyright (c) 2003 Kip Macy All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  * $DragonFly: src/sys/sys/ckpt.h,v 1.7 2006/05/20 02:42:13 dillon Exp $
26  */
27 #ifndef _SYS_CKPT_H_
28 #define _SYS_CKPT_H_
29
30 #ifndef _SYS_TYPES_H_
31 #include <sys/types.h>
32 #endif
33 #ifndef _SYS_MOUNT_H_
34 #include <sys/mount.h>
35 #endif
36 #ifndef _SYS_PROC_H_
37 #include <sys/proc.h>
38 #endif
39 #ifndef _SYS_SIGNALVAR_H_
40 #include <sys/signalvar.h>
41 #endif
42
43 #define CKPT_MAXTHREADS 256
44
45 struct ckpt_filehdr {
46         int             cfh_magic;      /* XXX implement */
47         int             cfh_nfiles;
48         int             cfh_reserved[8];
49 };
50
51 struct ckpt_vminfo {
52         segsz_t         cvm_dsize;
53         segsz_t         cvm_tsize;
54         segsz_t         cvm_reserved1[4];
55         caddr_t         cvm_daddr;
56         caddr_t         cvm_taddr;
57         caddr_t         cvm_reserved2[4];
58 };
59
60 struct ckpt_fileinfo {
61         int             cfi_index;
62         u_int           cfi_flags;      /* saved f_flag */
63         off_t           cfi_offset;     /* saved f_offset */
64         fhandle_t       cfi_fh;
65         int             cfi_type;
66         int             cfi_reserved[7];
67 };
68
69 struct ckpt_siginfo {
70         int             csi_ckptpisz;
71         struct procsig  csi_procsig;
72         struct sigacts  csi_sigacts;
73         struct itimerval csi_itimerval;
74         int             csi_sigparent;
75         sigset_t        csi_sigmask;
76         int             csi_reserved[6];
77 };
78
79 /*
80  * Elf_Phdr is based on the inclusion of elf32 or elf64.  If neither was
81  * included, we don't know what to do with it.  If the source needs the
82  * structure, generate a compile-time error.
83  */
84 #ifdef __ELF_WORD_SIZE
85
86 struct vn_hdr {
87         fhandle_t       vnh_fh;
88         Elf_Phdr        vnh_phdr;
89         int             vnh_reserved[8];
90 };
91
92 #endif
93
94 #ifdef _KERNEL
95 #ifdef DEBUG
96 #define TRACE_ENTER printf("entering %s at %s:%d\n", __func__, __FILE__, __LINE__)
97 #define TRACE_EXIT printf("exiting %s at %s:%d\n", __func__, __FILE__, __LINE__)
98 #define TRACE_ERR printf("failure encountered in %s at %s:%d\n", __func__, __FILE__, __LINE__)
99 #define PRINTF(args) printf args
100 #else
101 #define TRACE_ENTER
102 #define TRACE_EXIT
103 #define TRACE_ERR
104 #define PRINTF(args)
105 #endif
106 #endif
107
108 #endif