Deleted Added
full compact
freebsd32.h (219307) freebsd32.h (220158)
1/*-
2 * Copyright (c) 2001 Doug Rabson
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Doug Rabson
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/compat/freebsd32/freebsd32.h 219307 2011-03-05 14:41:49Z trasz $
26 * $FreeBSD: head/sys/compat/freebsd32/freebsd32.h 220158 2011-03-30 14:46:12Z kib $
27 */
28
29#ifndef _COMPAT_FREEBSD32_FREEBSD32_H_
30#define _COMPAT_FREEBSD32_FREEBSD32_H_
31
32#include <sys/procfs.h>
33#include <sys/socket.h>
34#include <sys/user.h>

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

331 uint32_t ki_udata;
332 uint32_t ki_tdaddr;
333 uint32_t ki_spareptrs[KI_NSPARE_PTR]; /* spare room for growth */
334 int ki_sparelongs[KI_NSPARE_LONG];
335 int ki_sflag;
336 int ki_tdflags;
337};
338
27 */
28
29#ifndef _COMPAT_FREEBSD32_FREEBSD32_H_
30#define _COMPAT_FREEBSD32_FREEBSD32_H_
31
32#include <sys/procfs.h>
33#include <sys/socket.h>
34#include <sys/user.h>

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

331 uint32_t ki_udata;
332 uint32_t ki_tdaddr;
333 uint32_t ki_spareptrs[KI_NSPARE_PTR]; /* spare room for growth */
334 int ki_sparelongs[KI_NSPARE_LONG];
335 int ki_sflag;
336 int ki_tdflags;
337};
338
339struct kld32_file_stat_1 {
340 int version; /* set to sizeof(struct kld_file_stat_1) */
341 char name[MAXPATHLEN];
342 int refs;
343 int id;
344 uint32_t address; /* load address */
345 uint32_t size; /* size in bytes */
346};
347
348struct kld32_file_stat {
349 int version; /* set to sizeof(struct kld_file_stat) */
350 char name[MAXPATHLEN];
351 int refs;
352 int id;
353 uint32_t address; /* load address */
354 uint32_t size; /* size in bytes */
355 char pathname[MAXPATHLEN];
356};
357
339#endif /* !_COMPAT_FREEBSD32_FREEBSD32_H_ */
358#endif /* !_COMPAT_FREEBSD32_FREEBSD32_H_ */