Deleted Added
full compact
dump.h (8871) dump.h (12377)
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 65 unchanged lines hidden (view full) ---

74long asize; /* number of 0.1" units written on current tape */
75int etapes; /* estimated number of tapes */
76int nonodump; /* if set, do not honor UF_NODUMP user flags */
77
78int notify; /* notify operator flag */
79int blockswritten; /* number of blocks written on current tape */
80int tapeno; /* current tape number */
81time_t tstart_writing; /* when started writing the first tape block */
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 65 unchanged lines hidden (view full) ---

74long asize; /* number of 0.1" units written on current tape */
75int etapes; /* estimated number of tapes */
76int nonodump; /* if set, do not honor UF_NODUMP user flags */
77
78int notify; /* notify operator flag */
79int blockswritten; /* number of blocks written on current tape */
80int tapeno; /* current tape number */
81time_t tstart_writing; /* when started writing the first tape block */
82time_t tend_writing; /* after writing the last tape block */
82struct fs *sblock; /* the file system super block */
83char sblock_buf[MAXBSIZE];
84long dev_bsize; /* block size of underlying disk device */
85int dev_bshift; /* log2(dev_bsize) */
86int tp_bshift; /* log2(TP_BSIZE) */
87
88#ifndef __P
89#include <sys/cdefs.h>

--- 123 unchanged lines hidden ---
83struct fs *sblock; /* the file system super block */
84char sblock_buf[MAXBSIZE];
85long dev_bsize; /* block size of underlying disk device */
86int dev_bshift; /* log2(dev_bsize) */
87int tp_bshift; /* log2(TP_BSIZE) */
88
89#ifndef __P
90#include <sys/cdefs.h>

--- 123 unchanged lines hidden ---