Additional checkpoint suppor for vmspace info. In particular, the data size
[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.3 2003/10/20 04:47:35 dillon Exp $
26  */
27 #ifndef _SYS_CKPT_H_
28 #define _SYS_CKPT_H_
29
30 struct ckpt_filehdr {
31         int             cfh_magic;      /* XXX implement */
32         int             cfh_nfiles;
33         int             cfh_reserved[8];
34 };
35
36 struct ckpt_vminfo {
37         segsz_t         cvm_dsize;
38         segsz_t         cvm_tsize;
39         segsz_t         cvm_reserved1[4];
40         caddr_t         cvm_daddr;
41         caddr_t         cvm_taddr;
42         caddr_t         cvm_reserved2[4];
43 };
44
45 struct ckpt_fileinfo {
46         int             cfi_index;
47         u_int           cfi_flags;      /* saved f_flag */
48         off_t           cfi_offset;     /* saved f_offset */
49         fhandle_t       cfi_fh;
50         int             cfi_reserved[8];
51 };
52
53 struct ckpt_siginfo {
54         int             csi_ckptpisz;
55         struct procsig  csi_procsig;
56         struct sigacts  csi_sigacts;
57         struct itimerval csi_itimerval;
58         int             csi_sigparent;
59         int             csi_reserved[8];
60 };
61
62 struct vn_hdr {
63         fhandle_t       vnh_fh;
64         Elf_Phdr        vnh_phdr;
65         int             vnh_reserved[8];
66 };
67
68 #ifdef _KERNEL
69 #ifdef DEBUG
70 #define TRACE_ENTER \
71 printf("entering %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__)
72 #define TRACE_EXIT \
73 printf("exiting %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__)
74 #define TRACE_ERR \
75 printf("failure encountered in %s at %s:%d\n", __FUNCTION__, __FILE__, __LINE__)
76 #define PRINTF(args) printf args
77 #else
78 #define TRACE_ENTER
79 #define TRACE_EXIT
80 #define TRACE_ERR
81 #define PRINTF(args)
82 #endif
83 #endif
84
85 #endif