md_var.h (883bd55abd9f5910c6706cb8245bfdaf1d6ac356) | md_var.h (2c38d78e41ae4078359acfbbdac1c39976733bbf) |
---|---|
1/*- 2 * Copyright (c) 1995 Bruce D. Evans. 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 --- 81 unchanged lines hidden (view full) --- 90void i486_bzero(void *buf, size_t len); 91void i586_bcopy(const void *from, void *to, size_t len); 92void i586_bzero(void *buf, size_t len); 93int i586_copyin(const void *udaddr, void *kaddr, size_t len); 94int i586_copyout(const void *kaddr, void *udaddr, size_t len); 95void i686_pagezero(void *addr); 96void sse2_pagezero(void *addr); 97void init_AMD_Elan_sc520(void); | 1/*- 2 * Copyright (c) 1995 Bruce D. Evans. 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 --- 81 unchanged lines hidden (view full) --- 90void i486_bzero(void *buf, size_t len); 91void i586_bcopy(const void *from, void *to, size_t len); 92void i586_bzero(void *buf, size_t len); 93int i586_copyin(const void *udaddr, void *kaddr, size_t len); 94int i586_copyout(const void *kaddr, void *udaddr, size_t len); 95void i686_pagezero(void *addr); 96void sse2_pagezero(void *addr); 97void init_AMD_Elan_sc520(void); |
98int is_physical_memory(vm_offset_t addr); | 98int is_physical_memory(vm_paddr_t addr); |
99int isa_nmi(int cd); 100vm_paddr_t kvtop(void *addr); 101void setidt(int idx, alias_for_inthand_t *func, int typ, int dpl, int selec); 102int user_dbreg_trap(void); 103 104#endif /* !_MACHINE_MD_VAR_H_ */ | 99int isa_nmi(int cd); 100vm_paddr_t kvtop(void *addr); 101void setidt(int idx, alias_for_inthand_t *func, int typ, int dpl, int selec); 102int user_dbreg_trap(void); 103 104#endif /* !_MACHINE_MD_VAR_H_ */ |