003 File Manager
Current Path:
/usr/include/x86
usr
/
include
/
x86
/
π
..
π
_align.h
(2.41 KB)
π
_inttypes.h
(8.44 KB)
π
_limits.h
(4.2 KB)
π
_stdint.h
(5.69 KB)
π
_types.h
(4.78 KB)
π
acpica_machdep.h
(3.19 KB)
π
apicreg.h
(16.97 KB)
π
apicvar.h
(12.44 KB)
π
apm_bios.h
(7.56 KB)
π
bus.h
(33.29 KB)
π
bus_dma.h
(5.5 KB)
π
busdma_impl.h
(4.13 KB)
π
cputypes.h
(2.15 KB)
π
dump.h
(2.33 KB)
π
elf.h
(4.44 KB)
π
endian.h
(2.71 KB)
π
fdt.h
(1.53 KB)
π
float.h
(3.65 KB)
π
fpu.h
(6.52 KB)
π
frame.h
(4.2 KB)
π
ifunc.h
(2.18 KB)
π
init.h
(2.22 KB)
π
intr_machdep.h
(5.94 KB)
π
iommu.h
(253 B)
π
legacyvar.h
(2.99 KB)
π
mca.h
(1.86 KB)
π
metadata.h
(2.93 KB)
π
mptable.h
(5.02 KB)
π
ofw_machdep.h
(1.63 KB)
π
pci_cfgreg.h
(2.51 KB)
π
procctl.h
(2.05 KB)
π
psl.h
(4.05 KB)
π
ptrace.h
(2.51 KB)
π
pvclock.h
(2.04 KB)
π
reg.h
(7.56 KB)
π
segments.h
(11.06 KB)
π
setjmp.h
(2.15 KB)
π
sigframe.h
(2.55 KB)
π
signal.h
(4.14 KB)
π
specialreg.h
(41.64 KB)
π
stack.h
(1.46 KB)
π
stdarg.h
(1.58 KB)
π
sysarch.h
(4.86 KB)
π
trap.h
(2.9 KB)
π
ucode.h
(2.32 KB)
π
ucontext.h
(4.99 KB)
π
vdso.h
(1.94 KB)
π
vmware.h
(1.9 KB)
π
x86_smp.h
(3.35 KB)
π
x86_var.h
(5.03 KB)
Editing: init.h
/*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * * Copyright (c) 2013 Roger Pau MonnΓ© <roger.pau@citrix.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD$ */ #ifndef __X86_INIT_H__ #define __X86_INIT_H__ /* * Struct containing pointers to init functions whose * implementation is run time selectable. Selection can be made, * for example, based on detection of a BIOS variant or * hypervisor environment. */ struct init_ops { caddr_t (*parse_preload_data)(u_int64_t); void (*early_clock_source_init)(void); void (*early_delay)(int); void (*parse_memmap)(caddr_t, vm_paddr_t *, int *); void (*mp_bootaddress)(vm_paddr_t *, unsigned int *); int (*start_all_aps)(void); void (*msi_init)(void); }; extern struct init_ops init_ops; /* Knob to disable acpi_cpu devices */ extern bool acpi_cpu_disabled; /* Knob to disable acpi_hpet device */ extern bool acpi_hpet_disabled; /* Knob to disable acpi_timer device */ extern bool acpi_timer_disabled; #endif /* __X86_INIT_H__ */
Upload File
Create Folder