ia32_sysvec.c (b82b4ae752501469053979393e33bbfa74fbc9d2) | ia32_sysvec.c (d060b420e0f6d8f6535dfcda6f580dad3f5613d3) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2002 Doug Rabson 5 * Copyright (c) 2003 Peter Wemm 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 62 unchanged lines hidden (view full) --- 71#include <machine/frame.h> 72#include <machine/md_var.h> 73#include <machine/pcb.h> 74#include <machine/cpufunc.h> 75 76CTASSERT(sizeof(struct ia32_mcontext) == 640); 77CTASSERT(sizeof(struct ia32_ucontext) == 704); 78CTASSERT(sizeof(struct ia32_sigframe) == 800); | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2002 Doug Rabson 5 * Copyright (c) 2003 Peter Wemm 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 62 unchanged lines hidden (view full) --- 71#include <machine/frame.h> 72#include <machine/md_var.h> 73#include <machine/pcb.h> 74#include <machine/cpufunc.h> 75 76CTASSERT(sizeof(struct ia32_mcontext) == 640); 77CTASSERT(sizeof(struct ia32_ucontext) == 704); 78CTASSERT(sizeof(struct ia32_sigframe) == 800); |
79CTASSERT(sizeof(struct siginfo32) == 64); | 79CTASSERT(sizeof(struct __siginfo32) == 64); |
80#ifdef COMPAT_FREEBSD4 81CTASSERT(sizeof(struct ia32_freebsd4_mcontext) == 260); 82CTASSERT(sizeof(struct ia32_freebsd4_ucontext) == 324); 83CTASSERT(sizeof(struct ia32_freebsd4_sigframe) == 408); 84#endif 85 86#include "vdso_ia32_offsets.h" 87 --- 157 unchanged lines hidden --- | 80#ifdef COMPAT_FREEBSD4 81CTASSERT(sizeof(struct ia32_freebsd4_mcontext) == 260); 82CTASSERT(sizeof(struct ia32_freebsd4_ucontext) == 324); 83CTASSERT(sizeof(struct ia32_freebsd4_sigframe) == 408); 84#endif 85 86#include "vdso_ia32_offsets.h" 87 --- 157 unchanged lines hidden --- |