Deleted Added
full compact
dd.h (273734) dd.h (273743)
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Keith Muller of the University of California, San Diego and Lance
7 * Visser of Convex Computer Corporation.
8 *

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)dd.h 8.3 (Berkeley) 4/2/94
1/*-
2 * Copyright (c) 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Keith Muller of the University of California, San Diego and Lance
7 * Visser of Convex Computer Corporation.
8 *

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)dd.h 8.3 (Berkeley) 4/2/94
34 * $FreeBSD: head/bin/dd/dd.h 273734 2014-10-27 11:38:17Z pi $
34 * $FreeBSD: head/bin/dd/dd.h 273743 2014-10-27 17:39:37Z pi $
35 */
36
37/* Input/output stream state. */
38typedef struct {
39 u_char *db; /* buffer address */
40 u_char *dbp; /* current buffer I/O address */
35 */
36
37/* Input/output stream state. */
38typedef struct {
39 u_char *db; /* buffer address */
40 u_char *dbp; /* current buffer I/O address */
41 ssize_t dbcnt; /* current buffer byte count */
42 ssize_t dbrcnt; /* last read byte count */
43 ssize_t dbsz; /* block size */
41 /* XXX ssize_t? */
42 size_t dbcnt; /* current buffer byte count */
43 size_t dbrcnt; /* last read byte count */
44 size_t dbsz; /* block size */
44
45#define ISCHR 0x01 /* character device (warn on short) */
46#define ISPIPE 0x02 /* pipe-like (see position.c) */
47#define ISTAPE 0x04 /* tape */
48#define ISSEEK 0x08 /* valid to seek on */
49#define NOREAD 0x10 /* not readable */
50#define ISTRUNC 0x20 /* valid to ftruncate() */
51 u_int flags;
52
53 const char *name; /* name */
54 int fd; /* file descriptor */
55 off_t offset; /* # of blocks to skip */
56} IO;
57
58typedef struct {
45
46#define ISCHR 0x01 /* character device (warn on short) */
47#define ISPIPE 0x02 /* pipe-like (see position.c) */
48#define ISTAPE 0x04 /* tape */
49#define ISSEEK 0x08 /* valid to seek on */
50#define NOREAD 0x10 /* not readable */
51#define ISTRUNC 0x20 /* valid to ftruncate() */
52 u_int flags;
53
54 const char *name; /* name */
55 int fd; /* file descriptor */
56 off_t offset; /* # of blocks to skip */
57} IO;
58
59typedef struct {
59 size_t in_full; /* # of full input blocks */
60 size_t in_part; /* # of partial input blocks */
61 size_t out_full; /* # of full output blocks */
62 size_t out_part; /* # of partial output blocks */
63 size_t trunc; /* # of truncated records */
64 size_t swab; /* # of odd-length swab blocks */
65 size_t bytes; /* # of bytes written */
60 uintmax_t in_full; /* # of full input blocks */
61 uintmax_t in_part; /* # of partial input blocks */
62 uintmax_t out_full; /* # of full output blocks */
63 uintmax_t out_part; /* # of partial output blocks */
64 uintmax_t trunc; /* # of truncated records */
65 uintmax_t swab; /* # of odd-length swab blocks */
66 uintmax_t bytes; /* # of bytes written */
66 struct timespec start; /* start time of dd */
67} STAT;
68
69/* Flags (in ddflags). */
70#define C_ASCII 0x00000001
71#define C_BLOCK 0x00000002
72#define C_BS 0x00000004
73#define C_CBS 0x00000008

--- 28 unchanged lines hidden ---
67 struct timespec start; /* start time of dd */
68} STAT;
69
70/* Flags (in ddflags). */
71#define C_ASCII 0x00000001
72#define C_BLOCK 0x00000002
73#define C_BS 0x00000004
74#define C_CBS 0x00000008

--- 28 unchanged lines hidden ---