├── ANNOUNCE ├── BUGS ├── BUGS.details ├── COPYING ├── CREDITS ├── GNUmakefile.in ├── GNUmakerules ├── GNUmakerules-arm32 ├── GNUmakerules-lib ├── GNUmakerules-top ├── GNUmakerules-x86 ├── GNUmakerules-x86-exe ├── INSTALL ├── LICENSE ├── Makeconf.in ├── README.md ├── aclocal.m4 ├── amm ├── GNUmakefile.in ├── README ├── amm.h ├── amm_alloc_entry.c ├── amm_allocate.c ├── amm_deallocate.c ├── amm_destroy.c ├── amm_dump.c ├── amm_find_addr.c ├── amm_find_gen.c ├── amm_free_entry.c ├── amm_init.c ├── amm_init_gen.c ├── amm_iterate.c ├── amm_iterate_gen.c ├── amm_join.c ├── amm_modify.c ├── amm_protect.c ├── amm_reserve.c ├── amm_select.c ├── amm_split.c └── examples │ ├── amap.c │ ├── amap.h │ ├── rmap.c │ ├── rmap.h │ ├── simple_amap.c │ ├── simple_amap.h │ ├── simple_rmap.c │ └── simple_rmap.h ├── boot ├── README ├── boot.h ├── boot_start.c ├── bsd │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── boottype.h │ ├── crt0.S │ ├── ldscript.in │ ├── main.c │ ├── mkbsdimage.in │ ├── putchar.c │ ├── reboot.h │ └── unmkbsdimage.in ├── do_boot.S ├── dos │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── main.c │ └── mkdosimage.in ├── extended_mem_size.c ├── grub-msdos-floppy.img.gz.uue ├── linux │ ├── COPYING │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── Update-from-Linux │ ├── autoconf.h │ ├── config.h │ ├── crypt.h │ ├── gzip.h │ ├── i16_bootsect.S │ ├── i16_setup.S │ ├── inflate.c │ ├── linuxboot.bin.uue │ ├── lzw.h │ ├── malloc.c │ ├── misc.c │ ├── mklinux2.in │ ├── mklinuximage.in │ ├── putchar.c │ ├── segment.h │ └── unzip.c ├── mkdosfloppy ├── multiboot │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── main.c │ ├── mkmb2.in │ ├── mkmbimage.in │ └── multiboot_main.c ├── net │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── NEWS │ ├── README │ ├── base_multiboot_main.c │ ├── boot.h │ ├── debug.h │ ├── do_boot.S │ ├── driver.c │ ├── driver.h │ ├── drivers_desc.in │ ├── fileops.c │ ├── fileops.h │ ├── gdt.c │ ├── gdt.h │ ├── getkernel_net.c │ ├── grubnetboot.lst │ ├── loadkernel.c │ ├── log.c │ ├── main.c │ ├── mem_lock.c │ ├── misc.c │ ├── misc.h │ ├── nfsops.c │ ├── reboot.S │ ├── reboot.h │ ├── rpc.c │ ├── rpc.h │ ├── socket.c │ ├── socket.h │ ├── special-init.in │ ├── tftpops.c │ ├── timer.c │ └── timer.h ├── ofw │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── crt0.S │ ├── ldscript.in │ ├── mkofwimage.in │ └── ofw_start.c ├── ofwboot │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── decls.h │ ├── log.c │ ├── main.c │ └── network.c └── pxe │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── bootinfo │ ├── Makefile │ ├── README │ └── bootinfo.c │ ├── crt0.S │ ├── decls.h │ ├── main.c │ ├── malloc.c │ ├── multiboot.c │ ├── putchar.c │ ├── pxe.h │ ├── udp.c │ └── udp.h ├── bootp ├── GNUmakefile.in ├── GNUmakerules ├── README ├── bootp.c ├── bootp.h ├── driver.c ├── dump.c ├── netmask.c ├── test.c ├── udp.c └── udp.h ├── clientos ├── GNUmakefile.in ├── GNUmakerules ├── README ├── appmem.c ├── clientos.c ├── default_console.c ├── libcenv.c ├── mem.c └── morecore.c ├── com ├── GNUmakefile.in ├── GNUmakerules ├── README ├── absio_wrapper.c ├── asyncio_wrapper.c ├── avc.c ├── blk_io_subset.c ├── blkio_wrapper.c ├── boundedqueue.c ├── buf_io.c ├── buf_io_extern.c ├── charqueue.c ├── com_queue.c ├── cq_intr_stream.c ├── create_listener.c ├── dirents_wrapper.c ├── file_blk.c ├── file_clock.c ├── file_tty.c ├── file_universal.c ├── filepsid.c ├── fs_wrapper.c ├── fsnode_wrapper.c ├── fsopen_wrapper.c ├── iids.awk ├── listener_fanout.c ├── listener_mgr.c ├── net_io.c ├── net_io_fanout.c ├── openfile_absio.c ├── openfile_file.c ├── openfile_rwl.c ├── openfile_stream.c ├── pipe_io.c ├── pqueue.c ├── principal.c ├── random.c ├── register.c ├── services.c ├── sfs.h ├── sfs_fs.c ├── sfs_hashtab.c ├── sfs_hashtab.h ├── sfs_init.c ├── sfs_new_hashtab.c ├── sfs_new_hashtab.h ├── sfs_node.c ├── sfs_peropen.c ├── sleep_listener.c ├── socket_wrapper.c ├── sockio_wrapper.c ├── stream_wrapper.c ├── trivial_stream.c ├── ttystream_wrapper.c └── uspf.c ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── crt ├── GNUmakefile.in ├── GNUmakerules ├── README ├── arm32 │ ├── GNUmakerules │ ├── crtn.S │ └── multiboot.S └── x86 │ ├── GNUmakerules │ ├── crti.h │ ├── crtn.S │ ├── dos.S │ ├── multiboot.S │ └── multiboot_dyn.S ├── dev ├── GNUmakefile.in ├── README ├── arm32 │ ├── GNUmakerules │ ├── irq.c │ ├── isa_bus.c │ ├── pcibus.c │ ├── pic.c │ ├── pit_param.h │ ├── rtclock.c │ ├── synch.c │ ├── timer.c │ └── timer_pit.c ├── clock.c ├── device_register.c ├── dma.c ├── dpf.c ├── driver_register.c ├── dump.c ├── init.c ├── io.c ├── log.c ├── mem.c ├── membus.c ├── openfile_netio.c ├── osenv.c ├── osenv_device.c ├── osenv_driver.c ├── osenv_intr.c ├── osenv_ioport.c ├── osenv_irq.c ├── osenv_isa.c ├── osenv_log.c ├── osenv_mem.c ├── osenv_pci_config.c ├── osenv_rtc.c ├── osenv_sleep.c ├── osenv_timer.c ├── panic.c ├── pci.c ├── pd.c ├── probe.c ├── root.c ├── sleep.c ├── softirq.c ├── spf.c ├── spf_ether.c ├── wrap_blkio.c └── x86 │ ├── GNUmakerules │ ├── bios32.c │ ├── irq.c │ ├── isa_bus.c │ ├── pcibus.c │ ├── pic.c │ ├── pit_param.h │ ├── rtclock.c │ ├── synch.c │ ├── timer.c │ └── timer_pit.c ├── diskpart ├── GNUmakefile.in ├── README ├── dump.c ├── fill.c ├── find.c ├── find_blkio.c ├── find_dec.c ├── find_disklabel.c ├── find_omron.c ├── find_pcbios.c ├── find_vtoc.c ├── lookup.c ├── lookup_blkio.c ├── lookup_string.c └── lookup_string_blkio.c ├── doc ├── GNUmakefile.in ├── GNUmakerules ├── README ├── README.doc ├── amm.tex ├── book.tex ├── bootp.tex ├── clientos.tex ├── com-interface.fig ├── com.tex ├── conf.tex ├── defs.tex ├── dev.tex ├── diskpart.tex ├── env.tex ├── exec.tex ├── fdev-hw-tree.fig ├── fdev-org.fig ├── fdev-user-mode.fig ├── flask.tex ├── freebsd-dev.tex ├── freebsd-libc.tex ├── freebsd-math.tex ├── freebsd-net.tex ├── fs-hier.fig ├── fs.tex ├── fsnamespace.tex ├── fsread.tex ├── gprof.tex ├── hpfq.tex ├── hyperref.cfg ├── inherit.fig ├── intf-misc.tex ├── intf.tex ├── intro.tex ├── io.tex ├── kern.tex ├── libc.tex ├── libdev.tex ├── licensing.tex ├── linux-dev.tex ├── linux-fs.tex ├── lmm.tex ├── memdebug.tex ├── memfs.tex ├── multiboot-spec.tex ├── net.tex ├── netboot.tex ├── netbsd-fs.tex ├── oskit-www.tex ├── oskit.tex ├── oskitunix.fig ├── papers │ └── README.html ├── pd-bw.fig ├── pd.tex ├── perl-reform ├── posix.tex ├── pthread.tex ├── pure-model.fig ├── register.tex ├── rtld.tex ├── smp.tex ├── sproc.tex ├── startup.tex ├── svgalib.tex ├── svm.tex ├── synch.tex ├── sys.bib ├── tex4ht.cfg ├── tex4ht.env ├── texmf.cnf ├── unix-support.tex ├── uvm.tex ├── video.tex └── xvideo.tex ├── dpf ├── dpf │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ └── dpf_glue.c └── src │ └── dpf │ ├── OVERVIEW │ ├── README │ ├── TODO │ ├── consistency.c │ ├── demand.h │ ├── dpf-config.h │ ├── dpf-internal.h │ ├── dpf-ir-print.c │ ├── dpf-ir.c │ ├── dpf.c │ ├── dpf.h │ ├── dpf_lib.c │ ├── dpf_lib.h │ ├── hash.h │ ├── interp.c │ ├── mkpathfinder.c │ ├── mkudp.c │ ├── old-dpf.h │ ├── optimize.c │ ├── output.c │ ├── pid.c │ ├── plan │ ├── queue.h │ └── xlate.c ├── examples ├── README ├── arm32 │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── extended │ │ ├── GNUmakefile.in │ │ └── GNUmakerules │ ├── sound.c │ └── threads │ │ ├── GNUmakefile.in │ │ └── GNUmakerules ├── dyntest │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── dopey.c │ ├── dummy.c │ ├── dyntest.c │ ├── foo.c │ └── stub.c ├── unix │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── extended │ │ ├── GNUmakefile.in │ │ └── GNUmakerules │ ├── threads │ │ ├── GNUmakefile.in │ │ └── GNUmakerules │ └── unixmakerules └── x86 │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── anno_asm.S │ ├── anno_test.c │ ├── big_stack.S │ ├── blkio.c │ ├── bmodfs.c │ ├── diskpart.c │ ├── extended │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── console_tty.c │ ├── lsfs.c │ └── svm.c │ ├── fsread.c │ ├── fudp.c │ ├── fudp_recv.c │ ├── hello.c │ ├── hpfq_udp.c │ ├── hpfq_udp_tally.c │ ├── linux_fs_com.c │ ├── memfs_com.c │ ├── memfstest1.c │ ├── more │ ├── README │ ├── bufio_stream_recv.c │ ├── bufio_stream_send.c │ ├── dd.c │ ├── diskpart2.c │ ├── dpf_arp_test.c │ ├── dpf_com.c │ ├── dpf_test.c │ ├── fsbmodmount.c │ ├── gethostbyname.c │ ├── linux_fs_posix.c │ ├── memfs_fs_posix.c │ ├── memtest.c │ ├── mmap_dev_mem.c │ ├── netbsd_fs_posix.c │ ├── pd_ex.c │ ├── select.c │ ├── socket_com2.c │ ├── spf.c │ ├── stream_netio.c │ ├── timer_com2.c │ └── uspf.c │ ├── mouse.c │ ├── multiboot.c │ ├── netbsd_fs_com.c │ ├── osenv_memdebug.c │ ├── perfmon.c │ ├── pingreply.c │ ├── security │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ └── netbsd_sfs_com.c │ ├── shared │ ├── README │ ├── bootp.c │ ├── bootp.h │ ├── direct_console.c │ ├── dols.c │ ├── dummy.c │ ├── intr_console.c │ └── netinet.h │ ├── smp │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ └── smp.c │ ├── socket_bsd.c │ ├── socket_com.c │ ├── sproc │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── kern_syscall.c │ ├── kernel.c │ ├── proc.h │ ├── syscallno.h │ ├── user_crt.c │ ├── user_mem.c │ ├── user_morecore.c │ ├── user_syscall.S │ ├── user_syscall.h │ ├── usermain_hello.c │ ├── usermain_malloc.c │ └── usermain_testsproc.c │ ├── threads │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── console_tty.c │ ├── disknet.c │ ├── disktest.c │ ├── dopeyserver.c │ ├── dphils.c │ ├── http_proxy.c │ ├── inherit-test1.c │ ├── ipctest.c │ ├── mqtest.c │ ├── sched_test.c │ ├── semtest.c │ ├── sigtest.c │ └── stride_test.c │ ├── timer.c │ ├── timer_com.c │ ├── tiny_stack.S │ ├── tty.c │ ├── video_svga │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── testlinear.c │ └── vgatest.c │ └── video_x11 │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ └── video.c ├── exec ├── GNUmakefile.in ├── GNUmakerules ├── README ├── arm32 │ ├── GNUmakerules │ ├── aout.c │ └── objfmts.h ├── elf.c ├── error.c ├── exec.h ├── load.c ├── objfmts.h └── x86 │ ├── GNUmakerules │ ├── aout.c │ └── objfmts.h ├── flask ├── GNUmakefile.in ├── GNUmakerules ├── access_vectors ├── initial_sids ├── mkaccess_vector.sh ├── mkflask.sh └── security_classes ├── freebsd ├── 3.x │ ├── shared │ │ ├── GNUmakerules │ │ ├── README │ │ ├── arm32 │ │ │ ├── clock.c │ │ │ ├── include │ │ │ │ ├── ansi.h │ │ │ │ ├── atomic.h │ │ │ │ ├── cpu.h │ │ │ │ ├── cpufunc.h │ │ │ │ ├── devconf.h │ │ │ │ ├── endian.h │ │ │ │ ├── float.h │ │ │ │ ├── ieee.h │ │ │ │ ├── ieeefp.h │ │ │ │ ├── in_cksum.h │ │ │ │ ├── ipl.h │ │ │ │ ├── limits.h │ │ │ │ ├── lock.h │ │ │ │ ├── param.h │ │ │ │ ├── pcb.h │ │ │ │ ├── pmap.h │ │ │ │ ├── proc.h │ │ │ │ ├── pte.h │ │ │ │ ├── random.h │ │ │ │ ├── signal.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── trap.h │ │ │ │ ├── types.h │ │ │ │ └── vmparam.h │ │ │ ├── ipl_funcs.c │ │ │ └── stubs.c │ │ ├── clock_init.c │ │ ├── defaults.c │ │ ├── error.c │ │ ├── freebsd_version.h │ │ ├── generic_bcopy.c │ │ ├── glue.c │ │ ├── glue.h │ │ ├── include │ │ │ ├── npx.h │ │ │ ├── opt_ntp.h │ │ │ ├── quad.h │ │ │ ├── sys │ │ │ │ └── vnode.h │ │ │ └── vm │ │ │ │ ├── pmap.h │ │ │ │ ├── vm.h │ │ │ │ └── vm_param.h │ │ ├── init_main.c │ │ ├── kern_clock.c │ │ ├── kern_descrip.c │ │ ├── kern_environment.c │ │ ├── kern_sig.c │ │ ├── kern_synch.c │ │ ├── kern_sysctl.c │ │ ├── kern_time.c │ │ ├── linker_set.c │ │ ├── linker_sets.c │ │ ├── osenv.c │ │ ├── osenv.h │ │ ├── param.c │ │ ├── pmap.c │ │ ├── qdivrem.c │ │ ├── select.c │ │ ├── shutdown.c │ │ ├── swi.c │ │ ├── udivdi3.c │ │ ├── umoddi3.c │ │ ├── vm_kern.c │ │ ├── vm_zone.c │ │ └── x86 │ │ │ ├── clock.c │ │ │ ├── ipl_funcs.c │ │ │ ├── kvtop.c │ │ │ └── support.S │ └── src │ │ ├── include │ │ ├── Makefile │ │ ├── a.out.h │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── bitstring.h │ │ ├── ctype.h │ │ ├── db.h │ │ ├── dirent.h │ │ ├── disktab.h │ │ ├── dlfcn.h │ │ ├── elf.h │ │ ├── err.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── histedit.h │ │ ├── ieeefp.h │ │ ├── iso646.h │ │ ├── kvm.h │ │ ├── limits.h │ │ ├── link.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── mpool.h │ │ ├── ndbm.h │ │ ├── netdb.h │ │ ├── nl_types.h │ │ ├── nlist.h │ │ ├── objformat.h │ │ ├── paths.h │ │ ├── protocols │ │ │ ├── dumprestore.h │ │ │ ├── routed.h │ │ │ ├── rwhod.h │ │ │ ├── talkd.h │ │ │ └── timed.h │ │ ├── pthread.h │ │ ├── pthread_np.h │ │ ├── pwd.h │ │ ├── ranlib.h │ │ ├── regex.h │ │ ├── regexp.h │ │ ├── resolv.h │ │ ├── rpc │ │ │ ├── auth.h │ │ │ ├── auth_des.h │ │ │ ├── auth_unix.h │ │ │ ├── clnt.h │ │ │ ├── des.h │ │ │ ├── des_crypt.h │ │ │ ├── pmap_clnt.h │ │ │ ├── pmap_prot.h │ │ │ ├── pmap_rmt.h │ │ │ ├── rpc.h │ │ │ ├── rpc_com.h │ │ │ ├── rpc_msg.h │ │ │ ├── svc.h │ │ │ ├── svc_auth.h │ │ │ ├── types.h │ │ │ └── xdr.h │ │ ├── rpcsvc │ │ │ ├── Makefile │ │ │ ├── bootparam_prot.x │ │ │ ├── crypt.x │ │ │ ├── key_prot.x │ │ │ ├── klm_prot.x │ │ │ ├── mount.x │ │ │ ├── nfs_prot.x │ │ │ ├── nis.x │ │ │ ├── nis_cache.x │ │ │ ├── nis_callback.x │ │ │ ├── nis_db.h │ │ │ ├── nis_object.x │ │ │ ├── nis_tags.h │ │ │ ├── nislib.h │ │ │ ├── nlm_prot.x │ │ │ ├── pmap_prot.x │ │ │ ├── rex.x │ │ │ ├── rnusers.x │ │ │ ├── rquota.x │ │ │ ├── rstat.x │ │ │ ├── rwall.x │ │ │ ├── sm_inter.x │ │ │ ├── spray.x │ │ │ ├── yp.x │ │ │ ├── yp_prot.h │ │ │ ├── ypclnt.h │ │ │ ├── yppasswd.x │ │ │ ├── ypupdate_prot.x │ │ │ └── ypxfrd.x │ │ ├── rune.h │ │ ├── runetype.h │ │ ├── setjmp.h │ │ ├── sgtty.h │ │ ├── signal.h │ │ ├── stab.h │ │ ├── stddef.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── strhash.h │ │ ├── string.h │ │ ├── stringlist.h │ │ ├── strings.h │ │ ├── struct.h │ │ ├── sysexits.h │ │ ├── tar.h │ │ ├── time.h │ │ ├── timers.h │ │ ├── ttyent.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ └── vis.h │ │ ├── lib │ │ ├── libc │ │ │ ├── Makefile │ │ │ ├── Makefile.inc │ │ │ ├── compat-43 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── creat.c │ │ │ │ ├── gethostid.c │ │ │ │ ├── getwd.c │ │ │ │ ├── killpg.c │ │ │ │ ├── sethostid.c │ │ │ │ ├── setpgrp.c │ │ │ │ ├── setrgid.c │ │ │ │ ├── setruid.c │ │ │ │ └── sigcompat.c │ │ │ ├── db │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README │ │ │ │ ├── btree │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── bt_close.c │ │ │ │ │ ├── bt_conv.c │ │ │ │ │ ├── bt_debug.c │ │ │ │ │ ├── bt_delete.c │ │ │ │ │ ├── bt_get.c │ │ │ │ │ ├── bt_open.c │ │ │ │ │ ├── bt_overflow.c │ │ │ │ │ ├── bt_page.c │ │ │ │ │ ├── bt_put.c │ │ │ │ │ ├── bt_search.c │ │ │ │ │ ├── bt_seq.c │ │ │ │ │ ├── bt_split.c │ │ │ │ │ ├── bt_utils.c │ │ │ │ │ ├── btree.h │ │ │ │ │ └── extern.h │ │ │ │ ├── changelog │ │ │ │ ├── db │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── db.c │ │ │ │ ├── hash │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README │ │ │ │ │ ├── extern.h │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hash_bigkey.c │ │ │ │ │ ├── hash_buf.c │ │ │ │ │ ├── hash_func.c │ │ │ │ │ ├── hash_log2.c │ │ │ │ │ ├── hash_page.c │ │ │ │ │ ├── hsearch.c │ │ │ │ │ ├── ndbm.c │ │ │ │ │ ├── page.h │ │ │ │ │ └── search.h │ │ │ │ ├── man │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── mpool │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README │ │ │ │ │ ├── mpool.c │ │ │ │ │ └── mpool.libtp │ │ │ │ ├── recno │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── extern.h │ │ │ │ │ ├── rec_close.c │ │ │ │ │ ├── rec_delete.c │ │ │ │ │ ├── rec_get.c │ │ │ │ │ ├── rec_open.c │ │ │ │ │ ├── rec_put.c │ │ │ │ │ ├── rec_search.c │ │ │ │ │ ├── rec_seq.c │ │ │ │ │ ├── rec_utils.c │ │ │ │ │ └── recno.h │ │ │ │ └── test │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── btree.tests │ │ │ │ │ └── main.c │ │ │ │ │ ├── dbtest.c │ │ │ │ │ ├── hash.tests │ │ │ │ │ ├── driver2.c │ │ │ │ │ ├── makedb.sh │ │ │ │ │ ├── tcreat3.c │ │ │ │ │ ├── tdel.c │ │ │ │ │ ├── testit │ │ │ │ │ ├── thash4.c │ │ │ │ │ ├── tread2.c │ │ │ │ │ ├── tseq.c │ │ │ │ │ └── tverify.c │ │ │ │ │ └── run.test │ │ │ ├── gen │ │ │ │ ├── Makefile.inc │ │ │ │ ├── _rand48.c │ │ │ │ ├── _spinlock_stub.c │ │ │ │ ├── alarm.c │ │ │ │ ├── arc4random.c │ │ │ │ ├── assert.c │ │ │ │ ├── clock.c │ │ │ │ ├── closedir.c │ │ │ │ ├── confstr.c │ │ │ │ ├── crypt.c │ │ │ │ ├── ctermid.c │ │ │ │ ├── daemon.c │ │ │ │ ├── devname.c │ │ │ │ ├── disklabel.c │ │ │ │ ├── dlfcn.c │ │ │ │ ├── drand48.c │ │ │ │ ├── erand48.c │ │ │ │ ├── err.c │ │ │ │ ├── errlst.c │ │ │ │ ├── exec.c │ │ │ │ ├── fnmatch.c │ │ │ │ ├── fstab.c │ │ │ │ ├── ftok.c │ │ │ │ ├── fts.c │ │ │ │ ├── getbootfile.c │ │ │ │ ├── getbsize.c │ │ │ │ ├── getcap.c │ │ │ │ ├── getcwd.c │ │ │ │ ├── getdomainname.c │ │ │ │ ├── getgrent.c │ │ │ │ ├── getgrouplist.c │ │ │ │ ├── gethostname.c │ │ │ │ ├── getloadavg.c │ │ │ │ ├── getlogin.c │ │ │ │ ├── getmntinfo.c │ │ │ │ ├── getnetgrent.c │ │ │ │ ├── getobjformat.c │ │ │ │ ├── getosreldate.c │ │ │ │ ├── getpagesize.c │ │ │ │ ├── getpass.c │ │ │ │ ├── getpwent.c │ │ │ │ ├── getttyent.c │ │ │ │ ├── getusershell.c │ │ │ │ ├── getvfsbyname.c │ │ │ │ ├── getvfsent.c │ │ │ │ ├── glob.c │ │ │ │ ├── initgroups.c │ │ │ │ ├── isatty.c │ │ │ │ ├── jrand48.c │ │ │ │ ├── lcong48.c │ │ │ │ ├── lockf.c │ │ │ │ ├── lrand48.c │ │ │ │ ├── mrand48.c │ │ │ │ ├── msgctl.c │ │ │ │ ├── msgget.c │ │ │ │ ├── msgrcv.c │ │ │ │ ├── msgsnd.c │ │ │ │ ├── nice.c │ │ │ │ ├── nlist.c │ │ │ │ ├── nrand48.c │ │ │ │ ├── ntp_gettime.c │ │ │ │ ├── opendir.c │ │ │ │ ├── pause.c │ │ │ │ ├── popen.c │ │ │ │ ├── psignal.c │ │ │ │ ├── pwcache.c │ │ │ │ ├── raise.c │ │ │ │ ├── rand48.h │ │ │ │ ├── readdir.c │ │ │ │ ├── rewinddir.c │ │ │ │ ├── scandir.c │ │ │ │ ├── seed48.c │ │ │ │ ├── seekdir.c │ │ │ │ ├── semconfig.c │ │ │ │ ├── semctl.c │ │ │ │ ├── semget.c │ │ │ │ ├── semop.c │ │ │ │ ├── setdomainname.c │ │ │ │ ├── sethostname.c │ │ │ │ ├── setjmperr.c │ │ │ │ ├── setmode.c │ │ │ │ ├── shmat.c │ │ │ │ ├── shmctl.c │ │ │ │ ├── shmdt.c │ │ │ │ ├── shmget.c │ │ │ │ ├── siginterrupt.c │ │ │ │ ├── siglist.c │ │ │ │ ├── signal.c │ │ │ │ ├── sigsetops.c │ │ │ │ ├── sleep.c │ │ │ │ ├── srand48.c │ │ │ │ ├── stringlist.c │ │ │ │ ├── sysconf.c │ │ │ │ ├── sysctl.c │ │ │ │ ├── sysctlbyname.c │ │ │ │ ├── syslog.c │ │ │ │ ├── tcgetattr.c │ │ │ │ ├── telldir.c │ │ │ │ ├── termios.c │ │ │ │ ├── time.c │ │ │ │ ├── times.c │ │ │ │ ├── timezone.c │ │ │ │ ├── ttyname.c │ │ │ │ ├── ttyslot.c │ │ │ │ ├── ualarm.c │ │ │ │ ├── uname.c │ │ │ │ ├── unvis.c │ │ │ │ ├── usleep.c │ │ │ │ ├── utime.c │ │ │ │ ├── valloc.c │ │ │ │ ├── vis.c │ │ │ │ ├── wait.c │ │ │ │ ├── wait3.c │ │ │ │ └── waitpid.c │ │ │ ├── gmon │ │ │ │ ├── Makefile.inc │ │ │ │ ├── gmon.c │ │ │ │ └── mcount.c │ │ │ ├── i386 │ │ │ │ ├── DEFS.h │ │ │ │ ├── SYS.h │ │ │ │ ├── gen │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── _setjmp.S │ │ │ │ │ ├── fabs.S │ │ │ │ │ ├── frexp.c │ │ │ │ │ ├── infinity.c │ │ │ │ │ ├── isinf.c │ │ │ │ │ ├── ldexp.c │ │ │ │ │ ├── modf.S │ │ │ │ │ ├── setjmp.S │ │ │ │ │ └── sigsetjmp.S │ │ │ │ ├── net │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── htonl.S │ │ │ │ │ ├── htons.S │ │ │ │ │ ├── ntohl.S │ │ │ │ │ └── ntohs.S │ │ │ │ ├── stdlib │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── abs.S │ │ │ │ │ ├── div.S │ │ │ │ │ ├── labs.S │ │ │ │ │ └── ldiv.S │ │ │ │ ├── string │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── bcmp.S │ │ │ │ │ ├── bcopy.S │ │ │ │ │ ├── bzero.S │ │ │ │ │ ├── ffs.S │ │ │ │ │ ├── index.S │ │ │ │ │ ├── memchr.S │ │ │ │ │ ├── memcmp.S │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memmove.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── rindex.S │ │ │ │ │ ├── strcat.S │ │ │ │ │ ├── strchr.S │ │ │ │ │ ├── strcmp.S │ │ │ │ │ ├── strcpy.S │ │ │ │ │ ├── strlen.S │ │ │ │ │ ├── strncmp.S │ │ │ │ │ ├── strrchr.S │ │ │ │ │ └── swab.S │ │ │ │ └── sys │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── Ovfork.S │ │ │ │ │ ├── brk.S │ │ │ │ │ ├── cerror.S │ │ │ │ │ ├── exect.S │ │ │ │ │ ├── fork.S │ │ │ │ │ ├── i386_get_ioperm.c │ │ │ │ │ ├── i386_get_ldt.c │ │ │ │ │ ├── i386_set_ioperm.c │ │ │ │ │ ├── i386_set_ldt.c │ │ │ │ │ ├── i386_vm86.c │ │ │ │ │ ├── pipe.S │ │ │ │ │ ├── ptrace.S │ │ │ │ │ ├── reboot.S │ │ │ │ │ ├── rfork.S │ │ │ │ │ ├── sbrk.S │ │ │ │ │ ├── setlogin.S │ │ │ │ │ ├── sigpending.S │ │ │ │ │ ├── sigprocmask.S │ │ │ │ │ ├── sigreturn.S │ │ │ │ │ ├── sigsuspend.S │ │ │ │ │ └── syscall.S │ │ │ ├── include │ │ │ │ ├── libc_private.h │ │ │ │ └── spinlock.h │ │ │ ├── locale │ │ │ │ ├── Makefile.inc │ │ │ │ ├── ansi.c │ │ │ │ ├── big5.c │ │ │ │ ├── collate.c │ │ │ │ ├── collate.h │ │ │ │ ├── collcmp.c │ │ │ │ ├── euc.c │ │ │ │ ├── frune.c │ │ │ │ ├── isctype.c │ │ │ │ ├── lconv.c │ │ │ │ ├── localeconv.c │ │ │ │ ├── mbrune.c │ │ │ │ ├── mskanji.c │ │ │ │ ├── nomacros.c │ │ │ │ ├── none.c │ │ │ │ ├── rune.c │ │ │ │ ├── runetype.c │ │ │ │ ├── setinvalidrune.c │ │ │ │ ├── setlocale.c │ │ │ │ ├── setlocale.h │ │ │ │ ├── setrunelocale.c │ │ │ │ ├── table.c │ │ │ │ ├── tolower.c │ │ │ │ ├── toupper.c │ │ │ │ └── utf2.c │ │ │ ├── net │ │ │ │ ├── Makefile.inc │ │ │ │ ├── addr2ascii.c │ │ │ │ ├── ascii2addr.c │ │ │ │ ├── base64.c │ │ │ │ ├── ether_addr.c │ │ │ │ ├── gethostbydns.c │ │ │ │ ├── gethostbyht.c │ │ │ │ ├── gethostbynis.c │ │ │ │ ├── gethostnamadr.c │ │ │ │ ├── getnetbydns.c │ │ │ │ ├── getnetbyht.c │ │ │ │ ├── getnetbynis.c │ │ │ │ ├── getnetnamadr.c │ │ │ │ ├── getproto.c │ │ │ │ ├── getprotoent.c │ │ │ │ ├── getprotoname.c │ │ │ │ ├── getservbyname.c │ │ │ │ ├── getservbyport.c │ │ │ │ ├── getservent.c │ │ │ │ ├── herror.c │ │ │ │ ├── inet_addr.c │ │ │ │ ├── inet_lnaof.c │ │ │ │ ├── inet_makeaddr.c │ │ │ │ ├── inet_net_ntop.c │ │ │ │ ├── inet_net_pton.c │ │ │ │ ├── inet_neta.c │ │ │ │ ├── inet_netof.c │ │ │ │ ├── inet_network.c │ │ │ │ ├── inet_ntoa.c │ │ │ │ ├── inet_ntop.c │ │ │ │ ├── inet_pton.c │ │ │ │ ├── iso_addr.c │ │ │ │ ├── linkaddr.c │ │ │ │ ├── map_v4v6.c │ │ │ │ ├── ns_addr.c │ │ │ │ ├── ns_name.c │ │ │ │ ├── ns_netint.c │ │ │ │ ├── ns_ntoa.c │ │ │ │ ├── ns_parse.c │ │ │ │ ├── ns_print.c │ │ │ │ ├── ns_ttl.c │ │ │ │ ├── nsap_addr.c │ │ │ │ ├── rcmd.c │ │ │ │ ├── recv.c │ │ │ │ ├── res_comp.c │ │ │ │ ├── res_config.h │ │ │ │ ├── res_data.c │ │ │ │ ├── res_debug.c │ │ │ │ ├── res_init.c │ │ │ │ ├── res_mkquery.c │ │ │ │ ├── res_mkupdate.c │ │ │ │ ├── res_query.c │ │ │ │ ├── res_send.c │ │ │ │ ├── res_update.c │ │ │ │ └── send.c │ │ │ ├── nls │ │ │ │ ├── Makefile.inc │ │ │ │ ├── catclose.c │ │ │ │ ├── catgets.c │ │ │ │ ├── catopen.c │ │ │ │ ├── msgcat.c │ │ │ │ └── msgcat.h │ │ │ ├── quad │ │ │ │ ├── Makefile.inc │ │ │ │ ├── TESTS │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── divrem.c │ │ │ │ │ └── mul.c │ │ │ │ ├── adddi3.c │ │ │ │ ├── anddi3.c │ │ │ │ ├── ashldi3.c │ │ │ │ ├── ashrdi3.c │ │ │ │ ├── cmpdi2.c │ │ │ │ ├── divdi3.c │ │ │ │ ├── fixdfdi.c │ │ │ │ ├── fixsfdi.c │ │ │ │ ├── fixunsdfdi.c │ │ │ │ ├── fixunssfdi.c │ │ │ │ ├── floatdidf.c │ │ │ │ ├── floatdisf.c │ │ │ │ ├── floatunsdidf.c │ │ │ │ ├── iordi3.c │ │ │ │ ├── lshldi3.c │ │ │ │ ├── lshrdi3.c │ │ │ │ ├── moddi3.c │ │ │ │ ├── muldi3.c │ │ │ │ ├── negdi2.c │ │ │ │ ├── notdi2.c │ │ │ │ ├── qdivrem.c │ │ │ │ ├── quad.h │ │ │ │ ├── subdi3.c │ │ │ │ ├── ucmpdi2.c │ │ │ │ ├── udivdi3.c │ │ │ │ ├── umoddi3.c │ │ │ │ └── xordi3.c │ │ │ ├── regex │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── Makefile.inc │ │ │ │ ├── WHATSNEW │ │ │ │ ├── cclass.h │ │ │ │ ├── cname.h │ │ │ │ ├── engine.c │ │ │ │ ├── regcomp.c │ │ │ │ ├── regerror.c │ │ │ │ ├── regex2.h │ │ │ │ ├── regexec.c │ │ │ │ ├── regfree.c │ │ │ │ └── utils.h │ │ │ ├── rpc │ │ │ │ ├── DISCLAIMER │ │ │ │ ├── Makefile.inc │ │ │ │ ├── PSD.doc │ │ │ │ │ ├── nfs.rfc.ms │ │ │ │ │ ├── rpc.prog.ms │ │ │ │ │ ├── rpc.rfc.ms │ │ │ │ │ ├── rpcgen.ms │ │ │ │ │ ├── xdr.nts.ms │ │ │ │ │ └── xdr.rfc.ms │ │ │ │ ├── README │ │ │ │ ├── auth_des.c │ │ │ │ ├── auth_none.c │ │ │ │ ├── auth_time.c │ │ │ │ ├── auth_unix.c │ │ │ │ ├── authdes_prot.c │ │ │ │ ├── authunix_prot.c │ │ │ │ ├── bindresvport.c │ │ │ │ ├── clnt_generic.c │ │ │ │ ├── clnt_perror.c │ │ │ │ ├── clnt_raw.c │ │ │ │ ├── clnt_simple.c │ │ │ │ ├── clnt_tcp.c │ │ │ │ ├── clnt_udp.c │ │ │ │ ├── clnt_unix.c │ │ │ │ ├── crypt_client.c │ │ │ │ ├── des_crypt.c │ │ │ │ ├── des_soft.c │ │ │ │ ├── get_myaddress.c │ │ │ │ ├── getpublickey.c │ │ │ │ ├── getrpcent.c │ │ │ │ ├── getrpcport.c │ │ │ │ ├── key_call.c │ │ │ │ ├── key_prot_xdr.c │ │ │ │ ├── netname.c │ │ │ │ ├── netnamer.c │ │ │ │ ├── pmap_clnt.c │ │ │ │ ├── pmap_getmaps.c │ │ │ │ ├── pmap_getport.c │ │ │ │ ├── pmap_prot.c │ │ │ │ ├── pmap_prot2.c │ │ │ │ ├── pmap_rmt.c │ │ │ │ ├── rpc_callmsg.c │ │ │ │ ├── rpc_commondata.c │ │ │ │ ├── rpc_dtablesize.c │ │ │ │ ├── rpc_prot.c │ │ │ │ ├── rpcdname.c │ │ │ │ ├── rtime.c │ │ │ │ ├── svc.c │ │ │ │ ├── svc_auth.c │ │ │ │ ├── svc_auth_des.c │ │ │ │ ├── svc_auth_unix.c │ │ │ │ ├── svc_raw.c │ │ │ │ ├── svc_run.c │ │ │ │ ├── svc_simple.c │ │ │ │ ├── svc_tcp.c │ │ │ │ ├── svc_udp.c │ │ │ │ └── svc_unix.c │ │ │ ├── stdio │ │ │ │ ├── Makefile.inc │ │ │ │ ├── _flock_stub.c │ │ │ │ ├── asprintf.c │ │ │ │ ├── clrerr.c │ │ │ │ ├── fclose.c │ │ │ │ ├── fdopen.c │ │ │ │ ├── feof.c │ │ │ │ ├── ferror.c │ │ │ │ ├── fflush.c │ │ │ │ ├── fgetc.c │ │ │ │ ├── fgetln.c │ │ │ │ ├── fgetpos.c │ │ │ │ ├── fgets.c │ │ │ │ ├── fileno.c │ │ │ │ ├── findfp.c │ │ │ │ ├── flags.c │ │ │ │ ├── floatio.h │ │ │ │ ├── fopen.c │ │ │ │ ├── fprintf.c │ │ │ │ ├── fpurge.c │ │ │ │ ├── fputc.c │ │ │ │ ├── fputs.c │ │ │ │ ├── fread.c │ │ │ │ ├── freopen.c │ │ │ │ ├── fscanf.c │ │ │ │ ├── fseek.c │ │ │ │ ├── fsetpos.c │ │ │ │ ├── ftell.c │ │ │ │ ├── funopen.c │ │ │ │ ├── fvwrite.c │ │ │ │ ├── fvwrite.h │ │ │ │ ├── fwalk.c │ │ │ │ ├── fwrite.c │ │ │ │ ├── getc.c │ │ │ │ ├── getchar.c │ │ │ │ ├── gets.c │ │ │ │ ├── getw.c │ │ │ │ ├── glue.h │ │ │ │ ├── local.h │ │ │ │ ├── makebuf.c │ │ │ │ ├── mktemp.c │ │ │ │ ├── perror.c │ │ │ │ ├── printf.c │ │ │ │ ├── putc.c │ │ │ │ ├── putchar.c │ │ │ │ ├── puts.c │ │ │ │ ├── putw.c │ │ │ │ ├── refill.c │ │ │ │ ├── remove.c │ │ │ │ ├── rewind.c │ │ │ │ ├── rget.c │ │ │ │ ├── scanf.c │ │ │ │ ├── setbuf.c │ │ │ │ ├── setbuffer.c │ │ │ │ ├── setvbuf.c │ │ │ │ ├── snprintf.c │ │ │ │ ├── sprintf.c │ │ │ │ ├── sscanf.c │ │ │ │ ├── stdio.c │ │ │ │ ├── tempnam.c │ │ │ │ ├── tmpfile.c │ │ │ │ ├── tmpnam.c │ │ │ │ ├── ungetc.c │ │ │ │ ├── vasprintf.c │ │ │ │ ├── vfprintf.c │ │ │ │ ├── vfscanf.c │ │ │ │ ├── vprintf.c │ │ │ │ ├── vscanf.c │ │ │ │ ├── vsnprintf.c │ │ │ │ ├── vsprintf.c │ │ │ │ ├── vsscanf.c │ │ │ │ ├── wbuf.c │ │ │ │ └── wsetup.c │ │ │ ├── stdlib │ │ │ │ ├── Makefile.inc │ │ │ │ ├── abort.c │ │ │ │ ├── abs.c │ │ │ │ ├── atexit.c │ │ │ │ ├── atexit.h │ │ │ │ ├── atof.c │ │ │ │ ├── atoi.c │ │ │ │ ├── atol.c │ │ │ │ ├── bsearch.c │ │ │ │ ├── calloc.c │ │ │ │ ├── div.c │ │ │ │ ├── exit.c │ │ │ │ ├── getenv.c │ │ │ │ ├── getopt.c │ │ │ │ ├── getsubopt.c │ │ │ │ ├── heapsort.c │ │ │ │ ├── labs.c │ │ │ │ ├── ldiv.c │ │ │ │ ├── malloc.c │ │ │ │ ├── merge.c │ │ │ │ ├── netbsd_strtod.c │ │ │ │ ├── putenv.c │ │ │ │ ├── qsort.c │ │ │ │ ├── radixsort.c │ │ │ │ ├── rand.c │ │ │ │ ├── random.c │ │ │ │ ├── reallocf.c │ │ │ │ ├── realpath.c │ │ │ │ ├── setenv.c │ │ │ │ ├── strhash.c │ │ │ │ ├── strtod.c │ │ │ │ ├── strtol.c │ │ │ │ ├── strtoq.c │ │ │ │ ├── strtoul.c │ │ │ │ ├── strtouq.c │ │ │ │ └── system.c │ │ │ ├── stdtime │ │ │ │ ├── Makefile.inc │ │ │ │ ├── asctime.c │ │ │ │ ├── difftime.c │ │ │ │ ├── localtime.c │ │ │ │ ├── private.h │ │ │ │ ├── strftime.c │ │ │ │ ├── strptime.c │ │ │ │ ├── timelocal.c │ │ │ │ ├── timelocal.h │ │ │ │ └── tzfile.h │ │ │ ├── string │ │ │ │ ├── Makefile.inc │ │ │ │ ├── bcmp.c │ │ │ │ ├── bcopy.c │ │ │ │ ├── bzero.c │ │ │ │ ├── ffs.c │ │ │ │ ├── index.c │ │ │ │ ├── memccpy.c │ │ │ │ ├── memchr.c │ │ │ │ ├── memcmp.c │ │ │ │ ├── memcpy.c │ │ │ │ ├── memmove.c │ │ │ │ ├── memset.c │ │ │ │ ├── rindex.c │ │ │ │ ├── strcasecmp.c │ │ │ │ ├── strcat.c │ │ │ │ ├── strchr.c │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcoll.c │ │ │ │ ├── strcpy.c │ │ │ │ ├── strcspn.c │ │ │ │ ├── strdup.c │ │ │ │ ├── strerror.c │ │ │ │ ├── strlen.c │ │ │ │ ├── strmode.c │ │ │ │ ├── strncat.c │ │ │ │ ├── strncmp.c │ │ │ │ ├── strncpy.c │ │ │ │ ├── strpbrk.c │ │ │ │ ├── strrchr.c │ │ │ │ ├── strsep.c │ │ │ │ ├── strspn.c │ │ │ │ ├── strstr.c │ │ │ │ ├── strtok.c │ │ │ │ ├── strxfrm.c │ │ │ │ └── swab.c │ │ │ ├── sys │ │ │ │ ├── Makefile.inc │ │ │ │ ├── __error.c │ │ │ │ ├── ftruncate.c │ │ │ │ ├── lseek.c │ │ │ │ ├── mmap.c │ │ │ │ ├── pread.c │ │ │ │ ├── pwrite.c │ │ │ │ └── truncate.c │ │ │ ├── xdr │ │ │ │ ├── Makefile.inc │ │ │ │ ├── xdr.c │ │ │ │ ├── xdr_array.c │ │ │ │ ├── xdr_float.c │ │ │ │ ├── xdr_mem.c │ │ │ │ ├── xdr_rec.c │ │ │ │ ├── xdr_reference.c │ │ │ │ ├── xdr_sizeof.c │ │ │ │ └── xdr_stdio.c │ │ │ └── yp │ │ │ │ ├── Makefile.inc │ │ │ │ ├── xdryp.c │ │ │ │ └── yplib.c │ │ └── msun │ │ │ ├── Makefile │ │ │ ├── i387 │ │ │ ├── e_acos.S │ │ │ ├── e_asin.S │ │ │ ├── e_atan2.S │ │ │ ├── e_exp.S │ │ │ ├── e_fmod.S │ │ │ ├── e_log.S │ │ │ ├── e_log10.S │ │ │ ├── e_remainder.S │ │ │ ├── e_scalb.S │ │ │ ├── e_sqrt.S │ │ │ ├── s_atan.S │ │ │ ├── s_ceil.S │ │ │ ├── s_copysign.S │ │ │ ├── s_cos.S │ │ │ ├── s_finite.S │ │ │ ├── s_floor.S │ │ │ ├── s_ilogb.S │ │ │ ├── s_log1p.S │ │ │ ├── s_logb.S │ │ │ ├── s_rint.S │ │ │ ├── s_scalbn.S │ │ │ ├── s_significand.S │ │ │ ├── s_sin.S │ │ │ └── s_tan.S │ │ │ └── src │ │ │ ├── e_acos.c │ │ │ ├── e_acosf.c │ │ │ ├── e_acosh.c │ │ │ ├── e_acoshf.c │ │ │ ├── e_asin.c │ │ │ ├── e_asinf.c │ │ │ ├── e_atan2.c │ │ │ ├── e_atan2f.c │ │ │ ├── e_atanh.c │ │ │ ├── e_atanhf.c │ │ │ ├── e_cosh.c │ │ │ ├── e_coshf.c │ │ │ ├── e_exp.c │ │ │ ├── e_expf.c │ │ │ ├── e_fmod.c │ │ │ ├── e_fmodf.c │ │ │ ├── e_gamma.c │ │ │ ├── e_gamma_r.c │ │ │ ├── e_gammaf.c │ │ │ ├── e_gammaf_r.c │ │ │ ├── e_hypot.c │ │ │ ├── e_hypotf.c │ │ │ ├── e_j0.c │ │ │ ├── e_j0f.c │ │ │ ├── e_j1.c │ │ │ ├── e_j1f.c │ │ │ ├── e_jn.c │ │ │ ├── e_jnf.c │ │ │ ├── e_lgamma.c │ │ │ ├── e_lgamma_r.c │ │ │ ├── e_lgammaf.c │ │ │ ├── e_lgammaf_r.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_log10f.c │ │ │ ├── e_logf.c │ │ │ ├── e_pow.c │ │ │ ├── e_powf.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_rem_pio2f.c │ │ │ ├── e_remainder.c │ │ │ ├── e_remainderf.c │ │ │ ├── e_scalb.c │ │ │ ├── e_scalbf.c │ │ │ ├── e_sinh.c │ │ │ ├── e_sinhf.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── get_hw_float.c │ │ │ ├── k_cos.c │ │ │ ├── k_cosf.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_rem_pio2f.c │ │ │ ├── k_sin.c │ │ │ ├── k_sinf.c │ │ │ ├── k_standard.c │ │ │ ├── k_tan.c │ │ │ ├── k_tanf.c │ │ │ ├── math.h │ │ │ ├── math_private.h │ │ │ ├── s_asinh.c │ │ │ ├── s_asinhf.c │ │ │ ├── s_atan.c │ │ │ ├── s_atanf.c │ │ │ ├── s_cbrt.c │ │ │ ├── s_cbrtf.c │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_copysign.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_cos.c │ │ │ ├── s_cosf.c │ │ │ ├── s_erf.c │ │ │ ├── s_erff.c │ │ │ ├── s_expm1.c │ │ │ ├── s_expm1f.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_finite.c │ │ │ ├── s_finitef.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_frexp.c │ │ │ ├── s_frexpf.c │ │ │ ├── s_ilogb.c │ │ │ ├── s_ilogbf.c │ │ │ ├── s_isnan.c │ │ │ ├── s_isnanf.c │ │ │ ├── s_ldexp.c │ │ │ ├── s_ldexpf.c │ │ │ ├── s_lib_version.c │ │ │ ├── s_log1p.c │ │ │ ├── s_log1pf.c │ │ │ ├── s_logb.c │ │ │ ├── s_logbf.c │ │ │ ├── s_matherr.c │ │ │ ├── s_modf.c │ │ │ ├── s_modff.c │ │ │ ├── s_nextafter.c │ │ │ ├── s_nextafterf.c │ │ │ ├── s_rint.c │ │ │ ├── s_rintf.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_scalbnf.c │ │ │ ├── s_signgam.c │ │ │ ├── s_significand.c │ │ │ ├── s_significandf.c │ │ │ ├── s_sin.c │ │ │ ├── s_sinf.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanf.c │ │ │ ├── s_tanh.c │ │ │ ├── s_tanhf.c │ │ │ ├── w_acos.c │ │ │ ├── w_acosf.c │ │ │ ├── w_acosh.c │ │ │ ├── w_acoshf.c │ │ │ ├── w_asin.c │ │ │ ├── w_asinf.c │ │ │ ├── w_atan2.c │ │ │ ├── w_atan2f.c │ │ │ ├── w_atanh.c │ │ │ ├── w_atanhf.c │ │ │ ├── w_cabs.c │ │ │ ├── w_cabsf.c │ │ │ ├── w_cosh.c │ │ │ ├── w_coshf.c │ │ │ ├── w_drem.c │ │ │ ├── w_dremf.c │ │ │ ├── w_exp.c │ │ │ ├── w_expf.c │ │ │ ├── w_fmod.c │ │ │ ├── w_fmodf.c │ │ │ ├── w_gamma.c │ │ │ ├── w_gamma_r.c │ │ │ ├── w_gammaf.c │ │ │ ├── w_gammaf_r.c │ │ │ ├── w_hypot.c │ │ │ ├── w_hypotf.c │ │ │ ├── w_j0.c │ │ │ ├── w_j0f.c │ │ │ ├── w_j1.c │ │ │ ├── w_j1f.c │ │ │ ├── w_jn.c │ │ │ ├── w_jnf.c │ │ │ ├── w_lgamma.c │ │ │ ├── w_lgamma_r.c │ │ │ ├── w_lgammaf.c │ │ │ ├── w_lgammaf_r.c │ │ │ ├── w_log.c │ │ │ ├── w_log10.c │ │ │ ├── w_log10f.c │ │ │ ├── w_logf.c │ │ │ ├── w_pow.c │ │ │ ├── w_powf.c │ │ │ ├── w_remainder.c │ │ │ ├── w_remainderf.c │ │ │ ├── w_scalb.c │ │ │ ├── w_scalbf.c │ │ │ ├── w_sinh.c │ │ │ ├── w_sinhf.c │ │ │ ├── w_sqrt.c │ │ │ ├── w_sqrtf.c │ │ │ ├── w_y0.c │ │ │ ├── w_y0f.c │ │ │ ├── w_y1.c │ │ │ ├── w_y1f.c │ │ │ ├── w_yn.c │ │ │ └── w_ynf.c │ │ └── sys │ │ ├── cam │ │ ├── cam.c │ │ ├── cam.h │ │ ├── cam_ccb.h │ │ ├── cam_conf.h │ │ ├── cam_debug.h │ │ ├── cam_extend.c │ │ ├── cam_extend.h │ │ ├── cam_periph.c │ │ ├── cam_periph.h │ │ ├── cam_queue.c │ │ ├── cam_queue.h │ │ ├── cam_sim.c │ │ ├── cam_sim.h │ │ ├── cam_xpt.c │ │ ├── cam_xpt.h │ │ ├── cam_xpt_periph.h │ │ ├── cam_xpt_sim.h │ │ └── scsi │ │ │ ├── scsi_all.c │ │ │ ├── scsi_all.h │ │ │ ├── scsi_cd.c │ │ │ ├── scsi_cd.h │ │ │ ├── scsi_ch.c │ │ │ ├── scsi_ch.h │ │ │ ├── scsi_da.c │ │ │ ├── scsi_da.h │ │ │ ├── scsi_message.h │ │ │ ├── scsi_pass.c │ │ │ ├── scsi_pass.h │ │ │ ├── scsi_pt.c │ │ │ ├── scsi_pt.h │ │ │ ├── scsi_sa.c │ │ │ ├── scsi_sa.h │ │ │ ├── scsi_targ_bh.c │ │ │ ├── scsi_target.c │ │ │ └── scsi_targetio.h │ │ ├── conf │ │ └── newvers.sh │ │ ├── dev │ │ ├── advansys │ │ │ ├── advansys.c │ │ │ ├── advansys.h │ │ │ ├── advlib.c │ │ │ ├── advlib.h │ │ │ ├── advmcode.c │ │ │ ├── advmcode.h │ │ │ ├── adwcam.c │ │ │ ├── adwlib.c │ │ │ ├── adwlib.h │ │ │ ├── adwmcode.c │ │ │ ├── adwmcode.h │ │ │ └── adwvar.h │ │ ├── aha │ │ │ ├── aha.c │ │ │ └── ahareg.h │ │ ├── aic7xxx │ │ │ ├── 93cx6.c │ │ │ ├── 93cx6.h │ │ │ ├── Makefile │ │ │ ├── aic7xxx.c │ │ │ ├── aic7xxx.h │ │ │ ├── aic7xxx.reg │ │ │ ├── aic7xxx.seq │ │ │ ├── aicasm.c │ │ │ ├── aicasm.h │ │ │ ├── aicasm_gram.y │ │ │ ├── aicasm_scan.l │ │ │ ├── aicasm_symbol.c │ │ │ ├── aicasm_symbol.h │ │ │ └── sequencer.h │ │ ├── buslogic │ │ │ ├── bt.c │ │ │ └── btreg.h │ │ ├── ccd │ │ │ └── ccd.c │ │ ├── dec │ │ │ ├── mc146818reg.h │ │ │ ├── mcclock.c │ │ │ ├── mcclock_if.m │ │ │ └── mcclockvar.h │ │ ├── dpt │ │ │ ├── dpt.h │ │ │ ├── dpt_control.c │ │ │ └── dpt_scsi.c │ │ ├── en │ │ │ ├── midway.c │ │ │ ├── midwayreg.h │ │ │ └── midwayvar.h │ │ ├── fb │ │ │ ├── fb.c │ │ │ ├── fbreg.h │ │ │ ├── splash.c │ │ │ ├── splashreg.h │ │ │ └── vgareg.h │ │ ├── hea │ │ │ ├── eni.c │ │ │ ├── eni.h │ │ │ ├── eni_buffer.c │ │ │ ├── eni_globals.c │ │ │ ├── eni_if.c │ │ │ ├── eni_init.c │ │ │ ├── eni_intr.c │ │ │ ├── eni_receive.c │ │ │ ├── eni_stats.h │ │ │ ├── eni_suni.h │ │ │ ├── eni_transmit.c │ │ │ ├── eni_var.h │ │ │ └── eni_vcm.c │ │ ├── hfa │ │ │ ├── fore.h │ │ │ ├── fore_aali.h │ │ │ ├── fore_buffer.c │ │ │ ├── fore_command.c │ │ │ ├── fore_globals.c │ │ │ ├── fore_if.c │ │ │ ├── fore_include.h │ │ │ ├── fore_init.c │ │ │ ├── fore_intr.c │ │ │ ├── fore_load.c │ │ │ ├── fore_output.c │ │ │ ├── fore_receive.c │ │ │ ├── fore_slave.h │ │ │ ├── fore_stats.c │ │ │ ├── fore_stats.h │ │ │ ├── fore_timer.c │ │ │ ├── fore_transmit.c │ │ │ ├── fore_var.h │ │ │ └── fore_vcm.c │ │ ├── iicbus │ │ │ ├── if_ic.c │ │ │ ├── iic.c │ │ │ ├── iicbb.c │ │ │ ├── iicbb_if.m │ │ │ ├── iicbus.c │ │ │ ├── iicbus.h │ │ │ ├── iicbus_if.m │ │ │ ├── iiconf.c │ │ │ ├── iiconf.h │ │ │ └── iicsmb.c │ │ ├── isp │ │ │ ├── asm_pci.h │ │ │ ├── asm_sbus.h │ │ │ ├── isp.c │ │ │ ├── isp_freebsd.c │ │ │ ├── isp_freebsd.h │ │ │ ├── isp_freebsd_cam.h │ │ │ ├── ispmbox.h │ │ │ ├── ispreg.h │ │ │ └── ispvar.h │ │ ├── kbd │ │ │ ├── atkbd.c │ │ │ ├── atkbdc.c │ │ │ ├── atkbdcreg.h │ │ │ ├── atkbdreg.h │ │ │ ├── kbd.c │ │ │ ├── kbdreg.h │ │ │ └── kbdtables.h │ │ ├── pci │ │ │ ├── ohci_pci.c │ │ │ └── uhci_pci.c │ │ ├── pdq │ │ │ ├── pdq.c │ │ │ ├── pdq_ifsubr.c │ │ │ ├── pdqreg.h │ │ │ └── pdqvar.h │ │ ├── ppbus │ │ │ ├── if_plip.c │ │ │ ├── immio.c │ │ │ ├── lpbb.c │ │ │ ├── lpt.c │ │ │ ├── lpt.h │ │ │ ├── nlpt.c │ │ │ ├── nlpt.h │ │ │ ├── ppb_1284.c │ │ │ ├── ppb_1284.h │ │ │ ├── ppb_base.c │ │ │ ├── ppb_msq.c │ │ │ ├── ppb_msq.h │ │ │ ├── ppbconf.c │ │ │ ├── ppbconf.h │ │ │ ├── ppi.c │ │ │ ├── ppi.h │ │ │ ├── pps.c │ │ │ ├── vpo.c │ │ │ ├── vpoio.c │ │ │ └── vpoio.h │ │ ├── smbus │ │ │ ├── smb.c │ │ │ ├── smbconf.c │ │ │ ├── smbconf.h │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ └── smbus_if.m │ │ ├── syscons │ │ │ ├── scvesactl.c │ │ │ ├── scvidctl.c │ │ │ ├── syscons.c │ │ │ └── syscons.h │ │ ├── usb │ │ │ ├── hid.c │ │ │ ├── hid.h │ │ │ ├── ohci.c │ │ │ ├── ohcireg.h │ │ │ ├── ohcivar.h │ │ │ ├── ucom.c │ │ │ ├── ugen.c │ │ │ ├── uhci.c │ │ │ ├── uhcireg.h │ │ │ ├── uhcivar.h │ │ │ ├── uhid.c │ │ │ ├── uhub.c │ │ │ ├── ukbd.c │ │ │ ├── ulpt.c │ │ │ ├── umodem.c │ │ │ ├── ums.c │ │ │ ├── usb.c │ │ │ ├── usb.h │ │ │ ├── usb_if.m │ │ │ ├── usb_mem.h │ │ │ ├── usb_port.h │ │ │ ├── usb_quirks.c │ │ │ ├── usb_quirks.h │ │ │ ├── usb_subr.c │ │ │ ├── usbcdc.h │ │ │ ├── usbdevs.h │ │ │ ├── usbdevs_data.h │ │ │ ├── usbdi.c │ │ │ ├── usbdi.h │ │ │ ├── usbdi_util.c │ │ │ ├── usbdi_util.h │ │ │ ├── usbdivar.h │ │ │ └── usbhid.h │ │ ├── vinum │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ ├── makestatetext │ │ │ ├── request.h │ │ │ ├── statetexts.h │ │ │ ├── vinum.c │ │ │ ├── vinumconfig.c │ │ │ ├── vinumdaemon.c │ │ │ ├── vinumext.h │ │ │ ├── vinumhdr.h │ │ │ ├── vinuminterrupt.c │ │ │ ├── vinumio.c │ │ │ ├── vinumio.h │ │ │ ├── vinumioctl.c │ │ │ ├── vinumkw.h │ │ │ ├── vinumlock.c │ │ │ ├── vinummemory.c │ │ │ ├── vinumparser.c │ │ │ ├── vinumrequest.c │ │ │ ├── vinumrevive.c │ │ │ ├── vinumstate.c │ │ │ ├── vinumstate.h │ │ │ ├── vinumutil.c │ │ │ └── vinumvar.h │ │ ├── vn │ │ │ └── vn.c │ │ └── vx │ │ │ ├── if_vx.c │ │ │ └── if_vxreg.h │ │ ├── i386 │ │ ├── eisa │ │ │ ├── 3c5x9.c │ │ │ ├── adv_eisa.c │ │ │ ├── ahb.c │ │ │ ├── ahbreg.h │ │ │ ├── ahc_eisa.c │ │ │ ├── bt_eisa.c │ │ │ ├── dpt_eisa.c │ │ │ ├── dpt_eisa.h │ │ │ ├── eisaconf.c │ │ │ ├── eisaconf.h │ │ │ ├── if_fea.c │ │ │ └── if_vx_eisa.c │ │ ├── i386 │ │ │ ├── autoconf.c │ │ │ ├── cons.c │ │ │ └── cons.h │ │ ├── include │ │ │ ├── ansi.h │ │ │ ├── apm_bios.h │ │ │ ├── apm_segments.h │ │ │ ├── asc_ioctl.h │ │ │ ├── asm.h │ │ │ ├── asmacros.h │ │ │ ├── asnames.h │ │ │ ├── atomic.h │ │ │ ├── bootinfo.h │ │ │ ├── bus.h │ │ │ ├── bus_memio.h │ │ │ ├── bus_pio.h │ │ │ ├── cdk.h │ │ │ ├── clock.h │ │ │ ├── comstats.h │ │ │ ├── cons.h │ │ │ ├── console.h │ │ │ ├── cpu.h │ │ │ ├── cpufunc.h │ │ │ ├── cputypes.h │ │ │ ├── cronyx.h │ │ │ ├── db_machdep.h │ │ │ ├── elf.h │ │ │ ├── endian.h │ │ │ ├── exec.h │ │ │ ├── float.h │ │ │ ├── floatingpoint.h │ │ │ ├── frame.h │ │ │ ├── gsc.h │ │ │ ├── ieeefp.h │ │ │ ├── in_cksum.h │ │ │ ├── ioctl_bt848.h │ │ │ ├── ioctl_ctx.h │ │ │ ├── ioctl_fd.h │ │ │ ├── ioctl_meteor.h │ │ │ ├── ipl.h │ │ │ ├── joystick.h │ │ │ ├── limits.h │ │ │ ├── lock.h │ │ │ ├── lpt.h │ │ │ ├── md_var.h │ │ │ ├── mouse.h │ │ │ ├── mtpr.h │ │ │ ├── npx.h │ │ │ ├── param.h │ │ │ ├── pc │ │ │ │ ├── bios.h │ │ │ │ ├── display.h │ │ │ │ ├── msdos.h │ │ │ │ └── vesa.h │ │ │ ├── pcaudioio.h │ │ │ ├── pcb.h │ │ │ ├── pcvt_ioctl.h │ │ │ ├── pmap.h │ │ │ ├── proc.h │ │ │ ├── profile.h │ │ │ ├── psl.h │ │ │ ├── ptrace.h │ │ │ ├── random.h │ │ │ ├── reg.h │ │ │ ├── reloc.h │ │ │ ├── segments.h │ │ │ ├── si.h │ │ │ ├── signal.h │ │ │ ├── soundcard.h │ │ │ ├── speaker.h │ │ │ ├── specialreg.h │ │ │ ├── spigot.h │ │ │ ├── stdarg.h │ │ │ ├── sysarch.h │ │ │ ├── trap.h │ │ │ ├── tss.h │ │ │ ├── types.h │ │ │ ├── ultrasound.h │ │ │ ├── varargs.h │ │ │ └── vmparam.h │ │ └── isa │ │ │ ├── cronyx.c │ │ │ ├── cx.c │ │ │ ├── cxreg.h │ │ │ ├── cy.c │ │ │ ├── cyreg.h │ │ │ ├── ic │ │ │ ├── cd1400.h │ │ │ ├── cd180.h │ │ │ ├── i8237.h │ │ │ └── ns16550.h │ │ │ ├── icu.h │ │ │ ├── icu_ipl.h │ │ │ ├── if_cx.c │ │ │ ├── if_epreg.h │ │ │ ├── intr_machdep.h │ │ │ ├── isa.h │ │ │ ├── isa_device.h │ │ │ ├── joy.c │ │ │ ├── kbdtables.h │ │ │ ├── lpt.c │ │ │ ├── lptreg.h │ │ │ ├── mse.c │ │ │ ├── pcibus.c │ │ │ ├── pcibus.h │ │ │ ├── pnp.c │ │ │ ├── pnp.h │ │ │ ├── psm.c │ │ │ ├── random_machdep.c │ │ │ ├── rc.c │ │ │ ├── rcreg.h │ │ │ ├── si.c │ │ │ ├── sio.c │ │ │ ├── sioreg.h │ │ │ ├── sireg.h │ │ │ ├── syscons_isa.c │ │ │ ├── timerreg.h │ │ │ ├── vesa.c │ │ │ └── vga_isa.c │ │ ├── kern │ │ ├── bus_if.m │ │ ├── device_if.m │ │ ├── kern_conf.c │ │ ├── kern_intr.c │ │ ├── kern_malloc.c │ │ ├── kern_subr.c │ │ ├── kern_timeout.c │ │ ├── makedevops.pl │ │ ├── md5c.c │ │ ├── subr_scanf.c │ │ ├── subr_xxx.c │ │ ├── tty.c │ │ ├── tty_conf.c │ │ ├── tty_subr.c │ │ ├── uipc_domain.c │ │ ├── uipc_mbuf.c │ │ ├── uipc_socket.c │ │ └── uipc_socket2.c │ │ ├── libkern │ │ ├── bcd.c │ │ ├── inet_ntoa.c │ │ ├── random.c │ │ └── scanc.c │ │ ├── net │ │ ├── bpf.c │ │ ├── bpf.h │ │ ├── bpf_compat.h │ │ ├── bpf_filter.c │ │ ├── bpfdesc.h │ │ ├── ethernet.h │ │ ├── if.c │ │ ├── if.h │ │ ├── if_arp.h │ │ ├── if_disc.c │ │ ├── if_dl.h │ │ ├── if_ethersubr.c │ │ ├── if_fddisubr.c │ │ ├── if_llc.h │ │ ├── if_loop.c │ │ ├── if_media.h │ │ ├── if_mib.h │ │ ├── if_ppp.c │ │ ├── if_ppp.h │ │ ├── if_sl.c │ │ ├── if_slvar.h │ │ ├── if_sppp.h │ │ ├── if_spppsubr.c │ │ ├── if_tun.c │ │ ├── if_tun.h │ │ ├── if_types.h │ │ ├── if_var.h │ │ ├── netisr.h │ │ ├── radix.c │ │ ├── radix.h │ │ ├── raw_cb.c │ │ ├── raw_cb.h │ │ ├── raw_usrreq.c │ │ ├── route.c │ │ ├── route.h │ │ ├── rtsock.c │ │ ├── slcompress.c │ │ ├── slcompress.h │ │ └── slip.h │ │ ├── netinet │ │ ├── icmp_var.h │ │ ├── if_ether.c │ │ ├── if_ether.h │ │ ├── if_fddi.h │ │ ├── igmp.c │ │ ├── igmp.h │ │ ├── igmp_var.h │ │ ├── in.c │ │ ├── in.h │ │ ├── in_cksum.c │ │ ├── in_pcb.c │ │ ├── in_pcb.h │ │ ├── in_proto.c │ │ ├── in_rmx.c │ │ ├── in_systm.h │ │ ├── in_var.h │ │ ├── ip.h │ │ ├── ip_divert.c │ │ ├── ip_flow.c │ │ ├── ip_flow.h │ │ ├── ip_fw.c │ │ ├── ip_fw.h │ │ ├── ip_icmp.c │ │ ├── ip_icmp.h │ │ ├── ip_input.c │ │ ├── ip_mroute.c │ │ ├── ip_mroute.h │ │ ├── ip_output.c │ │ ├── ip_var.h │ │ ├── raw_ip.c │ │ ├── tcp.h │ │ ├── tcp_debug.c │ │ ├── tcp_debug.h │ │ ├── tcp_fsm.h │ │ ├── tcp_input.c │ │ ├── tcp_output.c │ │ ├── tcp_seq.h │ │ ├── tcp_subr.c │ │ ├── tcp_timer.c │ │ ├── tcp_timer.h │ │ ├── tcp_usrreq.c │ │ ├── tcp_var.h │ │ ├── tcpip.h │ │ ├── udp.h │ │ ├── udp_usrreq.c │ │ └── udp_var.h │ │ ├── netns │ │ └── ns.h │ │ ├── pccard │ │ ├── cardinfo.h │ │ ├── cis.h │ │ ├── driver.h │ │ ├── i82365.h │ │ ├── pccard.c │ │ ├── pccard_beep.c │ │ ├── pcic.c │ │ ├── pcic98reg.h │ │ ├── skel.c │ │ └── slot.h │ │ ├── pci │ │ ├── README.bt848 │ │ ├── adv_pci.c │ │ ├── adw_pci.c │ │ ├── ahc_pci.c │ │ ├── brktree_reg.h │ │ ├── brooktree848.c │ │ ├── bt848_i2c.c │ │ ├── bt848_i2c.h │ │ ├── bt_pci.c │ │ ├── cy_pci.c │ │ ├── cy_pcireg.h │ │ ├── dc21040reg.h │ │ ├── dpt_pci.c │ │ ├── dpt_pci.h │ │ ├── ide_pci.c │ │ ├── ide_pcireg.h │ │ ├── if_ax.c │ │ ├── if_axreg.h │ │ ├── if_devar.h │ │ ├── if_ed_p.c │ │ ├── if_en_pci.c │ │ ├── if_fpa.c │ │ ├── if_fxp.c │ │ ├── if_fxpreg.h │ │ ├── if_fxpvar.h │ │ ├── if_lnc_p.c │ │ ├── if_mx.c │ │ ├── if_mxreg.h │ │ ├── if_pn.c │ │ ├── if_pnreg.h │ │ ├── if_rl.c │ │ ├── if_rlreg.h │ │ ├── if_sr_p.c │ │ ├── if_tireg.h │ │ ├── if_tl.c │ │ ├── if_tlreg.h │ │ ├── if_tx.c │ │ ├── if_txvar.h │ │ ├── if_vr.c │ │ ├── if_vrreg.h │ │ ├── if_vx_pci.c │ │ ├── if_wb.c │ │ ├── if_wbreg.h │ │ ├── if_xl.c │ │ ├── if_xlreg.h │ │ ├── isp_pci.c │ │ ├── locate.pl │ │ ├── meteor.c │ │ ├── meteor_reg.h │ │ ├── ncr.c │ │ ├── ncrreg.h │ │ ├── pci.c │ │ ├── pci_compat.c │ │ ├── pci_ioctl.h │ │ ├── pcic_p.c │ │ ├── pcic_p.h │ │ ├── pcireg.h │ │ ├── pcisupport.c │ │ ├── pcivar.h │ │ ├── simos.h │ │ ├── ti_fw.h │ │ ├── ti_fw2.h │ │ ├── wdc_p.c │ │ └── xrpu.c │ │ ├── sys │ │ ├── _posix.h │ │ ├── acct.h │ │ ├── buf.h │ │ ├── bus.h │ │ ├── callout.h │ │ ├── ccdvar.h │ │ ├── cdefs.h │ │ ├── cdio.h │ │ ├── chio.h │ │ ├── clist.h │ │ ├── conf.h │ │ ├── dataacq.h │ │ ├── device.h │ │ ├── devicestat.h │ │ ├── dir.h │ │ ├── dirent.h │ │ ├── disk.h │ │ ├── disklabel.h │ │ ├── diskslice.h │ │ ├── dkbad.h │ │ ├── dkstat.h │ │ ├── dmap.h │ │ ├── domain.h │ │ ├── elf32.h │ │ ├── elf_common.h │ │ ├── elf_generic.h │ │ ├── errno.h │ │ ├── exec.h │ │ ├── fbio.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── filedesc.h │ │ ├── filio.h │ │ ├── ftape.h │ │ ├── gmon.h │ │ ├── imgact.h │ │ ├── imgact_aout.h │ │ ├── inflate.h │ │ ├── interrupt.h │ │ ├── inttypes.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── ioctl_compat.h │ │ ├── ipc.h │ │ ├── kernel.h │ │ ├── ktrace.h │ │ ├── libkern.h │ │ ├── linker.h │ │ ├── linker_set.h │ │ ├── lkm.h │ │ ├── lock.h │ │ ├── lockf.h │ │ ├── malloc.h │ │ ├── mbuf.h │ │ ├── md5.h │ │ ├── mman.h │ │ ├── module.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── msgbuf.h │ │ ├── mtio.h │ │ ├── namei.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── proc.h │ │ ├── protosw.h │ │ ├── ptrace.h │ │ ├── queue.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── resourcevar.h │ │ ├── rlist.h │ │ ├── rtprio.h │ │ ├── scsiio.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── signalvar.h │ │ ├── snoop.h │ │ ├── socket.h │ │ ├── socketvar.h │ │ ├── sockio.h │ │ ├── stat.h │ │ ├── syscall-hide.h │ │ ├── syscall.h │ │ ├── sysctl.h │ │ ├── sysent.h │ │ ├── syslimits.h │ │ ├── syslog.h │ │ ├── sysproto.h │ │ ├── systm.h │ │ ├── tablet.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── timepps.h │ │ ├── times.h │ │ ├── timex.h │ │ ├── tprintf.h │ │ ├── tty.h │ │ ├── ttychars.h │ │ ├── ttycom.h │ │ ├── ttydefaults.h │ │ ├── ttydev.h │ │ ├── types.h │ │ ├── ucred.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── unistd.h │ │ ├── unpcb.h │ │ ├── user.h │ │ ├── utsname.h │ │ ├── vadvise.h │ │ ├── vcmd.h │ │ ├── vlimit.h │ │ ├── vmmeter.h │ │ ├── vnioctl.h │ │ ├── vnode.h │ │ ├── wait.h │ │ ├── wormio.h │ │ └── xrpuio.h │ │ └── vm │ │ ├── vm_extern.h │ │ ├── vm_kern.h │ │ ├── vm_map.h │ │ ├── vm_object.h │ │ ├── vm_page.h │ │ ├── vm_prot.h │ │ └── vm_zone.h ├── README ├── dev │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── char.c │ ├── conf.c │ ├── global.h │ ├── if.c │ ├── if_spppsubr.c │ ├── include │ │ ├── vm │ │ │ ├── pmap.h │ │ │ ├── vm.h │ │ │ └── vm_param.h │ │ └── vnode_if.h │ ├── init_all.c │ ├── init_isa.c │ ├── init_osenv.c │ ├── ioconf.c │ ├── isa.c │ ├── isa_glue.h │ ├── isadrivers.awk │ └── x86 │ │ ├── conf │ │ ├── apm.h │ │ ├── bpfilter.h │ │ ├── joy.h │ │ ├── lpt.h │ │ ├── snp.h │ │ └── vt.h │ │ └── fillw.S ├── libc │ ├── GNUmakefile.in │ ├── arm32 │ │ ├── GNUmakerules │ │ ├── fplib │ │ │ ├── arm-gcc.h │ │ │ ├── environment.h │ │ │ ├── fplib_glue.S │ │ │ ├── fplib_libc.c │ │ │ ├── softfloat-macros.h │ │ │ ├── softfloat-specialize.h │ │ │ ├── softfloat.c │ │ │ └── softfloat.h │ │ ├── gen │ │ │ ├── alloca.S │ │ │ ├── isinf.c │ │ │ └── setjmp.S │ │ ├── glue │ │ │ ├── sendsig.c │ │ │ ├── sigcontext_dump.c │ │ │ └── stack_trace.c │ │ ├── net │ │ │ ├── byte_swap_2.S │ │ │ └── byte_swap_4.S │ │ └── string │ │ │ ├── _memcpy.S │ │ │ ├── bcopy.S │ │ │ ├── bzero.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── strchr.c │ │ │ └── strrchr.c │ ├── glue │ │ ├── __main.c │ │ ├── comprintf.c │ │ ├── environ.c │ │ ├── errno.c │ │ ├── gethostname.c │ │ ├── getline.c │ │ ├── init_libc.c │ │ ├── issetugid.c │ │ ├── load_libc.c │ │ ├── opendir.c │ │ ├── panic.c │ │ ├── progname.c │ │ ├── sleep.c │ │ ├── strerror.c │ │ └── syslog.c │ ├── gmon │ │ ├── base_gprof_init.c │ │ ├── gmon.c │ │ └── mcount.c │ ├── include │ │ ├── arm32 │ │ │ ├── ansi.h │ │ │ ├── endian.h │ │ │ ├── float.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── limits.h │ │ │ ├── lock.h │ │ │ ├── param.h │ │ │ ├── trap.h │ │ │ └── types.h │ │ ├── dirent.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── float.h │ │ ├── i386 │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── asmacros.h │ │ │ ├── elf.h │ │ │ ├── endian.h │ │ │ ├── float.h │ │ │ ├── limits.h │ │ │ ├── lock.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ ├── trap.h │ │ │ └── types.h │ │ ├── malloc.h │ │ ├── md5.h │ │ ├── poll.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── stdarg.h │ │ ├── sys │ │ │ ├── disklabel.h │ │ │ ├── fcntl.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ └── types.h │ │ ├── syslog.h │ │ └── termios.h │ ├── malloc │ │ ├── calloc.c │ │ ├── free.c │ │ ├── malloc.c │ │ ├── malloc_memobj.c │ │ ├── mem_lock.c │ │ ├── memalign.c │ │ ├── morecore.c │ │ ├── mustcalloc.c │ │ ├── mustmalloc.c │ │ ├── realloc.c │ │ ├── sfree.c │ │ ├── smalloc.c │ │ └── smemalign.c │ └── x86 │ │ ├── GNUmakerules │ │ └── glue │ │ ├── mcount_md.S │ │ ├── sendsig.c │ │ ├── sigcontext_dump.c │ │ └── stack_trace.c ├── libc_r │ ├── GNUmakefile.in │ ├── arm32 │ │ └── GNUmakerules │ └── x86 │ │ └── GNUmakerules ├── libm │ ├── GNUmakefile.in │ ├── GNUmakerules │ └── README ├── net │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── accept.c │ ├── bind.c │ ├── bsdnet_add_default_route.c │ ├── bsdnet_com.c │ ├── bsdnet_com.h │ ├── bsdnet_driver.c │ ├── bsdnet_init.c │ ├── bsdnet_mib_icmp.c │ ├── bsdnet_mib_icmp.h │ ├── bsdnet_mib_ip.c │ ├── bsdnet_mib_ip.h │ ├── bsdnet_mib_tcp.c │ ├── bsdnet_mib_tcp.h │ ├── bsdnet_mib_udp.c │ ├── bsdnet_mib_udp.h │ ├── bsdnet_net_io.h │ ├── bsdnet_socket_factory.c │ ├── bsdnet_socket_factory.h │ ├── bsdnet_socket_factory_secure.c │ ├── bsdnet_socket_factory_secure.h │ ├── connect.c │ ├── ifconfig.c │ ├── ifdown.c │ ├── include │ │ ├── arpa │ │ │ └── inet.h │ │ ├── bpfilter.h │ │ ├── ether.h │ │ ├── global.h │ │ ├── imp.h │ │ ├── loop.h │ │ ├── opt_atalk.h │ │ ├── opt_bdg.h │ │ ├── opt_bootp.h │ │ ├── opt_compat.h │ │ ├── opt_ddb.h │ │ ├── opt_devfs.h │ │ ├── opt_icmp_bandlim.h │ │ ├── opt_inet.h │ │ ├── opt_ipdivert.h │ │ ├── opt_ipdn.h │ │ ├── opt_ipfilter.h │ │ ├── opt_ipfw.h │ │ ├── opt_ipx.h │ │ ├── opt_mrouting.h │ │ ├── opt_posix.h │ │ ├── opt_tcpdebug.h │ │ ├── opt_uconsole.h │ │ ├── opt_vm.h │ │ ├── opt_vmpage.h │ │ ├── ppp.h │ │ ├── sl.h │ │ ├── snp.h │ │ ├── tun.h │ │ ├── vlan.h │ │ └── vnode_if.h │ ├── mbuf_buf_io.c │ ├── mbuf_buf_io.h │ ├── net_receive.c │ ├── read.c │ ├── recvfrom.c │ ├── sendto.c │ ├── setsockopt.c │ ├── socketcomio.c │ ├── sockimpl.h │ ├── sockname.c │ ├── start_first_if.c │ ├── start_if.c │ └── write.c ├── shared │ ├── GNUmakerules │ ├── README │ ├── arm32 │ │ ├── clock.c │ │ ├── include │ │ │ ├── ansi.h │ │ │ ├── cpu.h │ │ │ ├── cpufunc.h │ │ │ ├── devconf.h │ │ │ ├── endian.h │ │ │ ├── ipl.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── pcb.h │ │ │ ├── proc.h │ │ │ ├── pte.h │ │ │ ├── random.h │ │ │ ├── signal.h │ │ │ ├── spl.h │ │ │ ├── stdarg.h │ │ │ ├── types.h │ │ │ └── vmparam.h │ │ └── stubs.c │ ├── clock_init.c │ ├── defaults.c │ ├── error.c │ ├── freebsd_version.h │ ├── glue.c │ ├── glue.h │ ├── init_main.c │ ├── intr.c │ ├── kern_clock.c │ ├── kern_intr.c │ ├── kern_sig.c │ ├── kern_synch.c │ ├── kern_sysctl.c │ ├── kern_xxx.c │ ├── osenv.c │ ├── osenv.h │ ├── param.c │ ├── random_machdep.c │ ├── select.c │ ├── subr_prf.c │ ├── vm_kern.c │ └── x86 │ │ └── clock.c └── src │ ├── include │ ├── a.out.h │ ├── ar.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── assert.h │ ├── bitstring.h │ ├── ctype.h │ ├── db.h │ ├── dirent.h │ ├── disktab.h │ ├── err.h │ ├── f2c.h │ ├── fnmatch.h │ ├── fstab.h │ ├── fts.h │ ├── glob.h │ ├── grp.h │ ├── histedit.h │ ├── kvm.h │ ├── limits.h │ ├── link.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── mpool.h │ ├── ndbm.h │ ├── netdb.h │ ├── nl_types.h │ ├── nlist.h │ ├── paths.h │ ├── protocols │ │ ├── dumprestore.h │ │ ├── routed.h │ │ ├── rwhod.h │ │ ├── talkd.h │ │ └── timed.h │ ├── pthread.h │ ├── pthread_np.h │ ├── pwd.h │ ├── ranlib.h │ ├── regex.h │ ├── regexp.h │ ├── resolv.h │ ├── rpc │ │ ├── auth.h │ │ ├── auth_unix.h │ │ ├── clnt.h │ │ ├── pmap_clnt.h │ │ ├── pmap_prot.h │ │ ├── pmap_rmt.h │ │ ├── rpc.h │ │ ├── rpc_msg.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── types.h │ │ └── xdr.h │ ├── rune.h │ ├── runetype.h │ ├── setjmp.h │ ├── sgtty.h │ ├── signal.h │ ├── stab.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── strhash.h │ ├── string.h │ ├── strings.h │ ├── struct.h │ ├── sysexits.h │ ├── tar.h │ ├── time.h │ ├── timers.h │ ├── ttyent.h │ ├── unistd.h │ ├── utime.h │ ├── utmp.h │ └── vis.h │ ├── lib │ ├── libc │ │ ├── compat-43 │ │ │ ├── creat.c │ │ │ ├── gethostid.c │ │ │ ├── getwd.c │ │ │ ├── killpg.c │ │ │ ├── sethostid.c │ │ │ ├── setpgrp.c │ │ │ ├── setrgid.c │ │ │ ├── setruid.c │ │ │ └── sigcompat.c │ │ ├── db │ │ │ ├── btree │ │ │ │ ├── bt_close.c │ │ │ │ ├── bt_conv.c │ │ │ │ ├── bt_debug.c │ │ │ │ ├── bt_delete.c │ │ │ │ ├── bt_get.c │ │ │ │ ├── bt_open.c │ │ │ │ ├── bt_overflow.c │ │ │ │ ├── bt_page.c │ │ │ │ ├── bt_put.c │ │ │ │ ├── bt_search.c │ │ │ │ ├── bt_seq.c │ │ │ │ ├── bt_split.c │ │ │ │ ├── bt_utils.c │ │ │ │ ├── btree.h │ │ │ │ └── extern.h │ │ │ ├── db │ │ │ │ └── db.c │ │ │ ├── hash │ │ │ │ ├── extern.h │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── hash_bigkey.c │ │ │ │ ├── hash_buf.c │ │ │ │ ├── hash_func.c │ │ │ │ ├── hash_log2.c │ │ │ │ ├── hash_page.c │ │ │ │ ├── hsearch.c │ │ │ │ ├── ndbm.c │ │ │ │ ├── page.h │ │ │ │ └── search.h │ │ │ ├── mpool │ │ │ │ └── mpool.c │ │ │ └── recno │ │ │ │ ├── extern.h │ │ │ │ ├── rec_close.c │ │ │ │ ├── rec_delete.c │ │ │ │ ├── rec_get.c │ │ │ │ ├── rec_open.c │ │ │ │ ├── rec_put.c │ │ │ │ ├── rec_search.c │ │ │ │ ├── rec_seq.c │ │ │ │ ├── rec_utils.c │ │ │ │ └── recno.h │ │ ├── gen │ │ │ ├── _rand48.c │ │ │ ├── _thread_init.c │ │ │ ├── alarm.c │ │ │ ├── assert.c │ │ │ ├── clock.c │ │ │ ├── closedir.c │ │ │ ├── config.c │ │ │ ├── confstr.c │ │ │ ├── crypt.c │ │ │ ├── ctermid.c │ │ │ ├── daemon.c │ │ │ ├── devname.c │ │ │ ├── drand48.c │ │ │ ├── erand48.c │ │ │ ├── err.c │ │ │ ├── errlst.c │ │ │ ├── exec.c │ │ │ ├── fnmatch.c │ │ │ ├── fstab.c │ │ │ ├── fts.c │ │ │ ├── getbootfile.c │ │ │ ├── getbsize.c │ │ │ ├── getcap.c │ │ │ ├── getcwd.c │ │ │ ├── getdomainname.c │ │ │ ├── getgrent.c │ │ │ ├── getgrouplist.c │ │ │ ├── gethostname.c │ │ │ ├── getlogin.c │ │ │ ├── getmntinfo.c │ │ │ ├── getnetgrent.c │ │ │ ├── getosreldate.c │ │ │ ├── getpagesize.c │ │ │ ├── getpass.c │ │ │ ├── getpwent.c │ │ │ ├── getttyent.c │ │ │ ├── getusershell.c │ │ │ ├── getvfsent.c │ │ │ ├── glob.c │ │ │ ├── initgroups.c │ │ │ ├── isatty.c │ │ │ ├── jrand48.c │ │ │ ├── lcong48.c │ │ │ ├── lrand48.c │ │ │ ├── mrand48.c │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── nice.c │ │ │ ├── nlist.c │ │ │ ├── nrand48.c │ │ │ ├── ntp_gettime.c │ │ │ ├── opendir.c │ │ │ ├── pause.c │ │ │ ├── popen.c │ │ │ ├── psignal.c │ │ │ ├── pwcache.c │ │ │ ├── raise.c │ │ │ ├── rand48.h │ │ │ ├── readdir.c │ │ │ ├── rewinddir.c │ │ │ ├── scandir.c │ │ │ ├── seed48.c │ │ │ ├── seekdir.c │ │ │ ├── semconfig.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── setdomainname.c │ │ │ ├── sethostname.c │ │ │ ├── setjmperr.c │ │ │ ├── setmode.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ ├── shmget.c │ │ │ ├── siginterrupt.c │ │ │ ├── siglist.c │ │ │ ├── signal.c │ │ │ ├── sigsetops.c │ │ │ ├── sleep.c │ │ │ ├── srand48.c │ │ │ ├── sysconf.c │ │ │ ├── sysctl.c │ │ │ ├── syslog.c │ │ │ ├── tcgetattr.c │ │ │ ├── telldir.c │ │ │ ├── termios.c │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── timezone.c │ │ │ ├── ttyname.c │ │ │ ├── ttyslot.c │ │ │ ├── ualarm.c │ │ │ ├── uname.c │ │ │ ├── unvis.c │ │ │ ├── usleep.c │ │ │ ├── utime.c │ │ │ ├── valloc.c │ │ │ ├── vis.c │ │ │ ├── wait.c │ │ │ ├── wait3.c │ │ │ └── waitpid.c │ │ ├── i386 │ │ │ ├── DEFS.h │ │ │ ├── SYS.h │ │ │ ├── gen │ │ │ │ ├── _setjmp.S │ │ │ │ ├── alloca.S │ │ │ │ ├── fabs.S │ │ │ │ ├── frexp.c │ │ │ │ ├── infinity.c │ │ │ │ ├── isinf.c │ │ │ │ ├── ldexp.c │ │ │ │ ├── modf.S │ │ │ │ ├── setjmp.S │ │ │ │ └── sigsetjmp.S │ │ │ ├── net │ │ │ │ ├── htonl.S │ │ │ │ ├── htons.S │ │ │ │ ├── ntohl.S │ │ │ │ └── ntohs.S │ │ │ ├── stdlib │ │ │ │ ├── abs.S │ │ │ │ ├── div.S │ │ │ │ ├── labs.S │ │ │ │ └── ldiv.S │ │ │ └── string │ │ │ │ ├── bcmp.S │ │ │ │ ├── bcopy.S │ │ │ │ ├── bzero.S │ │ │ │ ├── ffs.S │ │ │ │ ├── index.S │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memmove.S │ │ │ │ ├── memset.S │ │ │ │ ├── rindex.S │ │ │ │ ├── strcat.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncmp.S │ │ │ │ ├── strrchr.S │ │ │ │ └── swab.S │ │ ├── locale │ │ │ ├── ansi.c │ │ │ ├── collate.c │ │ │ ├── collate.h │ │ │ ├── collcmp.c │ │ │ ├── ctype.c │ │ │ ├── euc.c │ │ │ ├── frune.c │ │ │ ├── isctype.c │ │ │ ├── lconv.c │ │ │ ├── localeconv.c │ │ │ ├── mbrune.c │ │ │ ├── nomacros.c │ │ │ ├── none.c │ │ │ ├── rune.c │ │ │ ├── runetype.c │ │ │ ├── setinvalidrune.c │ │ │ ├── setlocale.c │ │ │ ├── setlocale.h │ │ │ ├── setrunelocale.c │ │ │ ├── table.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ └── utf2.c │ │ ├── net │ │ │ ├── addr2ascii.c │ │ │ ├── ascii2addr.c │ │ │ ├── ether_addr.c │ │ │ ├── gethostbydns.c │ │ │ ├── gethostbyht.c │ │ │ ├── gethostbynis.c │ │ │ ├── gethostnamadr.c │ │ │ ├── getnetbydns.c │ │ │ ├── getnetbyht.c │ │ │ ├── getnetbynis.c │ │ │ ├── getnetnamadr.c │ │ │ ├── getproto.c │ │ │ ├── getprotoent.c │ │ │ ├── getprotoname.c │ │ │ ├── getservbyname.c │ │ │ ├── getservbyport.c │ │ │ ├── getservent.c │ │ │ ├── herror.c │ │ │ ├── inet_addr.c │ │ │ ├── inet_lnaof.c │ │ │ ├── inet_makeaddr.c │ │ │ ├── inet_netof.c │ │ │ ├── inet_network.c │ │ │ ├── inet_ntoa.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── linkaddr.c │ │ │ ├── map_v4v6.c │ │ │ ├── nsap_addr.c │ │ │ ├── rcmd.c │ │ │ ├── recv.c │ │ │ ├── res_comp.c │ │ │ ├── res_config.h │ │ │ ├── res_data.c │ │ │ ├── res_debug.c │ │ │ ├── res_init.c │ │ │ ├── res_mkquery.c │ │ │ ├── res_query.c │ │ │ ├── res_send.c │ │ │ ├── res_stubs.c │ │ │ └── send.c │ │ ├── nls │ │ │ ├── catclose.c │ │ │ ├── catgets.c │ │ │ ├── catopen.c │ │ │ ├── msgcat.c │ │ │ └── msgcat.h │ │ ├── quad │ │ │ ├── adddi3.c │ │ │ ├── anddi3.c │ │ │ ├── ashldi3.c │ │ │ ├── ashrdi3.c │ │ │ ├── cmpdi2.c │ │ │ ├── divdi3.c │ │ │ ├── fixdfdi.c │ │ │ ├── fixsfdi.c │ │ │ ├── fixunsdfdi.c │ │ │ ├── fixunssfdi.c │ │ │ ├── floatdidf.c │ │ │ ├── floatdisf.c │ │ │ ├── floatunsdidf.c │ │ │ ├── iordi3.c │ │ │ ├── lshldi3.c │ │ │ ├── lshrdi3.c │ │ │ ├── moddi3.c │ │ │ ├── muldi3.c │ │ │ ├── negdi2.c │ │ │ ├── notdi2.c │ │ │ ├── qdivrem.c │ │ │ ├── quad.h │ │ │ ├── subdi3.c │ │ │ ├── ucmpdi2.c │ │ │ ├── udivdi3.c │ │ │ ├── umoddi3.c │ │ │ └── xordi3.c │ │ ├── regex │ │ │ ├── COPYRIGHT │ │ │ ├── cclass.h │ │ │ ├── cname.h │ │ │ ├── engine.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regex2.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ └── utils.h │ │ ├── rpc │ │ │ ├── auth_none.c │ │ │ ├── auth_unix.c │ │ │ ├── authunix_prot.c │ │ │ ├── bindresvport.c │ │ │ ├── clnt_generic.c │ │ │ ├── clnt_perror.c │ │ │ ├── clnt_raw.c │ │ │ ├── clnt_simple.c │ │ │ ├── clnt_tcp.c │ │ │ ├── clnt_udp.c │ │ │ ├── get_myaddress.c │ │ │ ├── getrpcent.c │ │ │ ├── getrpcport.c │ │ │ ├── pmap_clnt.c │ │ │ ├── pmap_getmaps.c │ │ │ ├── pmap_getport.c │ │ │ ├── pmap_prot.c │ │ │ ├── pmap_prot2.c │ │ │ ├── pmap_rmt.c │ │ │ ├── rpc_callmsg.c │ │ │ ├── rpc_commondata.c │ │ │ ├── rpc_dtablesize.c │ │ │ ├── rpc_prot.c │ │ │ ├── svc.c │ │ │ ├── svc_auth.c │ │ │ ├── svc_auth_unix.c │ │ │ ├── svc_raw.c │ │ │ ├── svc_run.c │ │ │ ├── svc_simple.c │ │ │ ├── svc_tcp.c │ │ │ └── svc_udp.c │ │ ├── stdio │ │ │ ├── asprintf.c │ │ │ ├── clrerr.c │ │ │ ├── fclose.c │ │ │ ├── fdopen.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetln.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fileno.c │ │ │ ├── findfp.c │ │ │ ├── flags.c │ │ │ ├── floatio.h │ │ │ ├── fopen.c │ │ │ ├── fprintf.c │ │ │ ├── fpurge.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fread.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── funopen.c │ │ │ ├── fvwrite.c │ │ │ ├── fvwrite.h │ │ │ ├── fwalk.c │ │ │ ├── fwrite.c │ │ │ ├── getc.c │ │ │ ├── getchar.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── glue.h │ │ │ ├── local.h │ │ │ ├── makebuf.c │ │ │ ├── mktemp.c │ │ │ ├── perror.c │ │ │ ├── printf.c │ │ │ ├── putc.c │ │ │ ├── putchar.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── refill.c │ │ │ ├── remove.c │ │ │ ├── rewind.c │ │ │ ├── rget.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setbuffer.c │ │ │ ├── setvbuf.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── stdio.c │ │ │ ├── tempnam.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── vasprintf.c │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── vprintf.c │ │ │ ├── vscanf.c │ │ │ ├── vsnprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── vsscanf.c │ │ │ ├── wbuf.c │ │ │ └── wsetup.c │ │ ├── stdlib │ │ │ ├── abort.c │ │ │ ├── abs.c │ │ │ ├── atexit.c │ │ │ ├── atexit.h │ │ │ ├── atof.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── bsearch.c │ │ │ ├── calloc.c │ │ │ ├── div.c │ │ │ ├── exit.c │ │ │ ├── getenv.c │ │ │ ├── getopt.c │ │ │ ├── getsubopt.c │ │ │ ├── heapsort.c │ │ │ ├── labs.c │ │ │ ├── ldiv.c │ │ │ ├── malloc.c │ │ │ ├── merge.c │ │ │ ├── putenv.c │ │ │ ├── qsort.c │ │ │ ├── radixsort.c │ │ │ ├── rand.c │ │ │ ├── random.c │ │ │ ├── realpath.c │ │ │ ├── setenv.c │ │ │ ├── strhash.c │ │ │ ├── strtod.c │ │ │ ├── strtol.c │ │ │ ├── strtoq.c │ │ │ ├── strtoul.c │ │ │ ├── strtouq.c │ │ │ └── system.c │ │ ├── stdtime │ │ │ ├── asctime.c │ │ │ ├── difftime.c │ │ │ ├── localtime.c │ │ │ ├── private.h │ │ │ ├── strftime.c │ │ │ └── tzfile.h │ │ ├── string │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── ffs.c │ │ │ ├── index.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memset.c │ │ │ ├── rindex.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcat.c │ │ │ ├── strcmp.c │ │ │ ├── strcoll.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strerror.c │ │ │ ├── strlen.c │ │ │ ├── strmode.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strpbrk.c │ │ │ ├── strsep.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ ├── strtok.c │ │ │ ├── strtok_r.c │ │ │ ├── strxfrm.c │ │ │ └── swab.c │ │ └── xdr │ │ │ ├── xdr.c │ │ │ ├── xdr_array.c │ │ │ ├── xdr_float.c │ │ │ ├── xdr_mem.c │ │ │ ├── xdr_rec.c │ │ │ ├── xdr_reference.c │ │ │ └── xdr_stdio.c │ └── msun │ │ ├── i387 │ │ ├── i387_e_acos.S │ │ ├── i387_e_asin.S │ │ ├── i387_e_atan2.S │ │ ├── i387_e_exp.S │ │ ├── i387_e_fmod.S │ │ ├── i387_e_log.S │ │ ├── i387_e_log10.S │ │ ├── i387_e_remainder.S │ │ ├── i387_e_scalb.S │ │ ├── i387_e_sqrt.S │ │ ├── i387_s_atan.S │ │ ├── i387_s_ceil.S │ │ ├── i387_s_copysign.S │ │ ├── i387_s_cos.S │ │ ├── i387_s_finite.S │ │ ├── i387_s_floor.S │ │ ├── i387_s_ilogb.S │ │ ├── i387_s_log1p.S │ │ ├── i387_s_logb.S │ │ ├── i387_s_rint.S │ │ ├── i387_s_scalbn.S │ │ ├── i387_s_significand.S │ │ ├── i387_s_sin.S │ │ └── i387_s_tan.S │ │ └── src │ │ ├── e_acos.c │ │ ├── e_acosf.c │ │ ├── e_acosh.c │ │ ├── e_acoshf.c │ │ ├── e_asin.c │ │ ├── e_asinf.c │ │ ├── e_atan2.c │ │ ├── e_atan2f.c │ │ ├── e_atanh.c │ │ ├── e_atanhf.c │ │ ├── e_cosh.c │ │ ├── e_coshf.c │ │ ├── e_exp.c │ │ ├── e_expf.c │ │ ├── e_fmod.c │ │ ├── e_fmodf.c │ │ ├── e_gamma.c │ │ ├── e_gamma_r.c │ │ ├── e_gammaf.c │ │ ├── e_gammaf_r.c │ │ ├── e_hypot.c │ │ ├── e_hypotf.c │ │ ├── e_j0.c │ │ ├── e_j0f.c │ │ ├── e_j1.c │ │ ├── e_j1f.c │ │ ├── e_jn.c │ │ ├── e_jnf.c │ │ ├── e_lgamma.c │ │ ├── e_lgamma_r.c │ │ ├── e_lgammaf.c │ │ ├── e_lgammaf_r.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_log10f.c │ │ ├── e_logf.c │ │ ├── e_pow.c │ │ ├── e_powf.c │ │ ├── e_rem_pio2.c │ │ ├── e_rem_pio2f.c │ │ ├── e_remainder.c │ │ ├── e_remainderf.c │ │ ├── e_scalb.c │ │ ├── e_scalbf.c │ │ ├── e_sinh.c │ │ ├── e_sinhf.c │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── k_cos.c │ │ ├── k_cosf.c │ │ ├── k_rem_pio2.c │ │ ├── k_rem_pio2f.c │ │ ├── k_sin.c │ │ ├── k_sinf.c │ │ ├── k_standard.c │ │ ├── k_tan.c │ │ ├── k_tanf.c │ │ ├── math.h │ │ ├── math_private.h │ │ ├── s_asinh.c │ │ ├── s_asinhf.c │ │ ├── s_atan.c │ │ ├── s_atanf.c │ │ ├── s_cbrt.c │ │ ├── s_cbrtf.c │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_copysign.c │ │ ├── s_copysignf.c │ │ ├── s_cos.c │ │ ├── s_cosf.c │ │ ├── s_erf.c │ │ ├── s_erff.c │ │ ├── s_expm1.c │ │ ├── s_expm1f.c │ │ ├── s_fabs.c │ │ ├── s_fabsf.c │ │ ├── s_finite.c │ │ ├── s_finitef.c │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_frexp.c │ │ ├── s_frexpf.c │ │ ├── s_ilogb.c │ │ ├── s_ilogbf.c │ │ ├── s_isnan.c │ │ ├── s_isnanf.c │ │ ├── s_ldexp.c │ │ ├── s_ldexpf.c │ │ ├── s_lib_version.c │ │ ├── s_log1p.c │ │ ├── s_log1pf.c │ │ ├── s_logb.c │ │ ├── s_logbf.c │ │ ├── s_matherr.c │ │ ├── s_modf.c │ │ ├── s_modff.c │ │ ├── s_nextafter.c │ │ ├── s_nextafterf.c │ │ ├── s_rint.c │ │ ├── s_rintf.c │ │ ├── s_scalbn.c │ │ ├── s_scalbnf.c │ │ ├── s_signgam.c │ │ ├── s_significand.c │ │ ├── s_significandf.c │ │ ├── s_sin.c │ │ ├── s_sinf.c │ │ ├── s_tan.c │ │ ├── s_tanf.c │ │ ├── s_tanh.c │ │ ├── s_tanhf.c │ │ ├── w_acos.c │ │ ├── w_acosf.c │ │ ├── w_acosh.c │ │ ├── w_acoshf.c │ │ ├── w_asin.c │ │ ├── w_asinf.c │ │ ├── w_atan2.c │ │ ├── w_atan2f.c │ │ ├── w_atanh.c │ │ ├── w_atanhf.c │ │ ├── w_cabs.c │ │ ├── w_cabsf.c │ │ ├── w_cosh.c │ │ ├── w_coshf.c │ │ ├── w_drem.c │ │ ├── w_dremf.c │ │ ├── w_exp.c │ │ ├── w_expf.c │ │ ├── w_fmod.c │ │ ├── w_fmodf.c │ │ ├── w_gamma.c │ │ ├── w_gamma_r.c │ │ ├── w_gammaf.c │ │ ├── w_gammaf_r.c │ │ ├── w_hypot.c │ │ ├── w_hypotf.c │ │ ├── w_j0.c │ │ ├── w_j0f.c │ │ ├── w_j1.c │ │ ├── w_j1f.c │ │ ├── w_jn.c │ │ ├── w_jnf.c │ │ ├── w_lgamma.c │ │ ├── w_lgamma_r.c │ │ ├── w_lgammaf.c │ │ ├── w_lgammaf_r.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_log10f.c │ │ ├── w_logf.c │ │ ├── w_pow.c │ │ ├── w_powf.c │ │ ├── w_remainder.c │ │ ├── w_remainderf.c │ │ ├── w_scalb.c │ │ ├── w_scalbf.c │ │ ├── w_sinh.c │ │ ├── w_sinhf.c │ │ ├── w_sqrt.c │ │ └── w_sqrtf.c │ └── sys │ ├── conf │ └── newvers.sh │ ├── i386 │ ├── eisa │ │ └── eisaconf.h │ ├── i386 │ │ ├── conf.c │ │ └── cons.h │ ├── include │ │ ├── ansi.h │ │ ├── apm_bios.h │ │ ├── apm_segments.h │ │ ├── asc_ioctl.h │ │ ├── asmacros.h │ │ ├── bootinfo.h │ │ ├── cdk.h │ │ ├── clock.h │ │ ├── comstats.h │ │ ├── cons.h │ │ ├── console.h │ │ ├── cpu.h │ │ ├── cpufunc.h │ │ ├── cputypes.h │ │ ├── cronyx.h │ │ ├── db_machdep.h │ │ ├── devconf.h │ │ ├── endian.h │ │ ├── exec.h │ │ ├── float.h │ │ ├── floatingpoint.h │ │ ├── frame.h │ │ ├── gsc.h │ │ ├── ieeefp.h │ │ ├── ioctl_ctx.h │ │ ├── ioctl_fd.h │ │ ├── ioctl_meteor.h │ │ ├── ipl.h │ │ ├── joystick.h │ │ ├── laptops.h │ │ ├── limits.h │ │ ├── lpt.h │ │ ├── md_var.h │ │ ├── mouse.h │ │ ├── mtpr.h │ │ ├── npx.h │ │ ├── param.h │ │ ├── pc │ │ │ └── display.h │ │ ├── pcaudioio.h │ │ ├── pcb.h │ │ ├── pcvt_ioctl.h │ │ ├── pmap.h │ │ ├── proc.h │ │ ├── profile.h │ │ ├── psl.h │ │ ├── pte.h │ │ ├── ptrace.h │ │ ├── qcam.h │ │ ├── random.h │ │ ├── reg.h │ │ ├── reloc.h │ │ ├── segments.h │ │ ├── si.h │ │ ├── signal.h │ │ ├── soundcard.h │ │ ├── speaker.h │ │ ├── specialreg.h │ │ ├── spigot.h │ │ ├── spl.h │ │ ├── stdarg.h │ │ ├── sysarch.h │ │ ├── trap.h │ │ ├── tss.h │ │ ├── types.h │ │ ├── ultrasound.h │ │ ├── varargs.h │ │ └── vmparam.h │ └── isa │ │ ├── cronyx.c │ │ ├── cx.c │ │ ├── cxreg.h │ │ ├── cy.c │ │ ├── cyreg.h │ │ ├── ic │ │ ├── cd1400.h │ │ ├── cd180.h │ │ └── ns16550.h │ │ ├── icu.h │ │ ├── if_cx.c │ │ ├── isa.h │ │ ├── isa_device.h │ │ ├── joy.c │ │ ├── kbdtables.h │ │ ├── lpt.c │ │ ├── lptreg.h │ │ ├── mse.c │ │ ├── psm.c │ │ ├── rc.c │ │ ├── rcreg.h │ │ ├── si.c │ │ ├── si_code.c │ │ ├── sio.c │ │ ├── sioreg.h │ │ ├── sireg.h │ │ ├── syscons.c │ │ ├── syscons.h │ │ └── timerreg.h │ ├── kern │ ├── kern_devconf.c │ ├── kern_malloc.c │ ├── kern_subr.c │ ├── subr_xxx.c │ ├── tty.c │ ├── tty_conf.c │ ├── tty_subr.c │ ├── uipc_domain.c │ ├── uipc_mbuf.c │ ├── uipc_socket.c │ └── uipc_socket2.c │ ├── libkern │ ├── inet_ntoa.c │ ├── random.c │ └── scanc.c │ ├── net │ ├── bpf.c │ ├── bpf.h │ ├── bpf_compat.h │ ├── bpf_filter.c │ ├── bpfdesc.h │ ├── ethernet.h │ ├── if.c │ ├── if.h │ ├── if_arp.h │ ├── if_disc.c │ ├── if_dl.h │ ├── if_ethersubr.c │ ├── if_fddisubr.c │ ├── if_llc.h │ ├── if_loop.c │ ├── if_ppp.c │ ├── if_ppp.h │ ├── if_sl.c │ ├── if_slvar.h │ ├── if_sppp.h │ ├── if_spppsubr.c │ ├── if_tun.c │ ├── if_tun.h │ ├── if_types.h │ ├── netisr.h │ ├── pppcompress.c │ ├── pppcompress.h │ ├── radix.c │ ├── radix.h │ ├── raw_cb.c │ ├── raw_cb.h │ ├── raw_usrreq.c │ ├── route.c │ ├── route.h │ ├── rtsock.c │ ├── slcompress.c │ ├── slcompress.h │ └── slip.h │ ├── netinet │ ├── icmp_var.h │ ├── if_ether.c │ ├── if_ether.h │ ├── if_fddi.h │ ├── igmp.c │ ├── igmp.h │ ├── igmp_var.h │ ├── in.c │ ├── in.h │ ├── in_cksum.c │ ├── in_pcb.c │ ├── in_pcb.h │ ├── in_proto.c │ ├── in_rmx.c │ ├── in_systm.h │ ├── in_var.h │ ├── ip.h │ ├── ip_fw.c │ ├── ip_fw.h │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_mroute.c │ ├── ip_mroute.h │ ├── ip_output.c │ ├── ip_var.h │ ├── raw_ip.c │ ├── tcp.h │ ├── tcp_debug.c │ ├── tcp_debug.h │ ├── tcp_fsm.h │ ├── tcp_input.c │ ├── tcp_output.c │ ├── tcp_seq.h │ ├── tcp_subr.c │ ├── tcp_timer.c │ ├── tcp_timer.h │ ├── tcp_usrreq.c │ ├── tcp_var.h │ ├── tcpip.h │ ├── udp.h │ ├── udp_usrreq.c │ └── udp_var.h │ ├── pci │ ├── pcireg.h │ └── pcivar.h │ ├── scsi │ ├── scsi_all.h │ ├── scsi_debug.h │ ├── scsi_driver.h │ └── scsiconf.h │ ├── sys │ ├── acct.h │ ├── buf.h │ ├── callout.h │ ├── ccdvar.h │ ├── cdefs.h │ ├── cdio.h │ ├── chio.h │ ├── clist.h │ ├── conf.h │ ├── dataacq.h │ ├── devconf.h │ ├── device.h │ ├── dir.h │ ├── dirent.h │ ├── disk.h │ ├── disklabel.h │ ├── diskslice.h │ ├── dkbad.h │ ├── dkstat.h │ ├── dmap.h │ ├── domain.h │ ├── errno.h │ ├── exec.h │ ├── fbio.h │ ├── fcntl.h │ ├── file.h │ ├── filedesc.h │ ├── filio.h │ ├── ftape.h │ ├── gmon.h │ ├── imgact.h │ ├── imgact_aout.h │ ├── inflate.h │ ├── interrupt.h │ ├── ioccom.h │ ├── ioctl.h │ ├── ioctl_compat.h │ ├── ipc.h │ ├── kernel.h │ ├── ktrace.h │ ├── libkern.h │ ├── lkm.h │ ├── lockf.h │ ├── malloc.h │ ├── mbuf.h │ ├── mman.h │ ├── mount.h │ ├── msg.h │ ├── msgbuf.h │ ├── mtio.h │ ├── namei.h │ ├── param.h │ ├── proc.h │ ├── protosw.h │ ├── ptrace.h │ ├── queue.h │ ├── reboot.h │ ├── resource.h │ ├── resourcevar.h │ ├── rlist.h │ ├── rtprio.h │ ├── scsiio.h │ ├── select.h │ ├── sem.h │ ├── shm.h │ ├── signal.h │ ├── signalvar.h │ ├── snoop.h │ ├── socket.h │ ├── socketvar.h │ ├── sockio.h │ ├── stat.h │ ├── syscall-hide.h │ ├── syscall.h │ ├── sysctl.h │ ├── sysent.h │ ├── syslimits.h │ ├── syslog.h │ ├── systm.h │ ├── tablet.h │ ├── termios.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── timex.h │ ├── tprintf.h │ ├── tty.h │ ├── ttychars.h │ ├── ttycom.h │ ├── ttydefaults.h │ ├── ttydev.h │ ├── types.h │ ├── ucred.h │ ├── uio.h │ ├── un.h │ ├── unistd.h │ ├── unpcb.h │ ├── user.h │ ├── utsname.h │ ├── vadvise.h │ ├── vcmd.h │ ├── vlimit.h │ ├── vmmeter.h │ ├── vnioctl.h │ ├── vnode.h │ ├── wait.h │ └── wormio.h │ └── vm │ └── vm_kern.h ├── fsnamespace ├── README ├── fsn │ ├── GNUmakefile.in │ └── GNUmakerules ├── fsn_r │ ├── GNUmakefile.in │ └── GNUmakerules └── src │ ├── dir_wrapper.c │ ├── fsn.h │ ├── fsn_cache.c │ ├── fsn_cache.h │ ├── fsn_lookup.c │ ├── fsn_mount.c │ └── fsnamespace.c ├── fsread ├── COPYING ├── GNUmakefile.in ├── NOTES ├── README ├── common.c ├── common.h ├── disk_inode.h ├── disk_inode_ffs.h ├── ext2_file_io.c ├── ext2_fs.h ├── ffs_dir.h ├── ffs_file_io.c ├── ffs_fs.h ├── minix_file_io.c ├── minix_fs.h └── open.c ├── fudp ├── GNUmakefile.in ├── README ├── arp.c ├── eth.c ├── fudp.h ├── ip.c └── socket.c ├── gensym.awk ├── gprof ├── GNUmakefile.in ├── GNUmakerules ├── README ├── arcs.c ├── dfn.c ├── gprof.c ├── gprof.h ├── gprof_printf.c ├── i386.c ├── i386.h ├── lookup.c ├── pathnames.h ├── printgprof.c ├── printlist.c └── qsort.c ├── hpfq ├── GNUmakefile.in ├── README ├── hpfq.c ├── hpfq_impl.h ├── leaf.c └── stats.c ├── install.sh ├── kern ├── GNUmakefile.in ├── GNUmakerules ├── README ├── anno_dump.c ├── anno_find_exact.c ├── anno_find_lower.c ├── anno_init.c ├── anno_intr.c ├── anno_trap.c ├── arm32 │ ├── GNUmakerules │ ├── README │ ├── base_critical.c │ ├── base_pdir_pa.c │ ├── base_stack.S │ ├── base_trap.c │ ├── base_trap_default_handler.c │ ├── base_trap_init.c │ ├── base_trap_inittab.S │ ├── gdb_copy.c │ ├── gdb_set_trace_flag.c │ ├── gdb_sup.S │ ├── gdb_trap.c │ ├── ofw │ │ ├── ofw_cache.c │ │ ├── ofw_cons.c │ │ ├── ofw_console.c │ │ ├── ofw_interface.c │ │ ├── ofw_isa.c │ │ ├── ofw_map.c │ │ ├── ofw_mem.c │ │ ├── ofw_paging_init.c │ │ └── ofw_vga.c │ ├── pdir_alloc.c │ ├── pdir_clean.c │ ├── pdir_dump.c │ ├── pdir_free.c │ ├── pdir_map_page.c │ ├── pdir_map_range.c │ ├── pdir_prot_range.c │ ├── pdir_unmap_page.c │ ├── pdir_unmap_range.c │ ├── ptab_alloc.c │ ├── ptab_dump.c │ ├── ptab_free.c │ ├── sendsig.c │ ├── shark │ │ ├── base_console.c │ │ ├── base_console_init.c │ │ ├── base_cpu_setup.c │ │ ├── base_irq.c │ │ ├── base_irq_default_handler.c │ │ ├── base_irq_init.c │ │ ├── base_irq_inittab.S │ │ ├── base_irq_softint.c │ │ ├── base_irq_softint_handler.c │ │ ├── base_multiboot_init_cmdline.c │ │ ├── base_multiboot_init_mem.c │ │ ├── base_multiboot_main.c │ │ ├── base_paging_init.c │ │ ├── base_paging_load.c │ │ ├── cache.S │ │ ├── com_cons.c │ │ ├── com_console.c │ │ ├── direct_cons_getchar.c │ │ ├── direct_cons_putchar.c │ │ ├── direct_cons_trygetchar.c │ │ ├── direct_console.c │ │ ├── gdb_com.c │ │ ├── gdb_console.c │ │ ├── phys_lmm_add.c │ │ ├── phys_lmm_init.c │ │ ├── physmem.c │ │ ├── pic.c │ │ ├── reset.c │ │ └── rtc.c │ ├── trap_dump.c │ └── trap_dump_panic.c ├── base_cooked_termios.c ├── base_raw_termios.c ├── gdb_serial.c ├── mem_lock.c ├── version.c ├── version_print.c └── x86 │ ├── GNUmakerules │ ├── README │ ├── base_cpu_init.c │ ├── base_cpu_load.c │ ├── base_critical.c │ ├── base_fpu_init.c │ ├── base_gdt.c │ ├── base_gdt_init.c │ ├── base_gdt_load.c │ ├── base_idt.c │ ├── base_idt_load.c │ ├── base_paging_init.c │ ├── base_paging_load.c │ ├── base_pdir_pa.c │ ├── base_stack.S │ ├── base_trap.c │ ├── base_trap_default_handler.c │ ├── base_trap_ignore_handler.c │ ├── base_trap_init.c │ ├── base_trap_inittab.S │ ├── base_tss.c │ ├── base_tss_init.c │ ├── base_tss_load.c │ ├── cpu_info_dump.c │ ├── cpu_info_format.c │ ├── cpu_info_min.c │ ├── cpuid.c │ ├── dos │ ├── dos_buf.c │ ├── dos_check_err.c │ ├── dos_close.c │ ├── dos_fstat.c │ ├── dos_gettimeofday.c │ ├── dos_io.h │ ├── dos_open.c │ ├── dos_putchar.c │ ├── dos_read.c │ ├── dos_rename.c │ ├── dos_seek.c │ ├── dos_tcgetattr.c │ ├── dos_unlink.c │ ├── dos_write.c │ └── i16 │ │ ├── i16_dos_main.c │ │ ├── i16_dos_mem.c │ │ ├── i16_vcpi.c │ │ └── i16_xms.c │ ├── gate_init.c │ ├── gdb_copy.S │ ├── gdb_set_trace_flag.c │ ├── gdb_trap.c │ ├── gdb_trap_ss.S │ ├── i16 │ ├── i16_base_gdt_init.S │ ├── i16_base_gdt_init.c │ ├── i16_fill_descriptor.c │ └── i16_writehex.c │ ├── linear_base_va.c │ ├── multiboot_info_dump.c │ ├── pc │ ├── base_console.c │ ├── base_console_init.c │ ├── base_conv_mem_init.c │ ├── base_ext_mem_init.c │ ├── base_irq.c │ ├── base_irq_default_handler.c │ ├── base_irq_init.c │ ├── base_irq_inittab.S │ ├── base_irq_softint.c │ ├── base_irq_softint_handler.c │ ├── base_multiboot_find.c │ ├── base_multiboot_init_cmdline.c │ ├── base_multiboot_init_mem.c │ ├── base_multiboot_main.c │ ├── com_cons.c │ ├── com_console.c │ ├── com_kill_intr.S │ ├── cq_com_console.c │ ├── cq_direct_console.c │ ├── direct_cons_bell.c │ ├── direct_cons_getchar.c │ ├── direct_cons_putchar.c │ ├── direct_cons_trygetchar.c │ ├── direct_console.c │ ├── gdb_console.c │ ├── gdb_pc_com.c │ ├── gdb_pc_com_intr.S │ ├── i16 │ │ ├── base_i16_a20.c │ │ ├── i16_a20.c │ │ ├── i16_abort.c │ │ ├── i16_bios_main.c │ │ ├── i16_exit.c │ │ ├── i16_ext_mem.c │ │ ├── i16_init_vm.S │ │ ├── i16_init_vm.c │ │ ├── i16_putchar.c │ │ ├── i16_raw.S │ │ ├── i16_raw.c │ │ ├── i16_real_int.S │ │ ├── i16_test_a20.S │ │ └── raw_real_int.c │ ├── intr_cons.c │ ├── intr_console.c │ ├── kb_command.c │ ├── killswitch.c │ ├── pc_asm.sym │ ├── pc_speaker.c │ ├── phys_lmm_add.c │ ├── phys_lmm_init.c │ ├── phys_mem_max.c │ ├── phys_mem_min.c │ ├── pic.c │ ├── pic_set_master.c │ ├── pic_set_slave.c │ ├── profil.c │ ├── reset.c │ ├── return_address.c │ ├── rtc.c │ ├── set_breakpoint.c │ └── sysconf.c │ ├── pdir_clean.c │ ├── pdir_dump.c │ ├── pdir_map_page.c │ ├── pdir_map_range.c │ ├── pdir_prot_range.c │ ├── pdir_unmap_page.c │ ├── pdir_unmap_range.c │ ├── phys_mem_va.c │ ├── ptab_alloc.c │ ├── ptab_dump.c │ ├── ptab_free.c │ ├── real_cs.c │ ├── sendsig.c │ ├── trap_asm.sym │ ├── trap_dump.c │ ├── trap_dump_panic.c │ ├── tss_dump.c │ ├── tss_dump_stack_trace.c │ └── x86_asm.sym ├── knit ├── All.unit ├── Boot.unit ├── CmdLine.unit ├── Console.unit ├── Delta.unit ├── Examples.unit ├── FileSystems.unit ├── Files.unit ├── Flags.unit ├── Glue.unit ├── Graphics.unit ├── Interrupt.unit ├── Kernels.unit ├── LinuxDev.unit ├── Memory.unit ├── Misc.unit ├── MzScheme.unit ├── Network.unit ├── Process.unit ├── Queue.unit ├── README ├── Security.unit ├── Signatures.unit ├── Threads.unit ├── Time.unit ├── X86.unit ├── c │ ├── GNUmakefile.in │ ├── anno_init2.c │ ├── arp_table.c │ ├── bitops.h │ ├── bootp_init.c │ ├── bsd_socket_factory.c │ ├── cat.c │ ├── cmdline_init.c │ ├── com_cons_wrap.c │ ├── com_init.c │ ├── console_init.c │ ├── copy_bmod.c │ ├── cpu_setup.c │ ├── device_probe.c │ ├── dual_console.c │ ├── echo.c │ ├── ether_if.c │ ├── example_fudp.c │ ├── first_etherdev.c │ ├── fromenv.c │ ├── fs_init.c │ ├── fs_init_unwrapped.c │ ├── fsn_obj.c │ ├── fudp_obj.c │ ├── gdb_init.c │ ├── gethostname.c │ ├── gettimeofday_from_rtc.c │ ├── hello_min.c │ ├── ide_block_init.c │ ├── init_pthreads.c │ ├── invoke_main.c │ ├── invoke_simplemain.c │ ├── linux_ethernet_init.c │ ├── linux_ide_init.c │ ├── lmm.c │ ├── lmm.h │ ├── lmm_bits.c │ ├── lmm_cache.c │ ├── lmm_guard.c │ ├── lmm_lock.c │ ├── lmm_morecore.c │ ├── lmm_print.c │ ├── malloc.c │ ├── malloc_lmm_init.c │ ├── malloc_lmm_init2.c │ ├── mallocf.c │ ├── mallocf.h │ ├── mb_wrapper.c │ ├── mem.c │ ├── mem_auto.c │ ├── mem_cache.c │ ├── memfs_obj.c │ ├── multiboot__exit.c │ ├── multiboot_main.c │ ├── my_exit.c │ ├── my_multiboot.c │ ├── netio_obj.c │ ├── nth_etherdevice.c │ ├── null_call_context.c │ ├── null_crit.c │ ├── open_etherdev.c │ ├── osenv_mem.c │ ├── osenv_mem_print.c │ ├── packet_discard.c │ ├── partition.c │ ├── prepost.c │ ├── progress.c │ ├── putbytes.c │ ├── services_init.c │ ├── set_irq_handler.c │ ├── signals_init.c │ ├── simple_arp.c │ ├── sleep.c │ ├── sleep.h │ ├── smalloc.c │ ├── smallocf.c │ ├── tcp_plus.c │ ├── thread_sleep.c │ ├── timer_init.c │ ├── unix_main.c │ ├── wait_for_key.c │ ├── wrap_block.c │ ├── wrap_init.c │ └── wrap_stdout.c └── knit.mk ├── libc ├── GNUmakefile.in ├── GNUmakerules ├── README ├── arm32 │ ├── GNUmakerules │ ├── _memcpy.S │ ├── ashrdi3.c │ ├── bcopy.S │ ├── byte_swap_2.S │ ├── byte_swap_4.S │ ├── bzero.S │ ├── ffs.c │ ├── gcc.S │ ├── lshrdi3.c │ ├── memcpy.S │ ├── memmove.S │ ├── memset.S │ ├── overflow.c │ ├── quad.h │ ├── setjmp.S │ ├── sigcontext_dump.c │ └── stack_trace.c ├── gen │ ├── __main.c │ ├── gethostname.c │ ├── getline.c │ ├── hexdump.c │ ├── init_libc.c │ ├── load_libc.c │ ├── panic.c │ ├── sleep.c │ └── time.c ├── gmon │ ├── base_gprof_init.c │ ├── gmon.c │ └── mcount.c ├── malloc │ ├── calloc.c │ ├── free.c │ ├── malloc.c │ ├── malloc.h │ ├── malloc_memobj.c │ ├── mem_lock.c │ ├── memalign.c │ ├── morecore.c │ ├── mustcalloc.c │ ├── mustmalloc.c │ ├── realloc.c │ ├── sfree.c │ ├── smalloc.c │ └── smemalign.c ├── net │ ├── inet_addr.c │ ├── inet_aton.c │ └── inet_ntoa.c ├── stdio │ ├── comprintf.c │ ├── doprnt.c │ ├── doprnt.h │ ├── doscan.c │ ├── doscan.h │ ├── fclose.c │ ├── fflush.c │ ├── fgetc.c │ ├── fgets.c │ ├── fopen.c │ ├── fprintf.c │ ├── fputc.c │ ├── fputs.c │ ├── fread.c │ ├── fscanf.c │ ├── fseek.c │ ├── ftell.c │ ├── fwrite.c │ ├── getchar.c │ ├── gets.c │ ├── perror.c │ ├── printf.c │ ├── putchar.c │ ├── puts.c │ ├── rewind.c │ ├── sprintf.c │ ├── sscanf.c │ ├── stdio.c │ └── vfprintf.c ├── stdlib │ ├── abort.c │ ├── atexit.c │ ├── atol.c │ ├── environ.c │ ├── errno.c │ ├── exit.c │ ├── getenv.c │ ├── getopt.c │ ├── strtod.c │ ├── strtol.c │ └── strtoul.c ├── string │ ├── bcmp.c │ ├── memchr.c │ ├── memcmp.c │ ├── memset.c │ ├── rindex.c │ ├── strcasecmp.c │ ├── strcat.c │ ├── strchr.c │ ├── strcmp.c │ ├── strcpy.c │ ├── strcspn.c │ ├── strdup.c │ ├── strerror.c │ ├── strlen.c │ ├── strncat.c │ ├── strncmp.c │ ├── strncpy.c │ ├── strpbrk.c │ ├── strrchr.c │ ├── strsep.c │ ├── strspn.c │ ├── strstr.c │ ├── strtok.c │ └── strtok_r.c └── x86 │ ├── GNUmakerules │ ├── bcopy.S │ ├── bcopy16.S │ ├── bzero.S │ ├── gcc.S │ ├── i16 │ ├── i16_bcopy.S │ ├── i16_bzero.S │ ├── i16_doprnt.c │ ├── i16_panic.c │ ├── i16_printf.c │ └── i16_puts.c │ ├── mcount_md.S │ ├── memset.S │ ├── ntoh.S │ ├── setjmp.S │ ├── sigcontext_dump.c │ └── stack_trace.c ├── libmad ├── GNUmakefile.in ├── GNUmakerules ├── README ├── config.h ├── mad.h └── minimad │ ├── GNUmakefile.in │ ├── GNUmakerules │ └── minimad.c ├── linux ├── COPYING ├── README ├── dev │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── NOTES │ ├── README │ ├── autoirq.c │ ├── bios32.c │ ├── block.c │ ├── block.h │ ├── block_glue.c │ ├── dma-glue.c │ ├── driver.c │ ├── ethernet.c │ ├── ethernet.h │ ├── floppy.c │ ├── global.h │ ├── glue.h │ ├── ide.c │ ├── init.c │ ├── init.h │ ├── init_all.c │ ├── init_blk.c │ ├── init_ethernet.c │ ├── init_net.c │ ├── init_osenv.c │ ├── init_scsi.c │ ├── init_sound.c │ ├── irq.c │ ├── irq.h │ ├── linux_emul.h │ ├── misc.c │ ├── net.c │ ├── net.h │ ├── net_debug.c │ ├── net_debug.h │ ├── net_glue.c │ ├── ofw.c │ ├── pfq_reset_path.c │ ├── pfq_root.c │ ├── port.c │ ├── sched.c │ ├── sched.h │ ├── scsi_glue.c │ ├── scsi_glue.h │ ├── skbuff.c │ ├── skbuff_mem.c │ ├── softintr.c │ ├── sound_glue.c │ └── timer.c ├── fs │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── TODO │ ├── current.c │ ├── current.h │ ├── dev.c │ ├── dev.h │ ├── errno.c │ ├── errno.h │ ├── file.c │ ├── filesystem.c │ ├── filesystems.awk │ ├── floppy.c │ ├── global.h │ ├── glue.c │ ├── hashtab.c │ ├── hashtab.h │ ├── init.c │ ├── openfile.c │ ├── time.c │ └── types.h ├── shared │ ├── GNUmakerules │ ├── README │ ├── arm32 │ │ └── s_intr.c │ ├── global.h │ ├── global.h.sh │ ├── libc │ │ ├── README │ │ ├── assert.h │ │ ├── boolean.h │ │ ├── panic.c │ │ ├── printf.c │ │ ├── stdarg.h │ │ └── vsprintf.c │ ├── osenv.c │ ├── osenv.h │ ├── s_init.c │ ├── s_kmem.c │ ├── s_misc.c │ ├── s_sched.c │ ├── shared.h │ └── x86 │ │ └── s_intr.c └── src │ ├── README │ ├── arch │ ├── arm │ │ ├── kernel │ │ │ ├── dma-isa.c │ │ │ ├── dma-isa.h │ │ │ ├── dma-shark.c │ │ │ ├── dma.c │ │ │ └── dma.h │ │ └── lib │ │ │ ├── bitops.S │ │ │ └── io.S │ └── i386 │ │ └── lib │ │ ├── getuser.S │ │ ├── putuser.S │ │ └── semaphore.S │ ├── drivers │ ├── block │ │ ├── cmd640.c │ │ ├── floppy.c │ │ ├── genhd.c │ │ ├── ide-cd.c │ │ ├── ide-cd.h │ │ ├── ide-disk.c │ │ ├── ide-dma.c │ │ ├── ide-floppy.c │ │ ├── ide-pci.c │ │ ├── ide-probe.c │ │ ├── ide.c │ │ ├── ide.h │ │ ├── ide_modes.h │ │ └── rz1000.c │ ├── cdrom │ │ └── cdrom.c │ ├── net │ │ ├── 3c501.c │ │ ├── 3c503.c │ │ ├── 3c503.h │ │ ├── 3c505.c │ │ ├── 3c505.h │ │ ├── 3c507.c │ │ ├── 3c509.c │ │ ├── 3c59x.c │ │ ├── 8390.c │ │ ├── 8390.h │ │ ├── ac3200.c │ │ ├── at1700.c │ │ ├── cs89x0.c │ │ ├── cs89x0.h │ │ ├── de4x5.c │ │ ├── de4x5.h │ │ ├── depca.c │ │ ├── depca.h │ │ ├── e2100.c │ │ ├── eepro.c │ │ ├── eepro100.c │ │ ├── eexpress.c │ │ ├── eexpress.h │ │ ├── epic100.c │ │ ├── eth16i.c │ │ ├── ewrk3.c │ │ ├── ewrk3.h │ │ ├── fmv18x.c │ │ ├── hp-plus.c │ │ ├── hp.c │ │ ├── hp100.c │ │ ├── hp100.h │ │ ├── lance.c │ │ ├── ne.c │ │ ├── net_init.c │ │ ├── ni52.c │ │ ├── ni52.h │ │ ├── ni65.c │ │ ├── ni65.h │ │ ├── seeq8005.c │ │ ├── seeq8005.h │ │ ├── sk_g16.c │ │ ├── sk_g16.h │ │ ├── smc-ultra.c │ │ ├── smc9194.c │ │ ├── smc9194.h │ │ ├── tulip.c │ │ ├── wd.c │ │ └── znet.c │ ├── pci │ │ ├── oldproc.c │ │ └── pci.c │ ├── scsi │ │ ├── 53c7,8xx.c │ │ ├── 53c7,8xx.h │ │ ├── 53c7,8xx.scr │ │ ├── 53c8xx_d.h │ │ ├── 53c8xx_u.h │ │ ├── AM53C974.c │ │ ├── AM53C974.h │ │ ├── BusLogic.c │ │ ├── BusLogic.h │ │ ├── FlashPoint.c │ │ ├── NCR5380.c │ │ ├── NCR5380.h │ │ ├── NCR53c406a.c │ │ ├── NCR53c406a.h │ │ ├── advansys.c │ │ ├── advansys.h │ │ ├── aha152x.c │ │ ├── aha152x.h │ │ ├── aha1542.c │ │ ├── aha1542.h │ │ ├── aha1740.c │ │ ├── aha1740.h │ │ ├── aic7xxx.c │ │ ├── aic7xxx.h │ │ ├── aic7xxx │ │ │ ├── aic7xxx.reg │ │ │ ├── aic7xxx.seq │ │ │ ├── scsi_message.h │ │ │ └── sequencer.h │ │ ├── aic7xxx_proc.c │ │ ├── aic7xxx_reg.h │ │ ├── aic7xxx_seq.c │ │ ├── constants.c │ │ ├── constants.h │ │ ├── dtc.c │ │ ├── dtc.h │ │ ├── eata.c │ │ ├── eata.h │ │ ├── eata_dma.c │ │ ├── eata_dma.h │ │ ├── eata_dma_proc.c │ │ ├── eata_dma_proc.h │ │ ├── eata_generic.h │ │ ├── eata_pio.c │ │ ├── eata_pio.h │ │ ├── eata_pio_proc.c │ │ ├── fdomain.c │ │ ├── fdomain.h │ │ ├── g_NCR5380.c │ │ ├── g_NCR5380.h │ │ ├── hosts.c │ │ ├── hosts.h │ │ ├── in2000.c │ │ ├── in2000.h │ │ ├── ncr53c8xx.c │ │ ├── ncr53c8xx.h │ │ ├── pas16.c │ │ ├── pas16.h │ │ ├── qlogicfas.c │ │ ├── qlogicfas.h │ │ ├── qlogicisp.c │ │ ├── qlogicisp.h │ │ ├── qlogicisp_asm.c │ │ ├── script_asm.pl │ │ ├── scsi.c │ │ ├── scsi.h │ │ ├── scsi_debug.c │ │ ├── scsi_debug.h │ │ ├── scsi_error.c │ │ ├── scsi_ioctl.c │ │ ├── scsi_obsolete.c │ │ ├── scsi_obsolete.h │ │ ├── scsi_queue.c │ │ ├── scsicam.c │ │ ├── sd.c │ │ ├── sd.h │ │ ├── sd_ioctl.c │ │ ├── seagate.c │ │ ├── seagate.h │ │ ├── sym53c8xx_defs.h │ │ ├── t128.c │ │ ├── t128.h │ │ ├── u14-34f.c │ │ ├── u14-34f.h │ │ ├── ultrastor.c │ │ ├── ultrastor.h │ │ ├── wd7000.c │ │ └── wd7000.h │ └── sound │ │ ├── audio.c │ │ ├── audio_syms.c │ │ ├── coproc.h │ │ ├── dev_table.c │ │ ├── dev_table.h │ │ ├── dmabuf.c │ │ ├── legacy.h │ │ ├── os.h │ │ ├── sb.h │ │ ├── sb_audio.c │ │ ├── sb_card.c │ │ ├── sb_common.c │ │ ├── sb_ess.c │ │ ├── sb_ess.h │ │ ├── sb_midi.c │ │ ├── sb_mixer.c │ │ ├── sb_mixer.h │ │ ├── sound_calls.h │ │ ├── sound_config.h │ │ ├── sound_core.c │ │ ├── sound_firmware.c │ │ ├── sound_firmware.h │ │ ├── sound_syms.c │ │ ├── sound_timer.c │ │ ├── soundcard.c │ │ ├── soundmodule.h │ │ ├── soundvers.h │ │ ├── uart401.c │ │ └── ulaw.h │ ├── fs │ ├── affs │ │ ├── amigaffs.c │ │ ├── bitmap.c │ │ ├── dir.c │ │ ├── file.c │ │ ├── inode.c │ │ ├── namei.c │ │ ├── super.c │ │ └── symlink.c │ ├── attr.c │ ├── bad_inode.c │ ├── buffer.c │ ├── dcache.c │ ├── ext2 │ │ ├── CHANGES │ │ ├── acl.c │ │ ├── balloc.c │ │ ├── bitmap.c │ │ ├── dir.c │ │ ├── file.c │ │ ├── fsync.c │ │ ├── ialloc.c │ │ ├── inode.c │ │ ├── ioctl.c │ │ ├── namei.c │ │ ├── super.c │ │ ├── symlink.c │ │ └── truncate.c │ ├── fat │ │ ├── buffer.c │ │ ├── cache.c │ │ ├── cvf.c │ │ ├── dir.c │ │ ├── fatfs_syms.c │ │ ├── file.c │ │ ├── inode.c │ │ ├── misc.c │ │ ├── mmap.c │ │ ├── msbuffer.h │ │ ├── tables.c │ │ └── tables.h │ ├── hpfs │ │ ├── hpfs.h │ │ ├── hpfs_caps.c │ │ ├── hpfs_caps.h │ │ └── hpfs_fs.c │ ├── inode.c │ ├── isofs │ │ ├── dir.c │ │ ├── file.c │ │ ├── inode.c │ │ ├── joliet.c │ │ ├── namei.c │ │ ├── rock.c │ │ ├── rock.h │ │ ├── symlink.c │ │ └── util.c │ ├── minix │ │ ├── bitmap.c │ │ ├── dir.c │ │ ├── file.c │ │ ├── fsync.c │ │ ├── inode.c │ │ ├── namei.c │ │ ├── symlink.c │ │ └── truncate.c │ ├── msdos │ │ ├── msdosfs_syms.c │ │ └── namei.c │ ├── namei.c │ ├── nls │ │ └── nls_base.c │ ├── noquot.c │ ├── super.c │ ├── sysv │ │ ├── INTRO │ │ ├── balloc.c │ │ ├── dir.c │ │ ├── file.c │ │ ├── fsync.c │ │ ├── ialloc.c │ │ ├── inode.c │ │ ├── namei.c │ │ ├── symlink.c │ │ └── truncate.c │ ├── ufs │ │ ├── acl.c │ │ ├── balloc.c │ │ ├── cylinder.c │ │ ├── dir.c │ │ ├── file.c │ │ ├── ialloc.c │ │ ├── inode.c │ │ ├── namei.c │ │ ├── super.c │ │ ├── swab.h │ │ ├── symlink.c │ │ ├── truncate.c │ │ ├── util.c │ │ └── util.h │ └── vfat │ │ ├── namei.c │ │ └── vfatfs_syms.c │ ├── include │ ├── asm-arm │ │ ├── a.out.h │ │ ├── arcaudio.h │ │ ├── arch-arc │ │ │ ├── a.out.h │ │ │ ├── dma.h │ │ │ ├── hardware.h │ │ │ ├── ide.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── irqs.h │ │ │ ├── keyboard.h │ │ │ ├── memory.h │ │ │ ├── oldlatches.h │ │ │ ├── processor.h │ │ │ ├── serial.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── timex.h │ │ │ └── uncompress.h │ │ ├── arch-ebsa110 │ │ │ ├── a.out.h │ │ │ ├── dma.h │ │ │ ├── hardware.h │ │ │ ├── ide.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── irqs.h │ │ │ ├── memory.h │ │ │ ├── param.h │ │ │ ├── processor.h │ │ │ ├── serial.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── timex.h │ │ │ └── uncompress.h │ │ ├── arch-ebsa285 │ │ │ ├── a.out.h │ │ │ ├── dma.h │ │ │ ├── hardware.h │ │ │ ├── ide.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── irqs.h │ │ │ ├── keyboard.h │ │ │ ├── memory.h │ │ │ ├── param.h │ │ │ ├── processor.h │ │ │ ├── serial.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── timex.h │ │ │ └── uncompress.h │ │ ├── arch-nexuspci │ │ │ ├── a.out.h │ │ │ ├── dma.h │ │ │ ├── hardware.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── irqs.h │ │ │ ├── memory.h │ │ │ ├── param.h │ │ │ ├── processor.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── timex.h │ │ │ └── uncompress.h │ │ ├── arch-rpc │ │ │ ├── a.out.h │ │ │ ├── dma.h │ │ │ ├── hardware.h │ │ │ ├── ide.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── irqs.h │ │ │ ├── keyboard.h │ │ │ ├── memory.h │ │ │ ├── mm-init.h │ │ │ ├── param.h │ │ │ ├── processor.h │ │ │ ├── serial.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── timex.h │ │ │ └── uncompress.h │ │ ├── arch-shark │ │ │ ├── a.out.h │ │ │ ├── dma.h │ │ │ ├── hardware.h │ │ │ ├── ide.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── irqs.h │ │ │ ├── keyboard.h │ │ │ ├── memory.h │ │ │ ├── param.h │ │ │ ├── processor.h │ │ │ ├── serial.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── timex.h │ │ │ └── uncompress.h │ │ ├── assembler.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── bugs.h │ │ ├── byteorder.h │ │ ├── cache.h │ │ ├── checksum.h │ │ ├── current.h │ │ ├── dec21285.h │ │ ├── delay.h │ │ ├── dma.h │ │ ├── ecard.h │ │ ├── elf.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fiq.h │ │ ├── floppy.h │ │ ├── hardirq.h │ │ ├── hardware.h │ │ ├── ide.h │ │ ├── init.h │ │ ├── io.h │ │ ├── ioc.h │ │ ├── ioctl.h │ │ ├── ioctls.h │ │ ├── iomd.h │ │ ├── ipc.h │ │ ├── irq.h │ │ ├── keyboard.h │ │ ├── leds.h │ │ ├── limits.h │ │ ├── linux_logo.h │ │ ├── md.h │ │ ├── memc.h │ │ ├── mman.h │ │ ├── mmu_context.h │ │ ├── namei.h │ │ ├── page.h │ │ ├── param.h │ │ ├── pgtable.h │ │ ├── poll.h │ │ ├── posix_types.h │ │ ├── proc-armo │ │ │ ├── assembler.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── mm-init.h │ │ │ ├── page.h │ │ │ ├── param.h │ │ │ ├── pgtable.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── semaphore.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── uaccess.h │ │ │ └── uncompress.h │ │ ├── proc-armv │ │ │ ├── assembler.h │ │ │ ├── elf.h │ │ │ ├── io.h │ │ │ ├── mm-init.h │ │ │ ├── page.h │ │ │ ├── param.h │ │ │ ├── pgtable.h │ │ │ ├── processor.h │ │ │ ├── ptrace.h │ │ │ ├── semaphore.h │ │ │ ├── shmparam.h │ │ │ ├── system.h │ │ │ ├── uaccess.h │ │ │ └── uncompress.h │ │ ├── proc-fns.h │ │ ├── processor.h │ │ ├── procinfo.h │ │ ├── ptrace.h │ │ ├── resource.h │ │ ├── scatterlist.h │ │ ├── segment.h │ │ ├── semaphore-helper.h │ │ ├── semaphore.h │ │ ├── serial.h │ │ ├── setup.h │ │ ├── shmparam.h │ │ ├── sigcontext.h │ │ ├── siginfo.h │ │ ├── signal.h │ │ ├── smp.h │ │ ├── smplock.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── softirq.h │ │ ├── spinlock.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── string.h │ │ ├── system.h │ │ ├── termbits.h │ │ ├── termios.h │ │ ├── timex.h │ │ ├── types.h │ │ ├── uaccess.h │ │ ├── ucontext.h │ │ ├── unaligned.h │ │ ├── unistd.h │ │ ├── user.h │ │ ├── vga.h │ │ └── vt.h │ ├── asm-i386 │ │ ├── a.out.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── boot.h │ │ ├── bugs.h │ │ ├── byteorder.h │ │ ├── cache.h │ │ ├── checksum.h │ │ ├── cobalt.h │ │ ├── current.h │ │ ├── debugreg.h │ │ ├── delay.h │ │ ├── desc.h │ │ ├── dma.h │ │ ├── elf.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fixmap.h │ │ ├── floppy.h │ │ ├── hardirq.h │ │ ├── i82489.h │ │ ├── ide.h │ │ ├── init.h │ │ ├── io.h │ │ ├── ioctl.h │ │ ├── ioctls.h │ │ ├── ipc.h │ │ ├── irq.h │ │ ├── keyboard.h │ │ ├── ldt.h │ │ ├── linux_logo.h │ │ ├── lithium.h │ │ ├── locks.h │ │ ├── math_emu.h │ │ ├── mca_dma.h │ │ ├── md.h │ │ ├── mman.h │ │ ├── mmu_context.h │ │ ├── msr.h │ │ ├── mtrr.h │ │ ├── namei.h │ │ ├── page.h │ │ ├── page_offset.h │ │ ├── param.h │ │ ├── pgtable.h │ │ ├── poll.h │ │ ├── posix_types.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ ├── resource.h │ │ ├── scatterlist.h │ │ ├── segment.h │ │ ├── semaphore-helper.h │ │ ├── semaphore.h │ │ ├── serial.h │ │ ├── setup.h │ │ ├── shmparam.h │ │ ├── sigcontext.h │ │ ├── siginfo.h │ │ ├── signal.h │ │ ├── smp.h │ │ ├── smplock.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── softirq.h │ │ ├── spinlock.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── string-486.h │ │ ├── string.h │ │ ├── system.h │ │ ├── termbits.h │ │ ├── termios.h │ │ ├── timex.h │ │ ├── types.h │ │ ├── uaccess.h │ │ ├── ucontext.h │ │ ├── unaligned.h │ │ ├── unistd.h │ │ ├── user.h │ │ ├── vga.h │ │ └── vm86.h │ ├── linux │ │ ├── a.out.h │ │ ├── acct.h │ │ ├── adfs_fs.h │ │ ├── adfs_fs_i.h │ │ ├── adfs_fs_sb.h │ │ ├── affs_fs.h │ │ ├── affs_fs_i.h │ │ ├── affs_fs_sb.h │ │ ├── affs_hardblocks.h │ │ ├── amifd.h │ │ ├── amifdreg.h │ │ ├── amigaffs.h │ │ ├── apm_bios.h │ │ ├── arcdevice.h │ │ ├── atalk.h │ │ ├── atari_rootsec.h │ │ ├── auto_fs.h │ │ ├── autoconf.h │ │ ├── awe_voice.h │ │ ├── ax25.h │ │ ├── b1lli.h │ │ ├── b1pcmcia.h │ │ ├── baycom.h │ │ ├── binfmts.h │ │ ├── bios32.h │ │ ├── bitops.h │ │ ├── blk.h │ │ ├── blkdev.h │ │ ├── bpqether.h │ │ ├── busmouse.h │ │ ├── byteorder │ │ │ ├── big_endian.h │ │ │ ├── generic.h │ │ │ ├── little_endian.h │ │ │ ├── pdp_endian.h │ │ │ ├── swab.h │ │ │ └── swabb.h │ │ ├── capability.h │ │ ├── capi.h │ │ ├── cd1400.h │ │ ├── cdk.h │ │ ├── cdrom.h │ │ ├── coda.h │ │ ├── coda_cache.h │ │ ├── coda_fs_i.h │ │ ├── coda_linux.h │ │ ├── coda_opstats.h │ │ ├── coda_proc.h │ │ ├── coda_psdev.h │ │ ├── coff.h │ │ ├── comstats.h │ │ ├── concap.h │ │ ├── config.h │ │ ├── console.h │ │ ├── console_struct.h │ │ ├── consolemap.h │ │ ├── ctype.h │ │ ├── cyclades.h │ │ ├── dcache.h │ │ ├── delay.h │ │ ├── devpts_fs.h │ │ ├── digi1.h │ │ ├── digiFep1.h │ │ ├── digiPCI.h │ │ ├── dio.h │ │ ├── dirent.h │ │ ├── dlists.h │ │ ├── dmascc.h │ │ ├── dtlk.h │ │ ├── efs_dir.h │ │ ├── efs_fs.h │ │ ├── efs_fs_i.h │ │ ├── efs_fs_sb.h │ │ ├── efs_vh.h │ │ ├── elf.h │ │ ├── elfcore.h │ │ ├── epca.h │ │ ├── epcaconfig.h │ │ ├── errno.h │ │ ├── errqueue.h │ │ ├── etherdevice.h │ │ ├── ext2_fs.h │ │ ├── ext2_fs_i.h │ │ ├── ext2_fs_sb.h │ │ ├── fat_cvf.h │ │ ├── fb.h │ │ ├── fcdevice.h │ │ ├── fcntl.h │ │ ├── fd.h │ │ ├── fddidevice.h │ │ ├── fdreg.h │ │ ├── file.h │ │ ├── filter.h │ │ ├── firewall.h │ │ ├── fs.h │ │ ├── ftape-header-segment.h │ │ ├── ftape-vendors.h │ │ ├── ftape.h │ │ ├── genhd.h │ │ ├── ghash.h │ │ ├── hayesesp.h │ │ ├── hdlcdrv.h │ │ ├── hdreg.h │ │ ├── hfmodem.h │ │ ├── hfs_fs.h │ │ ├── hfs_fs_i.h │ │ ├── hfs_fs_sb.h │ │ ├── hfs_sysdep.h │ │ ├── hippidevice.h │ │ ├── hpfs_fs.h │ │ ├── hpfs_fs_i.h │ │ ├── hpfs_fs_sb.h │ │ ├── i2c.h │ │ ├── icmp.h │ │ ├── icmpv6.h │ │ ├── if.h │ │ ├── if_arcnet.h │ │ ├── if_arp.h │ │ ├── if_cablemodem.h │ │ ├── if_ec.h │ │ ├── if_eql.h │ │ ├── if_ether.h │ │ ├── if_fc.h │ │ ├── if_fddi.h │ │ ├── if_frad.h │ │ ├── if_hippi.h │ │ ├── if_ltalk.h │ │ ├── if_packet.h │ │ ├── if_plip.h │ │ ├── if_ppp.h │ │ ├── if_pppvar.h │ │ ├── if_shaper.h │ │ ├── if_slip.h │ │ ├── if_strip.h │ │ ├── if_tr.h │ │ ├── if_tunnel.h │ │ ├── igmp.h │ │ ├── in.h │ │ ├── in6.h │ │ ├── in_route.h │ │ ├── in_systm.h │ │ ├── inet.h │ │ ├── inetdevice.h │ │ ├── init.h │ │ ├── interrupt.h │ │ ├── ioctl.h │ │ ├── ioport.h │ │ ├── ip.h │ │ ├── ip_fw.h │ │ ├── ip_masq.h │ │ ├── ipc.h │ │ ├── ipsec.h │ │ ├── ipv6.h │ │ ├── ipv6_route.h │ │ ├── ipx.h │ │ ├── irda.h │ │ ├── isdn.h │ │ ├── isdn_compat.h │ │ ├── isdn_divertif.h │ │ ├── isdn_ppp.h │ │ ├── isdnif.h │ │ ├── isicom.h │ │ ├── iso_fs.h │ │ ├── iso_fs_i.h │ │ ├── iso_fs_sb.h │ │ ├── istallion.h │ │ ├── joystick.h │ │ ├── kbd_diacr.h │ │ ├── kbd_kern.h │ │ ├── kbd_ll.h │ │ ├── kd.h │ │ ├── kdev_t.h │ │ ├── kernel.h │ │ ├── kernel_stat.h │ │ ├── kernelcapi.h │ │ ├── keyboard.h │ │ ├── kmod.h │ │ ├── lapb.h │ │ ├── limits.h │ │ ├── linkage.h │ │ ├── linux_logo.h │ │ ├── list.h │ │ ├── lists.h │ │ ├── lockd │ │ │ ├── bind.h │ │ │ ├── debug.h │ │ │ ├── lockd.h │ │ │ ├── nlm.h │ │ │ ├── share.h │ │ │ ├── sm_inter.h │ │ │ └── xdr.h │ │ ├── locks.h │ │ ├── loop.h │ │ ├── lp.h │ │ ├── lp_intern.h │ │ ├── lp_m68k.h │ │ ├── lp_mfc.h │ │ ├── major.h │ │ ├── malloc.h │ │ ├── mc146818rtc.h │ │ ├── mca.h │ │ ├── md.h │ │ ├── minix_fs.h │ │ ├── minix_fs_i.h │ │ ├── minix_fs_sb.h │ │ ├── miscdevice.h │ │ ├── mm.h │ │ ├── mman.h │ │ ├── modsetver.h │ │ ├── module.h │ │ ├── mount.h │ │ ├── mpp.h │ │ ├── mroute.h │ │ ├── msdos_fs.h │ │ ├── msdos_fs_i.h │ │ ├── msdos_fs_sb.h │ │ ├── msg.h │ │ ├── mtio.h │ │ ├── nbd.h │ │ ├── ncp.h │ │ ├── ncp_fs.h │ │ ├── ncp_fs_i.h │ │ ├── ncp_fs_sb.h │ │ ├── ncp_mount.h │ │ ├── net.h │ │ ├── netbeui.h │ │ ├── netdevice.h │ │ ├── netlink.h │ │ ├── netrom.h │ │ ├── nfs.h │ │ ├── nfs3.h │ │ ├── nfs_fs.h │ │ ├── nfs_fs_i.h │ │ ├── nfs_fs_sb.h │ │ ├── nfs_mount.h │ │ ├── nfsd │ │ │ ├── auth.h │ │ │ ├── cache.h │ │ │ ├── const.h │ │ │ ├── debug.h │ │ │ ├── export.h │ │ │ ├── nfsd.h │ │ │ ├── nfsfh.h │ │ │ ├── stats.h │ │ │ ├── syscall.h │ │ │ ├── xdr.h │ │ │ └── xdr3.h │ │ ├── nfsiod.h │ │ ├── nls.h │ │ ├── notifier.h │ │ ├── ntfs_fs.h │ │ ├── ntfs_fs_i.h │ │ ├── ntfs_fs_sb.h │ │ ├── nubus.h │ │ ├── nvram.h │ │ ├── openpic.h │ │ ├── pagemap.h │ │ ├── param.h │ │ ├── parport.h │ │ ├── parport_pc.h │ │ ├── pc_keyb.h │ │ ├── pci.h │ │ ├── personality.h │ │ ├── pg.h │ │ ├── pipe_fs_i.h │ │ ├── pkt_cls.h │ │ ├── pkt_sched.h │ │ ├── poll.h │ │ ├── posix_types.h │ │ ├── ppp-comp.h │ │ ├── ppp.h │ │ ├── ppp_defs.h │ │ ├── prctl.h │ │ ├── proc_fs.h │ │ ├── ps2esdi.h │ │ ├── ptrace.h │ │ ├── qic117.h │ │ ├── qnx4_fs.h │ │ ├── qnx4_fs_i.h │ │ ├── qnx4_fs_sb.h │ │ ├── qnxtypes.h │ │ ├── quota.h │ │ ├── quotaops.h │ │ ├── raid0.h │ │ ├── raid1.h │ │ ├── raid5.h │ │ ├── random.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── rocket.h │ │ ├── romfs_fs.h │ │ ├── romfs_fs_i.h │ │ ├── romfs_fs_sb.h │ │ ├── rose.h │ │ ├── route.h │ │ ├── rpcsock.h │ │ ├── rtnetlink.h │ │ ├── sc26198.h │ │ ├── scc.h │ │ ├── sched.h │ │ ├── sdla.h │ │ ├── sdla_fr.h │ │ ├── sdla_ppp.h │ │ ├── sdla_x25.h │ │ ├── sdladrv.h │ │ ├── sdlasfm.h │ │ ├── securebits.h │ │ ├── selection.h │ │ ├── sem.h │ │ ├── serial.h │ │ ├── serial167.h │ │ ├── serialP.h │ │ ├── serial_reg.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── skbuff.h │ │ ├── slab.h │ │ ├── smb.h │ │ ├── smb_fs.h │ │ ├── smb_fs_i.h │ │ ├── smb_fs_sb.h │ │ ├── smb_mount.h │ │ ├── smbno.h │ │ ├── smp.h │ │ ├── smp_lock.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── sound.h │ │ ├── soundcard.h │ │ ├── soundmodem.h │ │ ├── stallion.h │ │ ├── stat.h │ │ ├── stddef.h │ │ ├── string.h │ │ ├── sunrpc │ │ │ ├── auth.h │ │ │ ├── clnt.h │ │ │ ├── debug.h │ │ │ ├── msg_prot.h │ │ │ ├── sched.h │ │ │ ├── stats.h │ │ │ ├── svc.h │ │ │ ├── svcauth.h │ │ │ ├── svcsock.h │ │ │ ├── types.h │ │ │ ├── xdr.h │ │ │ └── xprt.h │ │ ├── swap.h │ │ ├── swapctl.h │ │ ├── synclink.h │ │ ├── sys.h │ │ ├── sysctl.h │ │ ├── sysrq.h │ │ ├── sysv_fs.h │ │ ├── sysv_fs_i.h │ │ ├── sysv_fs_sb.h │ │ ├── tasks.h │ │ ├── tcp.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── times.h │ │ ├── timex.h │ │ ├── tpqic02.h │ │ ├── tqueue.h │ │ ├── trdevice.h │ │ ├── tty.h │ │ ├── tty_driver.h │ │ ├── tty_flip.h │ │ ├── tty_ldisc.h │ │ ├── types.h │ │ ├── udp.h │ │ ├── ufs_fs.h │ │ ├── ufs_fs_i.h │ │ ├── ufs_fs_sb.h │ │ ├── uio.h │ │ ├── ultrasound.h │ │ ├── umsdos_fs.h │ │ ├── umsdos_fs.p │ │ ├── umsdos_fs_i.h │ │ ├── un.h │ │ ├── unistd.h │ │ ├── user.h │ │ ├── utime.h │ │ ├── uts.h │ │ ├── utsname.h │ │ ├── version.h │ │ ├── vfs.h │ │ ├── video_decoder.h │ │ ├── video_encoder.h │ │ ├── videodev.h │ │ ├── videotext.h │ │ ├── vmalloc.h │ │ ├── vt.h │ │ ├── vt_buffer.h │ │ ├── vt_kern.h │ │ ├── wait.h │ │ ├── wanpipe.h │ │ ├── wanrouter.h │ │ ├── watchdog.h │ │ ├── wavefront.h │ │ ├── wireless.h │ │ ├── wrapper.h │ │ ├── x25.h │ │ ├── yam.h │ │ ├── zftape.h │ │ └── zorro.h │ ├── net │ │ └── README │ └── scsi │ │ ├── scsi.h │ │ ├── scsi_ioctl.h │ │ ├── scsicam.h │ │ └── sg.h │ └── lib │ └── ctype.c ├── lmm ├── GNUmakefile.in ├── README ├── lmm.h ├── lmm_add_free.c ├── lmm_add_region.c ├── lmm_alloc.c ├── lmm_alloc_aligned.c ├── lmm_alloc_gen.c ├── lmm_alloc_page.c ├── lmm_avail.c ├── lmm_avail_in.c ├── lmm_dump.c ├── lmm_find_free.c ├── lmm_free.c ├── lmm_free_page.c ├── lmm_init.c ├── lmm_remove_free.c └── lmm_stats.c ├── memdebug ├── GNUmakefile.in ├── GNUmakerules ├── README ├── TODO ├── arm32 │ ├── GNUmakerules │ └── memdebug_backtrace.c ├── memdebug.h ├── memdebug_alloc.c ├── memdebug_bogosity.c ├── memdebug_free.c ├── memdebug_getsize.c ├── memdebug_info_dump.c ├── memdebug_mark.c ├── memdebug_mem.c ├── memdebug_printf.c ├── memdebug_ptrchk.c ├── memdebug_sweep.c ├── memdebug_wrap.c └── x86 │ ├── GNUmakerules │ └── memdebug_backtrace.c ├── memfs ├── GNUmakefile.in ├── memfs_com.c └── memfs_osenv.h ├── modules.arm32.shark ├── modules.x86.pc ├── modules.x86.pc.full ├── netbsd ├── README ├── fs │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── TODO │ ├── arm32 │ │ ├── README │ │ ├── arm32 │ │ │ └── conf.c │ │ └── include │ │ │ ├── ansi.h │ │ │ ├── cdefs.h │ │ │ ├── cpu.h │ │ │ ├── cpufunc.h │ │ │ ├── disklabel.h │ │ │ ├── endian.h │ │ │ ├── intr.h │ │ │ ├── irqhandler.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── pmap.h │ │ │ ├── proc.h │ │ │ ├── psl.h │ │ │ ├── pte.h │ │ │ ├── signal.h │ │ │ ├── types.h │ │ │ └── vmparam.h │ ├── errno.c │ ├── errno.h │ ├── fs_fs.c │ ├── fs_glue.h │ ├── fs_netbsd.c │ ├── fs_node.c │ ├── fs_peropen.c │ ├── fs_thread.c │ ├── getproc.c │ ├── getproc.h │ ├── global.h │ ├── glue.c │ ├── hashtab.c │ ├── hashtab.h │ ├── kern_synch.c │ ├── osenv.c │ ├── osenv.h │ └── sys │ │ └── termios.h └── src │ └── sys │ ├── arch │ └── i386 │ │ ├── i386 │ │ └── conf.c │ │ └── include │ │ ├── ansi.h │ │ ├── cdefs.h │ │ ├── cpu.h │ │ ├── cpufunc.h │ │ ├── cputypes.h │ │ ├── disklabel.h │ │ ├── endian.h │ │ ├── frame.h │ │ ├── intr.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── pmap.h │ │ ├── proc.h │ │ ├── psl.h │ │ ├── pte.h │ │ ├── segments.h │ │ ├── signal.h │ │ ├── stdarg.h │ │ ├── trap.h │ │ ├── types.h │ │ └── vmparam.h │ ├── conf │ └── param.c │ ├── kern │ ├── kern_descrip.c │ ├── kern_prot.c │ ├── kern_subr.c │ ├── subr_xxx.c │ ├── sys_generic.c │ ├── vfs_bio.c │ ├── vfs_cache.c │ ├── vfs_cluster.c │ ├── vfs_conf.c │ ├── vfs_init.c │ ├── vfs_lockf.c │ ├── vfs_lookup.c │ ├── vfs_subr.c │ ├── vfs_syscalls.c │ ├── vfs_vnops.c │ ├── vnode_if.c │ ├── vnode_if.sh │ └── vnode_if.src │ ├── lib │ └── libkern │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── divdi3.c │ │ ├── libkern.h │ │ ├── memset.c │ │ ├── moddi3.c │ │ ├── qdivrem.c │ │ ├── quad.h │ │ ├── scanc.c │ │ ├── skpc.c │ │ ├── strcat.c │ │ ├── strncasecmp.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ └── udivdi3.c │ ├── miscfs │ ├── deadfs │ │ └── dead_vnops.c │ ├── fifofs │ │ ├── fifo.h │ │ └── fifo_vnops.c │ └── specfs │ │ ├── spec_vnops.c │ │ └── specdev.h │ ├── net │ └── radix.h │ ├── sys │ ├── acct.h │ ├── buf.h │ ├── callout.h │ ├── cdefs.h │ ├── conf.h │ ├── dirent.h │ ├── disklabel.h │ ├── dkbad.h │ ├── dkio.h │ ├── domain.h │ ├── errno.h │ ├── fcntl.h │ ├── file.h │ ├── filedesc.h │ ├── filio.h │ ├── ioccom.h │ ├── ioctl.h │ ├── kernel.h │ ├── lockf.h │ ├── malloc.h │ ├── mbuf.h │ ├── mount.h │ ├── namei.h │ ├── param.h │ ├── proc.h │ ├── queue.h │ ├── resource.h │ ├── resourcevar.h │ ├── select.h │ ├── signal.h │ ├── signalvar.h │ ├── socket.h │ ├── socketvar.h │ ├── sockio.h │ ├── stat.h │ ├── syscallargs.h │ ├── sysctl.h │ ├── syslimits.h │ ├── syslog.h │ ├── systm.h │ ├── time.h │ ├── timeb.h │ ├── times.h │ ├── trace.h │ ├── tty.h │ ├── ttycom.h │ ├── types.h │ ├── ucred.h │ ├── uio.h │ ├── un.h │ ├── unistd.h │ ├── utsname.h │ ├── vmmeter.h │ ├── vnode.h │ └── vnode_if.h │ ├── ufs │ ├── ffs │ │ ├── ffs_alloc.c │ │ ├── ffs_balloc.c │ │ ├── ffs_extern.h │ │ ├── ffs_inode.c │ │ ├── ffs_subr.c │ │ ├── ffs_tables.c │ │ ├── ffs_vfsops.c │ │ ├── ffs_vnops.c │ │ └── fs.h │ └── ufs │ │ ├── dinode.h │ │ ├── dir.h │ │ ├── inode.h │ │ ├── quota.h │ │ ├── ufs_bmap.c │ │ ├── ufs_extern.h │ │ ├── ufs_ihash.c │ │ ├── ufs_inode.c │ │ ├── ufs_lookup.c │ │ ├── ufs_quota.c │ │ ├── ufs_readwrite.c │ │ ├── ufs_vfsops.c │ │ ├── ufs_vnops.c │ │ └── ufsmount.h │ └── vm │ ├── device_pager.h │ ├── lock.h │ ├── pmap.h │ ├── swap_pager.h │ ├── vm.h │ ├── vm_conf.h │ ├── vm_extern.h │ ├── vm_inherit.h │ ├── vm_kern.h │ ├── vm_map.h │ ├── vm_object.h │ ├── vm_page.h │ ├── vm_pageout.h │ ├── vm_pager.h │ ├── vm_param.h │ ├── vm_prot.h │ └── vnode_pager.h ├── netdisk ├── GNUmakefile.in ├── GNUmakerules ├── README ├── debug.h ├── devices.c ├── driver.c ├── driver.h ├── fileops.c ├── fileops.h ├── image.c ├── image.h ├── imagehdr.h ├── log.c ├── main.c ├── mem_lock.c ├── misc.c ├── misc.h ├── perfmon.h ├── rpc.c ├── rpc.h ├── sleep.c ├── socket.c ├── socket.h ├── timer.c └── timer.h ├── oskit ├── GNUmakefile.in ├── GNUmakerules ├── README ├── amm.h ├── anno.h ├── arm32 │ ├── README │ ├── asm.h │ ├── atomic.h │ ├── base_cpu.h │ ├── base_irq.h │ ├── base_multiboot.h │ ├── base_paging.h │ ├── base_stack.h │ ├── base_trap.h │ ├── base_vm.h │ ├── byteorder.h │ ├── c │ │ ├── float.h │ │ ├── limits.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ └── stdarg.h │ ├── debug.h │ ├── dev.h │ ├── endian.h │ ├── exec │ │ └── elf.h │ ├── gdb.h │ ├── multiboot.h │ ├── ofw │ │ ├── ofw.h │ │ ├── ofw_cons.h │ │ └── ofw_console.h │ ├── page.h │ ├── paging.h │ ├── param.h │ ├── phys_lmm.h │ ├── physmem.h │ ├── pio.h │ ├── proc_reg.h │ ├── reset.h │ ├── shark │ │ ├── base_console.h │ │ ├── base_irq.h │ │ ├── base_multiboot.h │ │ ├── base_vm.h │ │ ├── com_cons.h │ │ ├── com_console.h │ │ ├── direct_cons.h │ │ ├── direct_console.h │ │ ├── gdb_console.h │ │ ├── irq_list.h │ │ ├── isa.h │ │ ├── keyboard.h │ │ ├── phys_lmm.h │ │ ├── pic.h │ │ ├── pit.h │ │ └── rtc.h │ ├── softfloat.h │ ├── spin_lock.h │ ├── trap.h │ ├── types.h │ └── uvm.h ├── base_critical.h ├── boolean.h ├── boot │ └── bootwhat.h ├── c │ ├── README │ ├── a.out.h │ ├── alloca.h │ ├── arpa │ │ ├── inet.h │ │ └── nameser.h │ ├── assert.h │ ├── ctype.h │ ├── dirent.h │ ├── environment.h │ ├── errno.h │ ├── fcntl.h │ ├── fd.h │ ├── float.h │ ├── fs.h │ ├── limits.h │ ├── malloc.h │ ├── math.h │ ├── mqueue.h │ ├── netdb.h │ ├── netinet │ │ ├── in.h │ │ ├── ip.h │ │ ├── tcp.h │ │ └── udp.h │ ├── resolv.h │ ├── semaphore.h │ ├── setjmp.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── sys │ │ ├── filio.h │ │ ├── gmon.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── mman.h │ │ ├── mount.h │ │ ├── param.h │ │ ├── profile.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── time.h │ │ ├── ttycom.h │ │ ├── types.h │ │ ├── uio.h │ │ ├── utsname.h │ │ └── wait.h │ ├── syslog.h │ ├── termios.h │ ├── time.h │ ├── unistd.h │ ├── utime.h │ └── wchar.h ├── clientos.h ├── com.h ├── com │ ├── README │ ├── aggregate.h │ ├── charqueue.h │ ├── condvar.h │ ├── libcenv.h │ ├── listener.h │ ├── listener_fanout.h │ ├── listener_mgr.h │ ├── lock.h │ ├── lock_mgr.h │ ├── mem.h │ ├── pipe.h │ ├── pqueue.h │ ├── queue.h │ ├── random.h │ ├── services.h │ ├── sfs.h │ ├── storage.h │ ├── stream.h │ ├── trivial_stream.h │ └── wrapper.h ├── compiler.h ├── comsid.h ├── config.h.in ├── console.h ├── debug.h ├── dev │ ├── GUID │ ├── README │ ├── blk.h │ ├── bus.h │ ├── clock.h │ ├── dev.h │ ├── device.h │ ├── driver.h │ ├── error.h │ ├── ethernet.h │ ├── freebsd.h │ ├── freebsd_isa.h │ ├── ide.h │ ├── isa.h │ ├── linux.h │ ├── linux_ethernet.h │ ├── linux_scsi.h │ ├── membus.h │ ├── native.h │ ├── net.h │ ├── osenv.h │ ├── osenv_device.h │ ├── osenv_driver.h │ ├── osenv_intr.h │ ├── osenv_ioport.h │ ├── osenv_irq.h │ ├── osenv_isa.h │ ├── osenv_log.h │ ├── osenv_mem.h │ ├── osenv_pci_config.h │ ├── osenv_rtc.h │ ├── osenv_safe.h │ ├── osenv_sleep.h │ ├── osenv_timer.h │ ├── scsi.h │ ├── serial.h │ ├── soa.h │ ├── softirq.h │ ├── timer.h │ └── tty.h ├── diskpart │ ├── README │ ├── dec.h │ ├── disklabel.h │ ├── diskpart.h │ ├── omron.h │ ├── pcbios.h │ └── vtoc.h ├── dpf.h ├── error.h ├── exec │ ├── README │ ├── a.out.h │ ├── elf.h │ └── exec.h ├── flask │ ├── avc.h │ ├── avc_callback.h │ ├── avc_ss.h │ ├── flask_types.h │ └── security.h ├── fs │ ├── NOTES │ ├── README │ ├── dir.h │ ├── dir_secure.h │ ├── dirents.h │ ├── file.h │ ├── file_secure.h │ ├── filepsid.h │ ├── filesystem.h │ ├── filesystem_secure.h │ ├── fs.h │ ├── fsnamespace.h │ ├── linux.h │ ├── linux_filesystems.h │ ├── memfs.h │ ├── netbsd.h │ ├── openfile.h │ ├── read.h │ └── soa.h ├── fudp.h ├── gdb.h ├── gdb_serial.h ├── hpfq.h ├── io │ ├── README │ ├── absio.h │ ├── asyncio.h │ ├── blkio.h │ ├── bufio.h │ ├── bufio_stream.h │ ├── bufiovec.h │ ├── cacheio.h │ ├── chario.h │ ├── dpf.h │ ├── iovec.h │ ├── mouse.h │ ├── netio.h │ ├── netio_fanout.h │ ├── posixio.h │ ├── skbufio.h │ ├── spf.h │ ├── ttystream.h │ └── uspf.h ├── lmm.h ├── memdebug.h ├── mib.h ├── mib │ ├── icmp.h │ ├── interfaces.h │ ├── ip.h │ ├── snmp.h │ ├── system.h │ ├── tcp.h │ └── udp.h ├── misc │ ├── README │ └── sysconf.h ├── net │ ├── README │ ├── arp.h │ ├── bootp.h │ ├── ether.h │ ├── freebsd.h │ ├── socket.h │ └── socket_secure.h ├── page.h ├── pd.h ├── principal.h ├── queue.h ├── smp.h ├── smp │ └── README ├── sproc.h ├── startup.h ├── svgalib │ └── vga.h ├── svm.h ├── threads │ ├── cpuinherit.h │ ├── ipc.h │ ├── pthread.h │ ├── sched.h │ ├── sched_edf.h │ └── sched_stride.h ├── time.h ├── tmcp.h ├── tty.h ├── types.h ├── udplib.h ├── unsupp │ ├── README │ ├── bus_walk.h │ └── nullpointer.h ├── uvm.h ├── version.h ├── video │ ├── fb.h │ └── s3.h └── x86 │ ├── README │ ├── anno.h │ ├── asm.h │ ├── atomic.h │ ├── base_asm.sym │ ├── base_cpu.h │ ├── base_gdt.h │ ├── base_idt.h │ ├── base_irq.h │ ├── base_multiboot.h │ ├── base_paging.h │ ├── base_stack.h │ ├── base_trap.h │ ├── base_tss.h │ ├── base_vm.h │ ├── byteorder.h │ ├── c │ ├── float.h │ ├── limits.h │ ├── setjmp.h │ ├── signal.h │ └── stdarg.h │ ├── cpuid.h │ ├── debug.h │ ├── debug_reg.h │ ├── dev.h │ ├── dos │ ├── dpmi.h │ └── vcpi.h │ ├── eflags.h │ ├── endian.h │ ├── exec │ └── elf.h │ ├── far_ptr.h │ ├── fp_reg.h │ ├── gate_init.h │ ├── gdb.h │ ├── i16.h │ ├── multiboot.h │ ├── page.h │ ├── paging.h │ ├── param.h │ ├── pc │ ├── a20.h │ ├── base_console.h │ ├── base_i16.h │ ├── base_irq.h │ ├── base_multiboot.h │ ├── base_real.h │ ├── bios32.h │ ├── com_cons.h │ ├── com_console.h │ ├── debug.h │ ├── dev.h │ ├── direct_cons.h │ ├── direct_console.h │ ├── dos_io.h │ ├── gdb_console.h │ ├── i16_bios.h │ ├── i16_dos.h │ ├── intr_cons.h │ ├── intr_console.h │ ├── irq_list.h │ ├── isa.h │ ├── keyboard.h │ ├── phys_lmm.h │ ├── pic.h │ ├── pit.h │ ├── reset.h │ ├── rtc.h │ ├── serial_gdb.h │ └── speaker.h │ ├── perfmon.h │ ├── phys_lmm.h │ ├── physmem.h │ ├── pio.h │ ├── pmode.h │ ├── proc_reg.h │ ├── seg.h │ ├── smp.h │ ├── spin_lock.h │ ├── sproc.h │ ├── trap.h │ ├── tss.h │ ├── types.h │ └── uvm.h ├── posix ├── README ├── sys │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── _exit.c │ ├── accept.c │ ├── access.c │ ├── adjtime.c │ ├── bind.c │ ├── chdir.c │ ├── chmod.c │ ├── chown.c │ ├── chroot.c │ ├── clock_init.c │ ├── close.c │ ├── connect.c │ ├── console.c │ ├── console_tty.c │ ├── creat.c │ ├── dup.c │ ├── dup2.c │ ├── execve.c │ ├── fchdir.c │ ├── fchmod.c │ ├── fchown.c │ ├── fcntl.c │ ├── fd_alloc.c │ ├── fd_free.c │ ├── fd_get_absio.c │ ├── fd_lock.c │ ├── flock.c │ ├── fork.c │ ├── fpathconf.c │ ├── fs.c │ ├── fstat.c │ ├── fsync.c │ ├── ftruncate.c │ ├── getdirentries.c │ ├── getdtablesize.c │ ├── geteuid.c │ ├── getgid.c │ ├── getpagesize.c │ ├── getpeername.c │ ├── getpid.c │ ├── getsockname.c │ ├── getsockopt.c │ ├── gettimeofday.c │ ├── getuid.c │ ├── getumask.c │ ├── init_posix.c │ ├── ioctl.c │ ├── lchown.c │ ├── link.c │ ├── listen.c │ ├── lseek.c │ ├── lstat.c │ ├── mkdir.c │ ├── mkfifo.c │ ├── mknod.c │ ├── mmap.c │ ├── mq.h │ ├── mq_close.c │ ├── mq_desc.c │ ├── mq_getattr.c │ ├── mq_init.c │ ├── mq_notify.c │ ├── mq_open.c │ ├── mq_receive.c │ ├── mq_send.c │ ├── mq_setattr.c │ ├── mq_unlink.c │ ├── open.c │ ├── pathconf.c │ ├── pipe.c │ ├── posix.c │ ├── posix.h │ ├── read.c │ ├── readlink.c │ ├── readv.c │ ├── recv.c │ ├── recvfrom.c │ ├── rename.c │ ├── rmdir.c │ ├── sbrk.c │ ├── select.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── send.c │ ├── sendto.c │ ├── seteuid.c │ ├── setgid.c │ ├── setitimer.c │ ├── setsockopt.c │ ├── setuid.c │ ├── shutdown.c │ ├── sigaction.c │ ├── socket.c │ ├── socketpair.c │ ├── stat.c │ ├── swapoff.c │ ├── swapon.c │ ├── symlink.c │ ├── truncate.c │ ├── umask.c │ ├── uname.c │ ├── unlink.c │ ├── utime.c │ ├── utimes.c │ ├── vfork.c │ ├── wait4.c │ ├── waitpid.c │ ├── write.c │ └── writev.c └── sys_r │ ├── GNUmakefile.in │ └── GNUmakerules ├── realtime ├── GNUmakefile.in ├── GNUmakerules ├── README ├── heartbeat.c └── x86 │ ├── GNUmakerules │ ├── irq.c │ └── synch.c ├── rtld ├── GNUmakefile.in ├── GNUmakerules ├── README ├── debug.c ├── debug.h ├── i386 │ ├── reloc.c │ └── rtld_start.S ├── ldscript ├── load_object.c ├── rtld.c ├── rtld.h └── xmalloc.c ├── security ├── GNUmakefile.in ├── GNUmakerules ├── avtab.c ├── avtab.h ├── checkpolicy.c ├── constraint.h ├── context.c ├── context.h ├── ebitmap.c ├── ebitmap.h ├── global.h ├── hashtab.c ├── hashtab.h ├── init.c ├── mls.c ├── mls.h ├── mls_types.h ├── policy_parse.y ├── policy_scan.l ├── policydb.c ├── policydb.h ├── policydb │ ├── README │ ├── constraints │ ├── fs_contexts │ ├── initial_sid_contexts │ ├── mls │ ├── net_contexts │ ├── rbac │ ├── te │ └── users ├── queue.c ├── queue.h ├── services.c ├── services.h ├── sidtab.c ├── sidtab.h ├── symtab.c └── symtab.h ├── smp ├── COPYING ├── GNUmakefile.in ├── README └── x86 │ ├── apic.c │ ├── asm-smp.h │ ├── bitops.h │ ├── boot.S │ ├── critical.c │ ├── global.h │ ├── i82489.h │ ├── linux-smp.c │ ├── linux-smp.h │ ├── smp.c │ └── smp_map.c ├── startup ├── GNUmakefile.in ├── GNUmakerules ├── README ├── bmod_populate.c ├── create_devdir.c ├── start_atexit.c ├── start_blk_devices.c ├── start_bmod.c ├── start_clock.c ├── start_conf_network.c ├── start_conf_network_close_eif.c ├── start_conf_network_eif.c ├── start_conf_network_eifconfig.c ├── start_conf_network_eifdown.c ├── start_conf_network_eifname.c ├── start_conf_network_host.c ├── start_conf_network_init.c ├── start_conf_network_open_eif.c ├── start_conf_network_router.c ├── start_console.c ├── start_cq_console.c ├── start_devices.c ├── start_disk.c ├── start_fs.c ├── start_fs_bmod.c ├── start_fs_native.c ├── start_fs_native_bmod.c ├── start_fs_native_pthreads.c ├── start_getinfo_network.c ├── start_gprof.c ├── start_linux_fs.c ├── start_net_devices.c ├── start_network.c ├── start_network_native.c ├── start_network_native_pthreads.c ├── start_network_router.c ├── start_network_single.c ├── start_osenv.c ├── start_pthreads.c ├── start_sound_devices.c ├── start_svm.c └── start_world.c ├── svm ├── GNUmakefile.in ├── GNUmakerules ├── README ├── arm32 │ ├── sdir_map_page.c │ ├── svm.h │ ├── svm_change_mapping.c │ ├── svm_find_mapping.c │ ├── svm_machdep_init.c │ ├── svm_map_range.c │ ├── svm_mem.c │ ├── svm_pfault_handler.c │ ├── svm_prot_range.c │ ├── svm_redzone.c │ └── svm_unmap_range.c ├── mem.c ├── mincore.c ├── mmap.c ├── osenv_mem.c ├── svm_alloc.c ├── svm_dealloc.c ├── svm_fault.c ├── svm_incore.c ├── svm_init.c ├── svm_internal.h ├── svm_mapped.c ├── svm_pagein.c ├── svm_pageout.c ├── svm_pager_init.c ├── svm_physmem.c ├── svm_protect.c ├── svm_segv_handler.c └── x86 │ ├── svm.h │ ├── svm_change_mapping.c │ ├── svm_find_mapping.c │ ├── svm_machdep_init.c │ ├── svm_map_range.c │ ├── svm_mem.c │ ├── svm_pfault_handler.c │ ├── svm_prot_range.c │ ├── svm_redzone.c │ └── svm_unmap_range.c ├── threads ├── GNUmakefile.in ├── GNUmakerules ├── MakeFlags ├── README ├── README.SCHED ├── arm32 │ ├── GNUmakerules │ ├── hirestime.h │ ├── interrupt.h │ ├── pcb.h │ ├── pthread_delay.c │ ├── pthread_guard.c │ ├── switch.S │ └── thread_setup.c ├── cpuinherit │ ├── README │ ├── hash.c │ ├── hash.h │ ├── pthread_cpuinherit.c │ ├── pthread_cpuinherit.h │ ├── pthread_lotto.c │ ├── pthread_message.c │ ├── pthread_ratemono.c │ ├── pthread_rootsched.c │ └── pthread_stride.c ├── fs_support.c ├── listener.c ├── netio.c ├── osenv_lock.c ├── osenv_safe.c ├── osenv_safe_socket_factory.c ├── osenv_sleep.c ├── panic.c ├── pthread_attr.c ├── pthread_cancel.c ├── pthread_comlock.c ├── pthread_cond.c ├── pthread_cond.h ├── pthread_create.c ├── pthread_default_attr.c ├── pthread_destroy.c ├── pthread_detach.c ├── pthread_exit.c ├── pthread_getstate.c ├── pthread_init.c ├── pthread_internal.c ├── pthread_internal.h ├── pthread_ipc.c ├── pthread_ipc.h ├── pthread_join.c ├── pthread_key.c ├── pthread_locking.h ├── pthread_memory.c ├── pthread_mutex.c ├── pthread_mutex.h ├── pthread_realtime.c ├── pthread_realtime.h ├── pthread_resource.c ├── pthread_schedconf.c ├── pthread_schedconf.h ├── pthread_schedmode.c ├── pthread_scheduler.c ├── pthread_self.c ├── pthread_setprio.c ├── pthread_setschedparam.c ├── pthread_signal.c ├── pthread_signal.h ├── pthread_sleep.c ├── pthread_specific.c ├── pthread_stats.h ├── pthread_yield.c ├── sched_edf │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── sched_edf.c │ └── sched_edf.h ├── sched_posix │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── sched_posix.c │ └── sched_posix.h ├── sched_realtime.h ├── sched_rms │ └── sched_rms.h ├── sched_stride │ ├── sched_stride.c │ └── sched_stride.h ├── semaphore │ ├── sem.h │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_unlink.c │ ├── sem_util.c │ └── sem_wait_post.c ├── wrap_blkio.c └── x86 │ ├── GNUmakerules │ ├── hirestime.h │ ├── interrupt.h │ ├── pcb.h │ ├── pthread_delay.c │ ├── pthread_guard.c │ ├── switch.S │ └── thread_setup.c ├── tmcp ├── GNUmakefile.in ├── README ├── start_tmcp.c ├── tmcp.c ├── tmcp.h ├── tmcp_log.c └── tmcp_net.c ├── udp ├── GNUmakefile.in ├── README ├── arp.c ├── eth.c ├── ip.c ├── socket.c └── udplib.h ├── unix ├── GNUmakefile.in ├── GNUmakerules ├── README ├── base_irq_softint_handler.c ├── base_stack.S ├── bmodfs.c ├── elf │ ├── GNUmakerules │ ├── crt1.c │ ├── crti.S │ └── crtn.S ├── errno.c ├── fd.c ├── filesystem.c ├── freebsd │ ├── GNUmakerules │ ├── README │ ├── net.c │ └── sendeth.c ├── irq.c ├── libkern.c ├── linux │ ├── GNUmakerules │ ├── README │ ├── net.c │ └── sbrk-hack.c ├── mem_lock.c ├── mmap.c ├── native.h ├── native_errno.h ├── native_errnos.h ├── osenv.c ├── osenv_intr.c ├── osenv_rtc.c ├── osenv_timer.c ├── oskit_linux_block.c ├── pit.c ├── pthread_guard.c ├── rtclock.c ├── skbufio.c ├── skbufio_mem.c ├── socket.c ├── stdio.c ├── support.h ├── synch.c ├── threaded_fd.c ├── threaded_stdio.c ├── unix_mem.c └── version.c ├── unsupported ├── GNUmakefile.in ├── GNUmakerules ├── README ├── arm32 │ ├── GNUmakerules │ └── gcc-specs.in ├── bus_walk_lookup.c ├── dev_mem.c ├── drivers-list.in ├── netio_link.c ├── scripts │ ├── addbmods │ ├── bsd-addbmods │ ├── exports │ ├── gcc-driver-script.in │ ├── imports │ ├── summarise │ └── sym-trace.in ├── start_network_with_dump.c └── x86 │ ├── GNUmakerules │ ├── gcc-specs.in │ ├── mouse.c │ ├── mouse_priv.h │ ├── nullpointer.c │ ├── redzone.c │ └── xf86_Mouse.c ├── uvm ├── netbsd │ └── sys │ │ ├── arch │ │ └── i386 │ │ │ ├── i386 │ │ │ ├── locore.s │ │ │ └── pmap.c │ │ │ └── include │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── bootinfo.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── cdefs.h │ │ │ ├── cpu.h │ │ │ ├── cpufunc.h │ │ │ ├── cputypes.h │ │ │ ├── disklabel.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── frame.h │ │ │ ├── gdt.h │ │ │ ├── int_types.h │ │ │ ├── intr.h │ │ │ ├── limits.h │ │ │ ├── lock.h │ │ │ ├── npx.h │ │ │ ├── param.h │ │ │ ├── pcb.h │ │ │ ├── pmap.h │ │ │ ├── proc.h │ │ │ ├── psl.h │ │ │ ├── pte.h │ │ │ ├── segments.h │ │ │ ├── specialreg.h │ │ │ ├── stdarg.h │ │ │ ├── sysarch.h │ │ │ ├── trap.h │ │ │ ├── tss.h │ │ │ ├── types.h │ │ │ └── vmparam.h │ │ ├── kern │ │ ├── kern_lock.c │ │ ├── kern_malloc.c │ │ ├── kern_subr.c │ │ ├── subr_extent.c │ │ ├── subr_pool.c │ │ ├── subr_prf.c │ │ ├── vfs_bio.c │ │ └── vfs_subr.c │ │ ├── lib │ │ └── libkern │ │ │ ├── __assert.c │ │ │ └── libkern.h │ │ ├── miscfs │ │ └── specfs │ │ │ └── specdev.h │ │ ├── net │ │ └── radix.h │ │ ├── sys │ │ ├── ansi.h │ │ ├── bswap.h │ │ ├── buf.h │ │ ├── callout.h │ │ ├── cdefs.h │ │ ├── cdefs_elf.h │ │ ├── conf.h │ │ ├── device.h │ │ ├── dirent.h │ │ ├── disklabel.h │ │ ├── disklabel_mbr.h │ │ ├── dkbad.h │ │ ├── dkio.h │ │ ├── domain.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── extent.h │ │ ├── fcntl.h │ │ ├── featuretest.h │ │ ├── file.h │ │ ├── filedesc.h │ │ ├── filio.h │ │ ├── inttypes.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── kernel.h │ │ ├── lock.h │ │ ├── malloc.h │ │ ├── map.h │ │ ├── mbuf.h │ │ ├── mman.h │ │ ├── mount.h │ │ ├── msgbuf.h │ │ ├── namei.h │ │ ├── null.h │ │ ├── param.h │ │ ├── pool.h │ │ ├── proc.h │ │ ├── queue.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── resourcevar.h │ │ ├── sched.h │ │ ├── select.h │ │ ├── signal.h │ │ ├── signalvar.h │ │ ├── socket.h │ │ ├── sockio.h │ │ ├── stat.h │ │ ├── swap.h │ │ ├── syscall.h │ │ ├── syscallargs.h │ │ ├── sysctl.h │ │ ├── syslimits.h │ │ ├── syslog.h │ │ ├── systm.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── tprintf.h │ │ ├── trace.h │ │ ├── tty.h │ │ ├── ttycom.h │ │ ├── ttydefaults.h │ │ ├── types.h │ │ ├── ucred.h │ │ ├── uio.h │ │ ├── unistd.h │ │ ├── user.h │ │ ├── vmmeter.h │ │ ├── vnode.h │ │ └── vnode_if.h │ │ └── uvm │ │ ├── uvm.h │ │ ├── uvm_amap.c │ │ ├── uvm_amap.h │ │ ├── uvm_amap_i.h │ │ ├── uvm_anon.c │ │ ├── uvm_anon.h │ │ ├── uvm_aobj.c │ │ ├── uvm_aobj.h │ │ ├── uvm_bio.c │ │ ├── uvm_ddb.h │ │ ├── uvm_device.c │ │ ├── uvm_device.h │ │ ├── uvm_extern.h │ │ ├── uvm_fault.c │ │ ├── uvm_fault.h │ │ ├── uvm_fault_i.h │ │ ├── uvm_glue.c │ │ ├── uvm_glue.h │ │ ├── uvm_init.c │ │ ├── uvm_io.c │ │ ├── uvm_km.c │ │ ├── uvm_km.h │ │ ├── uvm_loan.c │ │ ├── uvm_loan.h │ │ ├── uvm_map.c │ │ ├── uvm_map.h │ │ ├── uvm_map_i.h │ │ ├── uvm_meter.c │ │ ├── uvm_mmap.c │ │ ├── uvm_object.h │ │ ├── uvm_page.c │ │ ├── uvm_page.h │ │ ├── uvm_page_i.h │ │ ├── uvm_pager.c │ │ ├── uvm_pager.h │ │ ├── uvm_pager_i.h │ │ ├── uvm_param.h │ │ ├── uvm_pdaemon.c │ │ ├── uvm_pdaemon.h │ │ ├── uvm_pglist.c │ │ ├── uvm_pglist.h │ │ ├── uvm_pmap.h │ │ ├── uvm_prot.h │ │ ├── uvm_stat.c │ │ ├── uvm_stat.h │ │ ├── uvm_swap.c │ │ ├── uvm_swap.h │ │ ├── uvm_unix.c │ │ ├── uvm_user.c │ │ ├── uvm_vnode.c │ │ └── uvm_vnode.h ├── sproc │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── sproc.c │ ├── sproc_elf_loader.c │ ├── sproc_internal.h │ ├── sproc_uvm_handler.c │ └── x86 │ │ ├── sproc_csw.c │ │ ├── sproc_machdep.h │ │ ├── sproc_machdep_init.c │ │ ├── sproc_switch.c │ │ ├── sproc_syscall.c │ │ └── sproc_syscall_trap_inittab.S └── uvm │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── global.h │ ├── include │ ├── fs_nfs.h │ ├── opt_compat_43.h │ ├── opt_compat_freebsd.h │ ├── opt_compat_netbsd.h │ ├── opt_compat_oldboot.h │ ├── opt_compat_osf1.h │ ├── opt_compat_sunos.h │ ├── opt_compat_svr4.h │ ├── opt_cputype.h │ ├── opt_ddb.h │ ├── opt_dummy_nops.h │ ├── opt_gateway.h │ ├── opt_ipkdb.h │ ├── opt_kmempages.h │ ├── opt_kmemstats.h │ ├── opt_largepages.h │ ├── opt_lockdebug.h │ ├── opt_malloclog.h │ ├── opt_math_emulate.h │ ├── opt_md.h │ ├── opt_multiprocessor.h │ ├── opt_pool.h │ ├── opt_poollog.h │ ├── opt_sysv.h │ ├── opt_user_ldt.h │ ├── opt_uvmhist.h │ ├── opt_vm86.h │ └── opt_vnode_op_noinline.h │ ├── kern_synch.c │ ├── mem.c │ ├── oskit_mem.c │ ├── oskit_mem_map_phys.c │ ├── oskit_uvm.c │ ├── oskit_uvm_compat.c │ ├── oskit_uvm_glue.c │ ├── oskit_uvm_init.c │ ├── oskit_uvm_internal.h │ ├── oskit_uvm_mmap_com.c │ ├── oskit_uvm_pager.c │ ├── oskit_uvm_pdaemon.c │ ├── oskit_uvm_posix.c │ ├── oskit_uvm_swap.inc │ ├── oskit_uvm_thread.c │ ├── oskit_uvm_vmspace.c │ ├── oskit_uvm_vmspace.h │ └── x86 │ ├── oskit_uvm_activate.c │ ├── oskit_uvm_asm.sym │ ├── oskit_uvm_machdep.h │ ├── oskit_uvm_machdep_init.c │ ├── oskit_uvm_pfault.c │ ├── oskit_uvm_redzone.c │ ├── oskit_uvm_vmspace_dump.c │ └── ptab_dump.c ├── video └── svgalib │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── oskit │ ├── config.c │ ├── osenv.c │ ├── osenv.h │ ├── oskit.c │ ├── s_intr.c │ ├── vga.c │ └── vgamisc.c │ └── src │ ├── 8514a.h │ ├── accel.c │ ├── accel.h │ ├── ali.c │ ├── ali.regs │ ├── apm.c │ ├── ark.c │ ├── ati.c │ ├── chips.c │ ├── chips.regs │ ├── cirrus.c │ ├── cirrus.regs │ ├── clockchip │ ├── clockchip.h │ └── icd2061a.c │ ├── driver.h │ ├── egadrv.c │ ├── et3000.c │ ├── et3000.regs │ ├── et4000.c │ ├── et4000.regs │ ├── gvga6400.c │ ├── gvga6400.regs │ ├── interface.c │ ├── interface.h │ ├── libvga.h │ ├── mach32.c │ ├── mach32.h │ ├── mach64.c │ ├── mach64.h │ ├── modetab.c │ ├── nv3.c │ ├── nv3ref.h │ ├── nvreg.h │ ├── nvvga.h │ ├── oak.c │ ├── oak.regs │ ├── ramdac │ ├── IBMRGB52x.c │ ├── IBMRGB52x.h │ ├── attdacs.c │ ├── icw.c │ ├── normal.c │ ├── ramdac.c │ ├── ramdac.h │ ├── s3dacs.c │ └── sierra.c │ ├── regextr.c │ ├── s3.c │ ├── timing.c │ ├── timing.h │ ├── tvga8900.c │ ├── tvga8900.regs │ ├── tvga9440.regs │ ├── tvga9680.regs │ ├── vga.h │ ├── vgaaccel.c │ ├── vgabg.h │ ├── vgabgpage.c │ ├── vgabgvt.c │ ├── vgaclear.c │ ├── vgacol.c │ ├── vgaconvplanar.c │ ├── vgadraw.c │ ├── vgadrv.c │ ├── vgadump.c │ ├── vgahico.c │ ├── vgaline.c │ ├── vgamodesel.c │ ├── vgapal.c │ ├── vgapci.c │ ├── vgapci.h │ ├── vgapix.c │ ├── vgaregs.c │ └── vgaregs.h ├── x11 ├── README ├── client │ ├── GNUmakefile.in │ ├── README │ ├── README.clientdiffs │ ├── getcwd.c │ ├── getservbyname.c │ ├── multibyte.c │ ├── xc.diff │ └── xfree.diff ├── src │ ├── accel │ │ └── s3 │ │ │ ├── Ti3026Curs.c │ │ │ ├── drivers │ │ │ └── newmmio │ │ │ │ └── newmmio.c │ │ │ ├── newmmio.h │ │ │ ├── regs3.h │ │ │ ├── s3.c │ │ │ ├── s3.h │ │ │ ├── s3Bt485.h │ │ │ ├── s3BtCursor.c │ │ │ ├── s3Conf.c │ │ │ ├── s3Cursor.h │ │ │ ├── s3ELSA.c │ │ │ ├── s3ELSA.h │ │ │ ├── s3TiCursor.c │ │ │ ├── s3cmap.c │ │ │ ├── s3im.c │ │ │ ├── s3im.h │ │ │ ├── s3init.c │ │ │ ├── s3linear.h │ │ │ ├── s3misc.c │ │ │ ├── s3name.h │ │ │ ├── s3ramdacs.c │ │ │ ├── s3scrin.c │ │ │ └── vgaHW.c │ ├── common │ │ ├── XF86_S3.c │ │ ├── compiler.h │ │ ├── xf86.h │ │ ├── xf86Config.c │ │ ├── xf86Cursor.c │ │ ├── xf86DCConf.c │ │ ├── xf86DCConf.h │ │ ├── xf86Init.c │ │ ├── xf86Priv.h │ │ ├── xf86Procs.h │ │ ├── xf86_Config.h │ │ ├── xf86_Option.c │ │ └── xf86_Option.h │ ├── common_hw │ │ ├── ATTDac.c │ │ ├── BUSmemcpy.S │ │ ├── Ch8391clk.c │ │ ├── I2061Aalt.c │ │ ├── I2061Acal.c │ │ ├── I2061Aset.c │ │ ├── IBMRGB.c │ │ ├── IBMRGB.h │ │ ├── ICD2061A.h │ │ ├── ICS2595.c │ │ ├── ICS2595.h │ │ ├── IODelay.S │ │ ├── S3gendac.c │ │ ├── S3gendac.h │ │ ├── SC11412.c │ │ ├── SC11412.h │ │ ├── STG1703clk.c │ │ ├── SlowBcopy.S │ │ ├── Ti3025clk.c │ │ ├── Ti3026clk.c │ │ ├── Ti302X.h │ │ ├── xf86_ClkPr.c │ │ ├── xf86_HWlib.h │ │ ├── xf86_PCI.c │ │ └── xf86_PCI.h │ ├── include │ │ ├── X11 │ │ │ ├── X.h │ │ │ ├── Xalloca.h │ │ │ ├── Xfuncproto.h │ │ │ ├── Xfuncs.h │ │ │ ├── Xmd.h │ │ │ ├── Xos.h │ │ │ ├── Xosdefs.h │ │ │ ├── Xproto.h │ │ │ └── Xprotostr.h │ │ ├── dix.h │ │ ├── misc.h │ │ ├── miscstruct.h │ │ ├── os.h │ │ ├── screenint.h │ │ └── scrnintstr.h │ ├── os-support │ │ ├── assyntax.h │ │ ├── misc │ │ │ └── xf86_Util.c │ │ ├── shared │ │ │ └── mapVT_noop.c │ │ ├── xf86_OSlib.h │ │ └── xf86_OSproc.h │ └── vga256 │ │ └── vga │ │ └── vga.h └── video │ ├── GNUmakefile.in │ ├── GNUmakerules │ ├── README │ ├── XF86Config │ ├── device │ ├── device.c │ ├── s3_buf_io.c │ ├── s3_buf_io.h │ └── s3_priv.h │ ├── s3 │ ├── init_modes.c │ └── s3rwDAC.c │ └── shared │ ├── dix.c │ ├── global.h │ ├── main.c │ ├── malloc.c │ ├── misc.c │ ├── osenv.c │ ├── osenv.h │ ├── oskit_video.c │ ├── privates.c │ ├── utils.c │ ├── xf86Var.c │ └── xf86bios.c └── zlib ├── GNUmakefile.in ├── GNUmakerules └── README /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/BUGS -------------------------------------------------------------------------------- /BUGS.details: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/BUGS.details -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/CREDITS -------------------------------------------------------------------------------- /GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakefile.in -------------------------------------------------------------------------------- /GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakerules -------------------------------------------------------------------------------- /GNUmakerules-arm32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakerules-arm32 -------------------------------------------------------------------------------- /GNUmakerules-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakerules-lib -------------------------------------------------------------------------------- /GNUmakerules-top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakerules-top -------------------------------------------------------------------------------- /GNUmakerules-x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakerules-x86 -------------------------------------------------------------------------------- /GNUmakerules-x86-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/GNUmakerules-x86-exe -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makeconf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/Makeconf.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /amm/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/GNUmakefile.in -------------------------------------------------------------------------------- /amm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/README -------------------------------------------------------------------------------- /amm/amm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm.h -------------------------------------------------------------------------------- /amm/amm_allocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_allocate.c -------------------------------------------------------------------------------- /amm/amm_deallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_deallocate.c -------------------------------------------------------------------------------- /amm/amm_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_destroy.c -------------------------------------------------------------------------------- /amm/amm_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_dump.c -------------------------------------------------------------------------------- /amm/amm_find_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_find_addr.c -------------------------------------------------------------------------------- /amm/amm_find_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_find_gen.c -------------------------------------------------------------------------------- /amm/amm_free_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_free_entry.c -------------------------------------------------------------------------------- /amm/amm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_init.c -------------------------------------------------------------------------------- /amm/amm_init_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_init_gen.c -------------------------------------------------------------------------------- /amm/amm_iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_iterate.c -------------------------------------------------------------------------------- /amm/amm_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_join.c -------------------------------------------------------------------------------- /amm/amm_modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_modify.c -------------------------------------------------------------------------------- /amm/amm_protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_protect.c -------------------------------------------------------------------------------- /amm/amm_reserve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_reserve.c -------------------------------------------------------------------------------- /amm/amm_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_select.c -------------------------------------------------------------------------------- /amm/amm_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/amm_split.c -------------------------------------------------------------------------------- /amm/examples/amap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/examples/amap.c -------------------------------------------------------------------------------- /amm/examples/amap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/examples/amap.h -------------------------------------------------------------------------------- /amm/examples/rmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/examples/rmap.c -------------------------------------------------------------------------------- /amm/examples/rmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/amm/examples/rmap.h -------------------------------------------------------------------------------- /boot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/README -------------------------------------------------------------------------------- /boot/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/boot.h -------------------------------------------------------------------------------- /boot/boot_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/boot_start.c -------------------------------------------------------------------------------- /boot/bsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/README -------------------------------------------------------------------------------- /boot/bsd/boottype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/boottype.h -------------------------------------------------------------------------------- /boot/bsd/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/crt0.S -------------------------------------------------------------------------------- /boot/bsd/ldscript.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/ldscript.in -------------------------------------------------------------------------------- /boot/bsd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/main.c -------------------------------------------------------------------------------- /boot/bsd/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/putchar.c -------------------------------------------------------------------------------- /boot/bsd/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/bsd/reboot.h -------------------------------------------------------------------------------- /boot/do_boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/do_boot.S -------------------------------------------------------------------------------- /boot/dos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/dos/README -------------------------------------------------------------------------------- /boot/dos/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/dos/main.c -------------------------------------------------------------------------------- /boot/linux/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/COPYING -------------------------------------------------------------------------------- /boot/linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/README -------------------------------------------------------------------------------- /boot/linux/autoconf.h: -------------------------------------------------------------------------------- 1 | /* Dummy stub file */ 2 | -------------------------------------------------------------------------------- /boot/linux/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/config.h -------------------------------------------------------------------------------- /boot/linux/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/crypt.h -------------------------------------------------------------------------------- /boot/linux/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/gzip.h -------------------------------------------------------------------------------- /boot/linux/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/inflate.c -------------------------------------------------------------------------------- /boot/linux/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/lzw.h -------------------------------------------------------------------------------- /boot/linux/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/malloc.c -------------------------------------------------------------------------------- /boot/linux/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/misc.c -------------------------------------------------------------------------------- /boot/linux/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/putchar.c -------------------------------------------------------------------------------- /boot/linux/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/segment.h -------------------------------------------------------------------------------- /boot/linux/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/linux/unzip.c -------------------------------------------------------------------------------- /boot/mkdosfloppy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/mkdosfloppy -------------------------------------------------------------------------------- /boot/net/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/NEWS -------------------------------------------------------------------------------- /boot/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/README -------------------------------------------------------------------------------- /boot/net/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/boot.h -------------------------------------------------------------------------------- /boot/net/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/debug.h -------------------------------------------------------------------------------- /boot/net/do_boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/do_boot.S -------------------------------------------------------------------------------- /boot/net/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/driver.c -------------------------------------------------------------------------------- /boot/net/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/driver.h -------------------------------------------------------------------------------- /boot/net/fileops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/fileops.c -------------------------------------------------------------------------------- /boot/net/fileops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/fileops.h -------------------------------------------------------------------------------- /boot/net/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/gdt.c -------------------------------------------------------------------------------- /boot/net/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/gdt.h -------------------------------------------------------------------------------- /boot/net/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/log.c -------------------------------------------------------------------------------- /boot/net/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/main.c -------------------------------------------------------------------------------- /boot/net/mem_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/mem_lock.c -------------------------------------------------------------------------------- /boot/net/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/misc.c -------------------------------------------------------------------------------- /boot/net/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/misc.h -------------------------------------------------------------------------------- /boot/net/nfsops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/nfsops.c -------------------------------------------------------------------------------- /boot/net/reboot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/reboot.S -------------------------------------------------------------------------------- /boot/net/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/reboot.h -------------------------------------------------------------------------------- /boot/net/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/rpc.c -------------------------------------------------------------------------------- /boot/net/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/rpc.h -------------------------------------------------------------------------------- /boot/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/socket.c -------------------------------------------------------------------------------- /boot/net/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/socket.h -------------------------------------------------------------------------------- /boot/net/tftpops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/tftpops.c -------------------------------------------------------------------------------- /boot/net/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/timer.c -------------------------------------------------------------------------------- /boot/net/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/net/timer.h -------------------------------------------------------------------------------- /boot/ofw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofw/README -------------------------------------------------------------------------------- /boot/ofw/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofw/crt0.S -------------------------------------------------------------------------------- /boot/ofw/ldscript.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofw/ldscript.in -------------------------------------------------------------------------------- /boot/ofw/ofw_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofw/ofw_start.c -------------------------------------------------------------------------------- /boot/ofwboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofwboot/README -------------------------------------------------------------------------------- /boot/ofwboot/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofwboot/decls.h -------------------------------------------------------------------------------- /boot/ofwboot/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofwboot/log.c -------------------------------------------------------------------------------- /boot/ofwboot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/ofwboot/main.c -------------------------------------------------------------------------------- /boot/pxe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/README -------------------------------------------------------------------------------- /boot/pxe/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/crt0.S -------------------------------------------------------------------------------- /boot/pxe/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/decls.h -------------------------------------------------------------------------------- /boot/pxe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/main.c -------------------------------------------------------------------------------- /boot/pxe/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/malloc.c -------------------------------------------------------------------------------- /boot/pxe/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/multiboot.c -------------------------------------------------------------------------------- /boot/pxe/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/putchar.c -------------------------------------------------------------------------------- /boot/pxe/pxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/pxe.h -------------------------------------------------------------------------------- /boot/pxe/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/udp.c -------------------------------------------------------------------------------- /boot/pxe/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/boot/pxe/udp.h -------------------------------------------------------------------------------- /bootp/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/GNUmakefile.in -------------------------------------------------------------------------------- /bootp/GNUmakerules: -------------------------------------------------------------------------------- 1 | INCDIRS += $(OSKIT_SRCDIR)/oskit/c 2 | -------------------------------------------------------------------------------- /bootp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/README -------------------------------------------------------------------------------- /bootp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/bootp.c -------------------------------------------------------------------------------- /bootp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/bootp.h -------------------------------------------------------------------------------- /bootp/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/driver.c -------------------------------------------------------------------------------- /bootp/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/dump.c -------------------------------------------------------------------------------- /bootp/netmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/netmask.c -------------------------------------------------------------------------------- /bootp/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/test.c -------------------------------------------------------------------------------- /bootp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/udp.c -------------------------------------------------------------------------------- /bootp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/bootp/udp.h -------------------------------------------------------------------------------- /clientos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/clientos/README -------------------------------------------------------------------------------- /clientos/appmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/clientos/appmem.c -------------------------------------------------------------------------------- /clientos/clientos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/clientos/clientos.c -------------------------------------------------------------------------------- /clientos/libcenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/clientos/libcenv.c -------------------------------------------------------------------------------- /clientos/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/clientos/mem.c -------------------------------------------------------------------------------- /clientos/morecore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/clientos/morecore.c -------------------------------------------------------------------------------- /com/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/GNUmakefile.in -------------------------------------------------------------------------------- /com/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/GNUmakerules -------------------------------------------------------------------------------- /com/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/README -------------------------------------------------------------------------------- /com/absio_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/absio_wrapper.c -------------------------------------------------------------------------------- /com/avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/avc.c -------------------------------------------------------------------------------- /com/blk_io_subset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/blk_io_subset.c -------------------------------------------------------------------------------- /com/blkio_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/blkio_wrapper.c -------------------------------------------------------------------------------- /com/boundedqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/boundedqueue.c -------------------------------------------------------------------------------- /com/buf_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/buf_io.c -------------------------------------------------------------------------------- /com/buf_io_extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/buf_io_extern.c -------------------------------------------------------------------------------- /com/charqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/charqueue.c -------------------------------------------------------------------------------- /com/com_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/com_queue.c -------------------------------------------------------------------------------- /com/cq_intr_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/cq_intr_stream.c -------------------------------------------------------------------------------- /com/file_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/file_blk.c -------------------------------------------------------------------------------- /com/file_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/file_clock.c -------------------------------------------------------------------------------- /com/file_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/file_tty.c -------------------------------------------------------------------------------- /com/file_universal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/file_universal.c -------------------------------------------------------------------------------- /com/filepsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/filepsid.c -------------------------------------------------------------------------------- /com/fs_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/fs_wrapper.c -------------------------------------------------------------------------------- /com/fsnode_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/fsnode_wrapper.c -------------------------------------------------------------------------------- /com/fsopen_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/fsopen_wrapper.c -------------------------------------------------------------------------------- /com/iids.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/iids.awk -------------------------------------------------------------------------------- /com/listener_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/listener_mgr.c -------------------------------------------------------------------------------- /com/net_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/net_io.c -------------------------------------------------------------------------------- /com/net_io_fanout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/net_io_fanout.c -------------------------------------------------------------------------------- /com/openfile_absio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/openfile_absio.c -------------------------------------------------------------------------------- /com/openfile_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/openfile_file.c -------------------------------------------------------------------------------- /com/openfile_rwl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/openfile_rwl.c -------------------------------------------------------------------------------- /com/pipe_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/pipe_io.c -------------------------------------------------------------------------------- /com/pqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/pqueue.c -------------------------------------------------------------------------------- /com/principal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/principal.c -------------------------------------------------------------------------------- /com/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/random.c -------------------------------------------------------------------------------- /com/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/register.c -------------------------------------------------------------------------------- /com/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/services.c -------------------------------------------------------------------------------- /com/sfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs.h -------------------------------------------------------------------------------- /com/sfs_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs_fs.c -------------------------------------------------------------------------------- /com/sfs_hashtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs_hashtab.c -------------------------------------------------------------------------------- /com/sfs_hashtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs_hashtab.h -------------------------------------------------------------------------------- /com/sfs_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs_init.c -------------------------------------------------------------------------------- /com/sfs_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs_node.c -------------------------------------------------------------------------------- /com/sfs_peropen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sfs_peropen.c -------------------------------------------------------------------------------- /com/sleep_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sleep_listener.c -------------------------------------------------------------------------------- /com/socket_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/socket_wrapper.c -------------------------------------------------------------------------------- /com/sockio_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/sockio_wrapper.c -------------------------------------------------------------------------------- /com/stream_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/stream_wrapper.c -------------------------------------------------------------------------------- /com/trivial_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/trivial_stream.c -------------------------------------------------------------------------------- /com/uspf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/com/uspf.c -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/automake/1.15/share/automake-1.15/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/configure.ac -------------------------------------------------------------------------------- /crt/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/GNUmakefile.in -------------------------------------------------------------------------------- /crt/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/GNUmakerules -------------------------------------------------------------------------------- /crt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/README -------------------------------------------------------------------------------- /crt/arm32/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/arm32/crtn.S -------------------------------------------------------------------------------- /crt/x86/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/x86/GNUmakerules -------------------------------------------------------------------------------- /crt/x86/crti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/x86/crti.h -------------------------------------------------------------------------------- /crt/x86/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/x86/crtn.S -------------------------------------------------------------------------------- /crt/x86/dos.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/x86/dos.S -------------------------------------------------------------------------------- /crt/x86/multiboot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/crt/x86/multiboot.S -------------------------------------------------------------------------------- /dev/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/GNUmakefile.in -------------------------------------------------------------------------------- /dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/README -------------------------------------------------------------------------------- /dev/arm32/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/irq.c -------------------------------------------------------------------------------- /dev/arm32/isa_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/isa_bus.c -------------------------------------------------------------------------------- /dev/arm32/pcibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/pcibus.c -------------------------------------------------------------------------------- /dev/arm32/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/pic.c -------------------------------------------------------------------------------- /dev/arm32/rtclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/rtclock.c -------------------------------------------------------------------------------- /dev/arm32/synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/synch.c -------------------------------------------------------------------------------- /dev/arm32/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/arm32/timer.c -------------------------------------------------------------------------------- /dev/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/clock.c -------------------------------------------------------------------------------- /dev/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/dma.c -------------------------------------------------------------------------------- /dev/dpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/dpf.c -------------------------------------------------------------------------------- /dev/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/dump.c -------------------------------------------------------------------------------- /dev/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/init.c -------------------------------------------------------------------------------- /dev/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/io.c -------------------------------------------------------------------------------- /dev/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/log.c -------------------------------------------------------------------------------- /dev/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/mem.c -------------------------------------------------------------------------------- /dev/membus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/membus.c -------------------------------------------------------------------------------- /dev/openfile_netio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/openfile_netio.c -------------------------------------------------------------------------------- /dev/osenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv.c -------------------------------------------------------------------------------- /dev/osenv_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_device.c -------------------------------------------------------------------------------- /dev/osenv_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_driver.c -------------------------------------------------------------------------------- /dev/osenv_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_intr.c -------------------------------------------------------------------------------- /dev/osenv_ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_ioport.c -------------------------------------------------------------------------------- /dev/osenv_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_irq.c -------------------------------------------------------------------------------- /dev/osenv_isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_isa.c -------------------------------------------------------------------------------- /dev/osenv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_log.c -------------------------------------------------------------------------------- /dev/osenv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_mem.c -------------------------------------------------------------------------------- /dev/osenv_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_rtc.c -------------------------------------------------------------------------------- /dev/osenv_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_sleep.c -------------------------------------------------------------------------------- /dev/osenv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/osenv_timer.c -------------------------------------------------------------------------------- /dev/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/panic.c -------------------------------------------------------------------------------- /dev/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/pci.c -------------------------------------------------------------------------------- /dev/pd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/pd.c -------------------------------------------------------------------------------- /dev/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/probe.c -------------------------------------------------------------------------------- /dev/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/root.c -------------------------------------------------------------------------------- /dev/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/sleep.c -------------------------------------------------------------------------------- /dev/softirq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/softirq.c -------------------------------------------------------------------------------- /dev/spf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/spf.c -------------------------------------------------------------------------------- /dev/spf_ether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/spf_ether.c -------------------------------------------------------------------------------- /dev/wrap_blkio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/wrap_blkio.c -------------------------------------------------------------------------------- /dev/x86/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/GNUmakerules -------------------------------------------------------------------------------- /dev/x86/bios32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/bios32.c -------------------------------------------------------------------------------- /dev/x86/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/irq.c -------------------------------------------------------------------------------- /dev/x86/isa_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/isa_bus.c -------------------------------------------------------------------------------- /dev/x86/pcibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/pcibus.c -------------------------------------------------------------------------------- /dev/x86/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/pic.c -------------------------------------------------------------------------------- /dev/x86/pit_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/pit_param.h -------------------------------------------------------------------------------- /dev/x86/rtclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/rtclock.c -------------------------------------------------------------------------------- /dev/x86/synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/synch.c -------------------------------------------------------------------------------- /dev/x86/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/timer.c -------------------------------------------------------------------------------- /dev/x86/timer_pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dev/x86/timer_pit.c -------------------------------------------------------------------------------- /diskpart/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/README -------------------------------------------------------------------------------- /diskpart/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/dump.c -------------------------------------------------------------------------------- /diskpart/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/fill.c -------------------------------------------------------------------------------- /diskpart/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/find.c -------------------------------------------------------------------------------- /diskpart/find_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/find_dec.c -------------------------------------------------------------------------------- /diskpart/find_vtoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/find_vtoc.c -------------------------------------------------------------------------------- /diskpart/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/diskpart/lookup.c -------------------------------------------------------------------------------- /doc/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/GNUmakefile.in -------------------------------------------------------------------------------- /doc/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/GNUmakerules -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/README -------------------------------------------------------------------------------- /doc/README.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/README.doc -------------------------------------------------------------------------------- /doc/amm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/amm.tex -------------------------------------------------------------------------------- /doc/book.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/book.tex -------------------------------------------------------------------------------- /doc/bootp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/bootp.tex -------------------------------------------------------------------------------- /doc/clientos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/clientos.tex -------------------------------------------------------------------------------- /doc/com.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/com.tex -------------------------------------------------------------------------------- /doc/conf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/conf.tex -------------------------------------------------------------------------------- /doc/defs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/defs.tex -------------------------------------------------------------------------------- /doc/dev.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/dev.tex -------------------------------------------------------------------------------- /doc/diskpart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/diskpart.tex -------------------------------------------------------------------------------- /doc/env.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/env.tex -------------------------------------------------------------------------------- /doc/exec.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/exec.tex -------------------------------------------------------------------------------- /doc/fdev-hw-tree.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/fdev-hw-tree.fig -------------------------------------------------------------------------------- /doc/fdev-org.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/fdev-org.fig -------------------------------------------------------------------------------- /doc/flask.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/flask.tex -------------------------------------------------------------------------------- /doc/freebsd-dev.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/freebsd-dev.tex -------------------------------------------------------------------------------- /doc/freebsd-libc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/freebsd-libc.tex -------------------------------------------------------------------------------- /doc/freebsd-math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/freebsd-math.tex -------------------------------------------------------------------------------- /doc/freebsd-net.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/freebsd-net.tex -------------------------------------------------------------------------------- /doc/fs-hier.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/fs-hier.fig -------------------------------------------------------------------------------- /doc/fs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/fs.tex -------------------------------------------------------------------------------- /doc/fsnamespace.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/fsnamespace.tex -------------------------------------------------------------------------------- /doc/fsread.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/fsread.tex -------------------------------------------------------------------------------- /doc/gprof.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/gprof.tex -------------------------------------------------------------------------------- /doc/hpfq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/hpfq.tex -------------------------------------------------------------------------------- /doc/hyperref.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/hyperref.cfg -------------------------------------------------------------------------------- /doc/inherit.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/inherit.fig -------------------------------------------------------------------------------- /doc/intf-misc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/intf-misc.tex -------------------------------------------------------------------------------- /doc/intf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/intf.tex -------------------------------------------------------------------------------- /doc/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/intro.tex -------------------------------------------------------------------------------- /doc/io.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/io.tex -------------------------------------------------------------------------------- /doc/kern.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/kern.tex -------------------------------------------------------------------------------- /doc/libc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/libc.tex -------------------------------------------------------------------------------- /doc/libdev.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/libdev.tex -------------------------------------------------------------------------------- /doc/licensing.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/licensing.tex -------------------------------------------------------------------------------- /doc/linux-dev.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/linux-dev.tex -------------------------------------------------------------------------------- /doc/linux-fs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/linux-fs.tex -------------------------------------------------------------------------------- /doc/lmm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/lmm.tex -------------------------------------------------------------------------------- /doc/memdebug.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/memdebug.tex -------------------------------------------------------------------------------- /doc/memfs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/memfs.tex -------------------------------------------------------------------------------- /doc/net.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/net.tex -------------------------------------------------------------------------------- /doc/netboot.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/netboot.tex -------------------------------------------------------------------------------- /doc/netbsd-fs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/netbsd-fs.tex -------------------------------------------------------------------------------- /doc/oskit-www.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/oskit-www.tex -------------------------------------------------------------------------------- /doc/oskit.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/oskit.tex -------------------------------------------------------------------------------- /doc/oskitunix.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/oskitunix.fig -------------------------------------------------------------------------------- /doc/pd-bw.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/pd-bw.fig -------------------------------------------------------------------------------- /doc/pd.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/pd.tex -------------------------------------------------------------------------------- /doc/perl-reform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/perl-reform -------------------------------------------------------------------------------- /doc/posix.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/posix.tex -------------------------------------------------------------------------------- /doc/pthread.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/pthread.tex -------------------------------------------------------------------------------- /doc/pure-model.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/pure-model.fig -------------------------------------------------------------------------------- /doc/register.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/register.tex -------------------------------------------------------------------------------- /doc/rtld.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/rtld.tex -------------------------------------------------------------------------------- /doc/smp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/smp.tex -------------------------------------------------------------------------------- /doc/sproc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/sproc.tex -------------------------------------------------------------------------------- /doc/startup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/startup.tex -------------------------------------------------------------------------------- /doc/svgalib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/svgalib.tex -------------------------------------------------------------------------------- /doc/svm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/svm.tex -------------------------------------------------------------------------------- /doc/synch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/synch.tex -------------------------------------------------------------------------------- /doc/sys.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/sys.bib -------------------------------------------------------------------------------- /doc/tex4ht.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/tex4ht.cfg -------------------------------------------------------------------------------- /doc/tex4ht.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/tex4ht.env -------------------------------------------------------------------------------- /doc/texmf.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/texmf.cnf -------------------------------------------------------------------------------- /doc/unix-support.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/unix-support.tex -------------------------------------------------------------------------------- /doc/uvm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/uvm.tex -------------------------------------------------------------------------------- /doc/video.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/video.tex -------------------------------------------------------------------------------- /doc/xvideo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/doc/xvideo.tex -------------------------------------------------------------------------------- /dpf/dpf/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/dpf/GNUmakerules -------------------------------------------------------------------------------- /dpf/dpf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/dpf/README -------------------------------------------------------------------------------- /dpf/dpf/dpf_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/dpf/dpf_glue.c -------------------------------------------------------------------------------- /dpf/src/dpf/OVERVIEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/OVERVIEW -------------------------------------------------------------------------------- /dpf/src/dpf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/README -------------------------------------------------------------------------------- /dpf/src/dpf/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/TODO -------------------------------------------------------------------------------- /dpf/src/dpf/demand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/demand.h -------------------------------------------------------------------------------- /dpf/src/dpf/dpf-ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/dpf-ir.c -------------------------------------------------------------------------------- /dpf/src/dpf/dpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/dpf.c -------------------------------------------------------------------------------- /dpf/src/dpf/dpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/dpf.h -------------------------------------------------------------------------------- /dpf/src/dpf/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/hash.h -------------------------------------------------------------------------------- /dpf/src/dpf/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/interp.c -------------------------------------------------------------------------------- /dpf/src/dpf/mkudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/mkudp.c -------------------------------------------------------------------------------- /dpf/src/dpf/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/output.c -------------------------------------------------------------------------------- /dpf/src/dpf/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/pid.c -------------------------------------------------------------------------------- /dpf/src/dpf/plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/plan -------------------------------------------------------------------------------- /dpf/src/dpf/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/queue.h -------------------------------------------------------------------------------- /dpf/src/dpf/xlate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/dpf/src/dpf/xlate.c -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/README -------------------------------------------------------------------------------- /examples/unix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/unix/README -------------------------------------------------------------------------------- /examples/x86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/README -------------------------------------------------------------------------------- /examples/x86/blkio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/blkio.c -------------------------------------------------------------------------------- /examples/x86/fudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/fudp.c -------------------------------------------------------------------------------- /examples/x86/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/hello.c -------------------------------------------------------------------------------- /examples/x86/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/mouse.c -------------------------------------------------------------------------------- /examples/x86/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/timer.c -------------------------------------------------------------------------------- /examples/x86/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/examples/x86/tty.c -------------------------------------------------------------------------------- /exec/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/GNUmakefile.in -------------------------------------------------------------------------------- /exec/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/GNUmakerules -------------------------------------------------------------------------------- /exec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/README -------------------------------------------------------------------------------- /exec/arm32/aout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/arm32/aout.c -------------------------------------------------------------------------------- /exec/arm32/objfmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/arm32/objfmts.h -------------------------------------------------------------------------------- /exec/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/elf.c -------------------------------------------------------------------------------- /exec/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/error.c -------------------------------------------------------------------------------- /exec/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/exec.h -------------------------------------------------------------------------------- /exec/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/load.c -------------------------------------------------------------------------------- /exec/objfmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/objfmts.h -------------------------------------------------------------------------------- /exec/x86/aout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/x86/aout.c -------------------------------------------------------------------------------- /exec/x86/objfmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/exec/x86/objfmts.h -------------------------------------------------------------------------------- /flask/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/flask/GNUmakefile.in -------------------------------------------------------------------------------- /flask/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/flask/GNUmakerules -------------------------------------------------------------------------------- /flask/access_vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/flask/access_vectors -------------------------------------------------------------------------------- /flask/initial_sids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/flask/initial_sids -------------------------------------------------------------------------------- /flask/mkflask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/flask/mkflask.sh -------------------------------------------------------------------------------- /freebsd/3.x/shared/arm32/include/pmap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/3.x/shared/arm32/include/random.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /freebsd/3.x/shared/include/npx.h: -------------------------------------------------------------------------------- 1 | #define NNPX 1 2 | 3 | -------------------------------------------------------------------------------- /freebsd/3.x/shared/include/opt_ntp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/i386/string/memcpy.S: -------------------------------------------------------------------------------- 1 | #define MEMCOPY 2 | #include "bcopy.S" 3 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/i386/string/memmove.S: -------------------------------------------------------------------------------- 1 | #define MEMMOVE 2 | #include "bcopy.S" 3 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/string/bzero.c: -------------------------------------------------------------------------------- 1 | #define BZERO 2 | #include "memset.c" 3 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/string/memcpy.c: -------------------------------------------------------------------------------- 1 | #define MEMCOPY 2 | #include "bcopy.c" 3 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/string/memmove.c: -------------------------------------------------------------------------------- 1 | #define MEMMOVE 2 | #include "bcopy.c" 3 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/string/strchr.c: -------------------------------------------------------------------------------- 1 | #define STRCHR 2 | #include "index.c" 3 | -------------------------------------------------------------------------------- /freebsd/3.x/src/lib/libc/string/strrchr.c: -------------------------------------------------------------------------------- 1 | #define STRRCHR 2 | #include "rindex.c" 3 | -------------------------------------------------------------------------------- /freebsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/README -------------------------------------------------------------------------------- /freebsd/dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/README -------------------------------------------------------------------------------- /freebsd/dev/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/char.c -------------------------------------------------------------------------------- /freebsd/dev/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/conf.c -------------------------------------------------------------------------------- /freebsd/dev/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/global.h -------------------------------------------------------------------------------- /freebsd/dev/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/if.c -------------------------------------------------------------------------------- /freebsd/dev/include/vm/pmap.h: -------------------------------------------------------------------------------- 1 | /* Just a fake, to satisfy bogus #include's */ 2 | -------------------------------------------------------------------------------- /freebsd/dev/include/vnode_if.h: -------------------------------------------------------------------------------- 1 | /* Just a fake, to satisfy bogus #include's */ 2 | -------------------------------------------------------------------------------- /freebsd/dev/ioconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/ioconf.c -------------------------------------------------------------------------------- /freebsd/dev/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/dev/isa.c -------------------------------------------------------------------------------- /freebsd/dev/x86/conf/apm.h: -------------------------------------------------------------------------------- 1 | #define NAPM 0 2 | -------------------------------------------------------------------------------- /freebsd/dev/x86/conf/bpfilter.h: -------------------------------------------------------------------------------- 1 | #define NBPFILTER 0 2 | -------------------------------------------------------------------------------- /freebsd/dev/x86/conf/joy.h: -------------------------------------------------------------------------------- 1 | #define NJOY 0 2 | -------------------------------------------------------------------------------- /freebsd/dev/x86/conf/lpt.h: -------------------------------------------------------------------------------- 1 | #define NLPT 0 2 | -------------------------------------------------------------------------------- /freebsd/dev/x86/conf/snp.h: -------------------------------------------------------------------------------- 1 | #define NSNP 0 2 | -------------------------------------------------------------------------------- /freebsd/dev/x86/conf/vt.h: -------------------------------------------------------------------------------- 1 | #define NVT 0 2 | -------------------------------------------------------------------------------- /freebsd/libc/include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /freebsd/libc/include/float.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /freebsd/libc/include/md5.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /freebsd/libc/include/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /freebsd/libc/include/stdarg.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /freebsd/libc/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /freebsd/libc/include/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /freebsd/libm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/libm/README -------------------------------------------------------------------------------- /freebsd/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/README -------------------------------------------------------------------------------- /freebsd/net/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/accept.c -------------------------------------------------------------------------------- /freebsd/net/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/bind.c -------------------------------------------------------------------------------- /freebsd/net/ifdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/ifdown.c -------------------------------------------------------------------------------- /freebsd/net/include/bpfilter.h: -------------------------------------------------------------------------------- 1 | #define NBPFILTER 4 2 | -------------------------------------------------------------------------------- /freebsd/net/include/ether.h: -------------------------------------------------------------------------------- 1 | #define NETHER 1 2 | -------------------------------------------------------------------------------- /freebsd/net/include/imp.h: -------------------------------------------------------------------------------- 1 | #define NIMP 0 2 | -------------------------------------------------------------------------------- /freebsd/net/include/loop.h: -------------------------------------------------------------------------------- 1 | #define NLOOP 1 2 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_atalk.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_bdg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_bootp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_compat.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_ddb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_devfs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_icmp_bandlim.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_inet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_ipdivert.h: -------------------------------------------------------------------------------- 1 | #define IPDIVERT 1 2 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_ipdn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_ipfilter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_ipx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_mrouting.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_posix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_tcpdebug.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_uconsole.h: -------------------------------------------------------------------------------- 1 | #define UCONSOLE 1 2 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_vm.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/opt_vmpage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/ppp.h: -------------------------------------------------------------------------------- 1 | #define NPPP 0 2 | -------------------------------------------------------------------------------- /freebsd/net/include/sl.h: -------------------------------------------------------------------------------- 1 | #define NSL 0 2 | -------------------------------------------------------------------------------- /freebsd/net/include/snp.h: -------------------------------------------------------------------------------- 1 | #define NSNP 0 2 | -------------------------------------------------------------------------------- /freebsd/net/include/tun.h: -------------------------------------------------------------------------------- 1 | #define NTUN 0 2 | -------------------------------------------------------------------------------- /freebsd/net/include/vlan.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freebsd/net/include/vnode_if.h: -------------------------------------------------------------------------------- 1 | /* Just a fake, to satisfy bogus #include's */ 2 | -------------------------------------------------------------------------------- /freebsd/net/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/read.c -------------------------------------------------------------------------------- /freebsd/net/sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/sendto.c -------------------------------------------------------------------------------- /freebsd/net/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/freebsd/net/write.c -------------------------------------------------------------------------------- /freebsd/shared/arm32/include/random.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /freebsd/src/sys/i386/include/mtpr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Unused in 386BSD port 3 | */ 4 | -------------------------------------------------------------------------------- /fsnamespace/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsnamespace/README -------------------------------------------------------------------------------- /fsread/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/COPYING -------------------------------------------------------------------------------- /fsread/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/NOTES -------------------------------------------------------------------------------- /fsread/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/README -------------------------------------------------------------------------------- /fsread/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/common.c -------------------------------------------------------------------------------- /fsread/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/common.h -------------------------------------------------------------------------------- /fsread/disk_inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/disk_inode.h -------------------------------------------------------------------------------- /fsread/ext2_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/ext2_fs.h -------------------------------------------------------------------------------- /fsread/ffs_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/ffs_dir.h -------------------------------------------------------------------------------- /fsread/ffs_file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/ffs_file_io.c -------------------------------------------------------------------------------- /fsread/ffs_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/ffs_fs.h -------------------------------------------------------------------------------- /fsread/minix_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/minix_fs.h -------------------------------------------------------------------------------- /fsread/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fsread/open.c -------------------------------------------------------------------------------- /fudp/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/GNUmakefile.in -------------------------------------------------------------------------------- /fudp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/README -------------------------------------------------------------------------------- /fudp/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/arp.c -------------------------------------------------------------------------------- /fudp/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/eth.c -------------------------------------------------------------------------------- /fudp/fudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/fudp.h -------------------------------------------------------------------------------- /fudp/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/ip.c -------------------------------------------------------------------------------- /fudp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/fudp/socket.c -------------------------------------------------------------------------------- /gensym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gensym.awk -------------------------------------------------------------------------------- /gprof/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/GNUmakefile.in -------------------------------------------------------------------------------- /gprof/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/GNUmakerules -------------------------------------------------------------------------------- /gprof/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/README -------------------------------------------------------------------------------- /gprof/arcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/arcs.c -------------------------------------------------------------------------------- /gprof/dfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/dfn.c -------------------------------------------------------------------------------- /gprof/gprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/gprof.c -------------------------------------------------------------------------------- /gprof/gprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/gprof.h -------------------------------------------------------------------------------- /gprof/gprof_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/gprof_printf.c -------------------------------------------------------------------------------- /gprof/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/i386.c -------------------------------------------------------------------------------- /gprof/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/i386.h -------------------------------------------------------------------------------- /gprof/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/lookup.c -------------------------------------------------------------------------------- /gprof/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/pathnames.h -------------------------------------------------------------------------------- /gprof/printgprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/printgprof.c -------------------------------------------------------------------------------- /gprof/printlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/printlist.c -------------------------------------------------------------------------------- /gprof/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/gprof/qsort.c -------------------------------------------------------------------------------- /hpfq/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/hpfq/GNUmakefile.in -------------------------------------------------------------------------------- /hpfq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/hpfq/README -------------------------------------------------------------------------------- /hpfq/hpfq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/hpfq/hpfq.c -------------------------------------------------------------------------------- /hpfq/hpfq_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/hpfq/hpfq_impl.h -------------------------------------------------------------------------------- /hpfq/leaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/hpfq/leaf.c -------------------------------------------------------------------------------- /hpfq/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/hpfq/stats.c -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/install.sh -------------------------------------------------------------------------------- /kern/GNUmakefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/GNUmakefile.in -------------------------------------------------------------------------------- /kern/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/GNUmakerules -------------------------------------------------------------------------------- /kern/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/README -------------------------------------------------------------------------------- /kern/anno_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/anno_dump.c -------------------------------------------------------------------------------- /kern/anno_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/anno_init.c -------------------------------------------------------------------------------- /kern/anno_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/anno_intr.c -------------------------------------------------------------------------------- /kern/anno_trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/anno_trap.c -------------------------------------------------------------------------------- /kern/arm32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/arm32/README -------------------------------------------------------------------------------- /kern/arm32/gdb_sup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/arm32/gdb_sup.S -------------------------------------------------------------------------------- /kern/arm32/sendsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/arm32/sendsig.c -------------------------------------------------------------------------------- /kern/gdb_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/gdb_serial.c -------------------------------------------------------------------------------- /kern/mem_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/mem_lock.c -------------------------------------------------------------------------------- /kern/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/version.c -------------------------------------------------------------------------------- /kern/version_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/version_print.c -------------------------------------------------------------------------------- /kern/x86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/README -------------------------------------------------------------------------------- /kern/x86/base_gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/base_gdt.c -------------------------------------------------------------------------------- /kern/x86/base_idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/base_idt.c -------------------------------------------------------------------------------- /kern/x86/base_trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/base_trap.c -------------------------------------------------------------------------------- /kern/x86/base_tss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/base_tss.c -------------------------------------------------------------------------------- /kern/x86/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/cpuid.c -------------------------------------------------------------------------------- /kern/x86/gate_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/gate_init.c -------------------------------------------------------------------------------- /kern/x86/pc/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/pc/pic.c -------------------------------------------------------------------------------- /kern/x86/pc/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/kern/x86/pc/rtc.c -------------------------------------------------------------------------------- /knit/All.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/All.unit -------------------------------------------------------------------------------- /knit/Boot.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Boot.unit -------------------------------------------------------------------------------- /knit/CmdLine.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/CmdLine.unit -------------------------------------------------------------------------------- /knit/Console.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Console.unit -------------------------------------------------------------------------------- /knit/Delta.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Delta.unit -------------------------------------------------------------------------------- /knit/Files.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Files.unit -------------------------------------------------------------------------------- /knit/Flags.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Flags.unit -------------------------------------------------------------------------------- /knit/Glue.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Glue.unit -------------------------------------------------------------------------------- /knit/Kernels.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Kernels.unit -------------------------------------------------------------------------------- /knit/Memory.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Memory.unit -------------------------------------------------------------------------------- /knit/Misc.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Misc.unit -------------------------------------------------------------------------------- /knit/Network.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Network.unit -------------------------------------------------------------------------------- /knit/Process.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Process.unit -------------------------------------------------------------------------------- /knit/Queue.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Queue.unit -------------------------------------------------------------------------------- /knit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/README -------------------------------------------------------------------------------- /knit/Threads.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Threads.unit -------------------------------------------------------------------------------- /knit/Time.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/Time.unit -------------------------------------------------------------------------------- /knit/X86.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/X86.unit -------------------------------------------------------------------------------- /knit/c/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/bitops.h -------------------------------------------------------------------------------- /knit/c/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/cat.c -------------------------------------------------------------------------------- /knit/c/com_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/com_init.c -------------------------------------------------------------------------------- /knit/c/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/echo.c -------------------------------------------------------------------------------- /knit/c/ether_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/ether_if.c -------------------------------------------------------------------------------- /knit/c/fromenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/fromenv.c -------------------------------------------------------------------------------- /knit/c/fs_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/fs_init.c -------------------------------------------------------------------------------- /knit/c/fsn_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/fsn_obj.c -------------------------------------------------------------------------------- /knit/c/fudp_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/fudp_obj.c -------------------------------------------------------------------------------- /knit/c/gdb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/gdb_init.c -------------------------------------------------------------------------------- /knit/c/lmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/lmm.c -------------------------------------------------------------------------------- /knit/c/lmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/lmm.h -------------------------------------------------------------------------------- /knit/c/lmm_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/lmm_bits.c -------------------------------------------------------------------------------- /knit/c/lmm_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/lmm_lock.c -------------------------------------------------------------------------------- /knit/c/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/malloc.c -------------------------------------------------------------------------------- /knit/c/mallocf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/mallocf.c -------------------------------------------------------------------------------- /knit/c/mallocf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/mallocf.h -------------------------------------------------------------------------------- /knit/c/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/mem.c -------------------------------------------------------------------------------- /knit/c/mem_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/mem_auto.c -------------------------------------------------------------------------------- /knit/c/my_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/my_exit.c -------------------------------------------------------------------------------- /knit/c/prepost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/prepost.c -------------------------------------------------------------------------------- /knit/c/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/progress.c -------------------------------------------------------------------------------- /knit/c/putbytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/putbytes.c -------------------------------------------------------------------------------- /knit/c/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/sleep.c -------------------------------------------------------------------------------- /knit/c/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/sleep.h -------------------------------------------------------------------------------- /knit/c/smalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/smalloc.c -------------------------------------------------------------------------------- /knit/c/smallocf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/smallocf.c -------------------------------------------------------------------------------- /knit/c/tcp_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/c/tcp_plus.c -------------------------------------------------------------------------------- /knit/knit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/knit/knit.mk -------------------------------------------------------------------------------- /libc/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/GNUmakerules -------------------------------------------------------------------------------- /libc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/README -------------------------------------------------------------------------------- /libc/arm32/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/arm32/ffs.c -------------------------------------------------------------------------------- /libc/arm32/gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/arm32/gcc.S -------------------------------------------------------------------------------- /libc/arm32/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/arm32/quad.h -------------------------------------------------------------------------------- /libc/gen/__main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/gen/__main.c -------------------------------------------------------------------------------- /libc/gen/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/gen/panic.c -------------------------------------------------------------------------------- /libc/gen/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/gen/sleep.c -------------------------------------------------------------------------------- /libc/gen/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/gen/time.c -------------------------------------------------------------------------------- /libc/gmon/gmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/gmon/gmon.c -------------------------------------------------------------------------------- /libc/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/stdio/gets.c -------------------------------------------------------------------------------- /libc/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/stdio/puts.c -------------------------------------------------------------------------------- /libc/x86/bcopy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/x86/bcopy.S -------------------------------------------------------------------------------- /libc/x86/bzero.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/x86/bzero.S -------------------------------------------------------------------------------- /libc/x86/gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/x86/gcc.S -------------------------------------------------------------------------------- /libc/x86/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/x86/memset.S -------------------------------------------------------------------------------- /libc/x86/ntoh.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/x86/ntoh.S -------------------------------------------------------------------------------- /libc/x86/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libc/x86/setjmp.S -------------------------------------------------------------------------------- /libmad/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libmad/README -------------------------------------------------------------------------------- /libmad/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libmad/config.h -------------------------------------------------------------------------------- /libmad/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/libmad/mad.h -------------------------------------------------------------------------------- /linux/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/COPYING -------------------------------------------------------------------------------- /linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/README -------------------------------------------------------------------------------- /linux/dev/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/NOTES -------------------------------------------------------------------------------- /linux/dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/README -------------------------------------------------------------------------------- /linux/dev/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/block.c -------------------------------------------------------------------------------- /linux/dev/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/block.h -------------------------------------------------------------------------------- /linux/dev/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/glue.h -------------------------------------------------------------------------------- /linux/dev/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/ide.c -------------------------------------------------------------------------------- /linux/dev/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/init.c -------------------------------------------------------------------------------- /linux/dev/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/init.h -------------------------------------------------------------------------------- /linux/dev/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/irq.c -------------------------------------------------------------------------------- /linux/dev/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/irq.h -------------------------------------------------------------------------------- /linux/dev/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/misc.c -------------------------------------------------------------------------------- /linux/dev/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/net.c -------------------------------------------------------------------------------- /linux/dev/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/net.h -------------------------------------------------------------------------------- /linux/dev/ofw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/ofw.c -------------------------------------------------------------------------------- /linux/dev/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/port.c -------------------------------------------------------------------------------- /linux/dev/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/sched.c -------------------------------------------------------------------------------- /linux/dev/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/sched.h -------------------------------------------------------------------------------- /linux/dev/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/dev/timer.c -------------------------------------------------------------------------------- /linux/fs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/README -------------------------------------------------------------------------------- /linux/fs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/TODO -------------------------------------------------------------------------------- /linux/fs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/dev.c -------------------------------------------------------------------------------- /linux/fs/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/dev.h -------------------------------------------------------------------------------- /linux/fs/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/errno.c -------------------------------------------------------------------------------- /linux/fs/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/errno.h -------------------------------------------------------------------------------- /linux/fs/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/file.c -------------------------------------------------------------------------------- /linux/fs/floppy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/floppy.c -------------------------------------------------------------------------------- /linux/fs/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/global.h -------------------------------------------------------------------------------- /linux/fs/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/glue.c -------------------------------------------------------------------------------- /linux/fs/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/init.c -------------------------------------------------------------------------------- /linux/fs/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/time.c -------------------------------------------------------------------------------- /linux/fs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/fs/types.h -------------------------------------------------------------------------------- /linux/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/linux/src/README -------------------------------------------------------------------------------- /linux/src/include/asm-arm/arch-ebsa110/ide.h: -------------------------------------------------------------------------------- 1 | /* no ide */ 2 | -------------------------------------------------------------------------------- /linux/src/include/asm-arm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux/src/include/linux/user.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lmm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/README -------------------------------------------------------------------------------- /lmm/lmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm.h -------------------------------------------------------------------------------- /lmm/lmm_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm_alloc.c -------------------------------------------------------------------------------- /lmm/lmm_avail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm_avail.c -------------------------------------------------------------------------------- /lmm/lmm_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm_dump.c -------------------------------------------------------------------------------- /lmm/lmm_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm_free.c -------------------------------------------------------------------------------- /lmm/lmm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm_init.c -------------------------------------------------------------------------------- /lmm/lmm_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/lmm/lmm_stats.c -------------------------------------------------------------------------------- /memdebug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/memdebug/README -------------------------------------------------------------------------------- /memdebug/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/memdebug/TODO -------------------------------------------------------------------------------- /memfs/memfs_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/memfs/memfs_com.c -------------------------------------------------------------------------------- /modules.x86.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/modules.x86.pc -------------------------------------------------------------------------------- /netbsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/README -------------------------------------------------------------------------------- /netbsd/fs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/TODO -------------------------------------------------------------------------------- /netbsd/fs/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/errno.c -------------------------------------------------------------------------------- /netbsd/fs/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/errno.h -------------------------------------------------------------------------------- /netbsd/fs/fs_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/fs_fs.c -------------------------------------------------------------------------------- /netbsd/fs/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/glue.c -------------------------------------------------------------------------------- /netbsd/fs/osenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/osenv.c -------------------------------------------------------------------------------- /netbsd/fs/osenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netbsd/fs/osenv.h -------------------------------------------------------------------------------- /netdisk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/README -------------------------------------------------------------------------------- /netdisk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/debug.h -------------------------------------------------------------------------------- /netdisk/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/devices.c -------------------------------------------------------------------------------- /netdisk/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/driver.c -------------------------------------------------------------------------------- /netdisk/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/driver.h -------------------------------------------------------------------------------- /netdisk/fileops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/fileops.c -------------------------------------------------------------------------------- /netdisk/fileops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/fileops.h -------------------------------------------------------------------------------- /netdisk/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/image.c -------------------------------------------------------------------------------- /netdisk/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/image.h -------------------------------------------------------------------------------- /netdisk/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/log.c -------------------------------------------------------------------------------- /netdisk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/main.c -------------------------------------------------------------------------------- /netdisk/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/misc.c -------------------------------------------------------------------------------- /netdisk/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/misc.h -------------------------------------------------------------------------------- /netdisk/perfmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/perfmon.h -------------------------------------------------------------------------------- /netdisk/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/rpc.c -------------------------------------------------------------------------------- /netdisk/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/rpc.h -------------------------------------------------------------------------------- /netdisk/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/sleep.c -------------------------------------------------------------------------------- /netdisk/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/socket.c -------------------------------------------------------------------------------- /netdisk/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/socket.h -------------------------------------------------------------------------------- /netdisk/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/timer.c -------------------------------------------------------------------------------- /netdisk/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/netdisk/timer.h -------------------------------------------------------------------------------- /oskit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/README -------------------------------------------------------------------------------- /oskit/amm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/amm.h -------------------------------------------------------------------------------- /oskit/anno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/anno.h -------------------------------------------------------------------------------- /oskit/arm32/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/arm32/asm.h -------------------------------------------------------------------------------- /oskit/arm32/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/arm32/dev.h -------------------------------------------------------------------------------- /oskit/arm32/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/arm32/gdb.h -------------------------------------------------------------------------------- /oskit/arm32/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/arm32/pio.h -------------------------------------------------------------------------------- /oskit/arm32/uvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/arm32/uvm.h -------------------------------------------------------------------------------- /oskit/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/boolean.h -------------------------------------------------------------------------------- /oskit/c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/README -------------------------------------------------------------------------------- /oskit/c/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/a.out.h -------------------------------------------------------------------------------- /oskit/c/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/alloca.h -------------------------------------------------------------------------------- /oskit/c/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/assert.h -------------------------------------------------------------------------------- /oskit/c/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/ctype.h -------------------------------------------------------------------------------- /oskit/c/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/dirent.h -------------------------------------------------------------------------------- /oskit/c/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/errno.h -------------------------------------------------------------------------------- /oskit/c/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/fcntl.h -------------------------------------------------------------------------------- /oskit/c/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/fd.h -------------------------------------------------------------------------------- /oskit/c/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/float.h -------------------------------------------------------------------------------- /oskit/c/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/fs.h -------------------------------------------------------------------------------- /oskit/c/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/limits.h -------------------------------------------------------------------------------- /oskit/c/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/malloc.h -------------------------------------------------------------------------------- /oskit/c/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/math.h -------------------------------------------------------------------------------- /oskit/c/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/mqueue.h -------------------------------------------------------------------------------- /oskit/c/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/netdb.h -------------------------------------------------------------------------------- /oskit/c/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/resolv.h -------------------------------------------------------------------------------- /oskit/c/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/setjmp.h -------------------------------------------------------------------------------- /oskit/c/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/signal.h -------------------------------------------------------------------------------- /oskit/c/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/stdarg.h -------------------------------------------------------------------------------- /oskit/c/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/stddef.h -------------------------------------------------------------------------------- /oskit/c/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/stdio.h -------------------------------------------------------------------------------- /oskit/c/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/stdlib.h -------------------------------------------------------------------------------- /oskit/c/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/string.h -------------------------------------------------------------------------------- /oskit/c/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/strings.h -------------------------------------------------------------------------------- /oskit/c/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/sys/uio.h -------------------------------------------------------------------------------- /oskit/c/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/syslog.h -------------------------------------------------------------------------------- /oskit/c/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/termios.h -------------------------------------------------------------------------------- /oskit/c/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/time.h -------------------------------------------------------------------------------- /oskit/c/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/unistd.h -------------------------------------------------------------------------------- /oskit/c/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/utime.h -------------------------------------------------------------------------------- /oskit/c/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/c/wchar.h -------------------------------------------------------------------------------- /oskit/clientos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/clientos.h -------------------------------------------------------------------------------- /oskit/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com.h -------------------------------------------------------------------------------- /oskit/com/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com/README -------------------------------------------------------------------------------- /oskit/com/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com/lock.h -------------------------------------------------------------------------------- /oskit/com/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com/mem.h -------------------------------------------------------------------------------- /oskit/com/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com/pipe.h -------------------------------------------------------------------------------- /oskit/com/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com/queue.h -------------------------------------------------------------------------------- /oskit/com/sfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/com/sfs.h -------------------------------------------------------------------------------- /oskit/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/compiler.h -------------------------------------------------------------------------------- /oskit/comsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/comsid.h -------------------------------------------------------------------------------- /oskit/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/config.h.in -------------------------------------------------------------------------------- /oskit/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/console.h -------------------------------------------------------------------------------- /oskit/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/debug.h -------------------------------------------------------------------------------- /oskit/dev/GUID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/GUID -------------------------------------------------------------------------------- /oskit/dev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/README -------------------------------------------------------------------------------- /oskit/dev/blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/blk.h -------------------------------------------------------------------------------- /oskit/dev/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/bus.h -------------------------------------------------------------------------------- /oskit/dev/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/clock.h -------------------------------------------------------------------------------- /oskit/dev/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/dev.h -------------------------------------------------------------------------------- /oskit/dev/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/error.h -------------------------------------------------------------------------------- /oskit/dev/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/ide.h -------------------------------------------------------------------------------- /oskit/dev/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/isa.h -------------------------------------------------------------------------------- /oskit/dev/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/linux.h -------------------------------------------------------------------------------- /oskit/dev/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/net.h -------------------------------------------------------------------------------- /oskit/dev/osenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/osenv.h -------------------------------------------------------------------------------- /oskit/dev/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/scsi.h -------------------------------------------------------------------------------- /oskit/dev/soa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/soa.h -------------------------------------------------------------------------------- /oskit/dev/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/timer.h -------------------------------------------------------------------------------- /oskit/dev/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dev/tty.h -------------------------------------------------------------------------------- /oskit/dpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/dpf.h -------------------------------------------------------------------------------- /oskit/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/error.h -------------------------------------------------------------------------------- /oskit/exec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/exec/README -------------------------------------------------------------------------------- /oskit/exec/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/exec/elf.h -------------------------------------------------------------------------------- /oskit/exec/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/exec/exec.h -------------------------------------------------------------------------------- /oskit/flask/avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/flask/avc.h -------------------------------------------------------------------------------- /oskit/fs/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/NOTES -------------------------------------------------------------------------------- /oskit/fs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/README -------------------------------------------------------------------------------- /oskit/fs/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/dir.h -------------------------------------------------------------------------------- /oskit/fs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/file.h -------------------------------------------------------------------------------- /oskit/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/fs.h -------------------------------------------------------------------------------- /oskit/fs/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/linux.h -------------------------------------------------------------------------------- /oskit/fs/memfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/memfs.h -------------------------------------------------------------------------------- /oskit/fs/netbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/netbsd.h -------------------------------------------------------------------------------- /oskit/fs/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/read.h -------------------------------------------------------------------------------- /oskit/fs/soa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fs/soa.h -------------------------------------------------------------------------------- /oskit/fudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/fudp.h -------------------------------------------------------------------------------- /oskit/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/gdb.h -------------------------------------------------------------------------------- /oskit/hpfq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/hpfq.h -------------------------------------------------------------------------------- /oskit/io/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/README -------------------------------------------------------------------------------- /oskit/io/absio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/absio.h -------------------------------------------------------------------------------- /oskit/io/blkio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/blkio.h -------------------------------------------------------------------------------- /oskit/io/bufio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/bufio.h -------------------------------------------------------------------------------- /oskit/io/chario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/chario.h -------------------------------------------------------------------------------- /oskit/io/dpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/dpf.h -------------------------------------------------------------------------------- /oskit/io/iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/iovec.h -------------------------------------------------------------------------------- /oskit/io/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/mouse.h -------------------------------------------------------------------------------- /oskit/io/netio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/netio.h -------------------------------------------------------------------------------- /oskit/io/spf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/spf.h -------------------------------------------------------------------------------- /oskit/io/uspf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/io/uspf.h -------------------------------------------------------------------------------- /oskit/lmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/lmm.h -------------------------------------------------------------------------------- /oskit/memdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/memdebug.h -------------------------------------------------------------------------------- /oskit/mib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/mib.h -------------------------------------------------------------------------------- /oskit/mib/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/mib/icmp.h -------------------------------------------------------------------------------- /oskit/mib/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/mib/ip.h -------------------------------------------------------------------------------- /oskit/mib/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/mib/snmp.h -------------------------------------------------------------------------------- /oskit/mib/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/mib/tcp.h -------------------------------------------------------------------------------- /oskit/mib/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/mib/udp.h -------------------------------------------------------------------------------- /oskit/misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/misc/README -------------------------------------------------------------------------------- /oskit/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/net/README -------------------------------------------------------------------------------- /oskit/net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/net/arp.h -------------------------------------------------------------------------------- /oskit/net/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/net/bootp.h -------------------------------------------------------------------------------- /oskit/net/ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/net/ether.h -------------------------------------------------------------------------------- /oskit/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/page.h -------------------------------------------------------------------------------- /oskit/pd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/pd.h -------------------------------------------------------------------------------- /oskit/principal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/principal.h -------------------------------------------------------------------------------- /oskit/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/queue.h -------------------------------------------------------------------------------- /oskit/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/smp.h -------------------------------------------------------------------------------- /oskit/smp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/smp/README -------------------------------------------------------------------------------- /oskit/sproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/sproc.h -------------------------------------------------------------------------------- /oskit/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/startup.h -------------------------------------------------------------------------------- /oskit/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/svm.h -------------------------------------------------------------------------------- /oskit/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/time.h -------------------------------------------------------------------------------- /oskit/tmcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/tmcp.h -------------------------------------------------------------------------------- /oskit/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/tty.h -------------------------------------------------------------------------------- /oskit/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/types.h -------------------------------------------------------------------------------- /oskit/udplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/udplib.h -------------------------------------------------------------------------------- /oskit/uvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/uvm.h -------------------------------------------------------------------------------- /oskit/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/version.h -------------------------------------------------------------------------------- /oskit/video/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/video/fb.h -------------------------------------------------------------------------------- /oskit/video/s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/video/s3.h -------------------------------------------------------------------------------- /oskit/x86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/README -------------------------------------------------------------------------------- /oskit/x86/anno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/anno.h -------------------------------------------------------------------------------- /oskit/x86/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/asm.h -------------------------------------------------------------------------------- /oskit/x86/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/cpuid.h -------------------------------------------------------------------------------- /oskit/x86/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/debug.h -------------------------------------------------------------------------------- /oskit/x86/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/dev.h -------------------------------------------------------------------------------- /oskit/x86/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/gdb.h -------------------------------------------------------------------------------- /oskit/x86/i16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/i16.h -------------------------------------------------------------------------------- /oskit/x86/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/page.h -------------------------------------------------------------------------------- /oskit/x86/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/param.h -------------------------------------------------------------------------------- /oskit/x86/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/pio.h -------------------------------------------------------------------------------- /oskit/x86/pmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/pmode.h -------------------------------------------------------------------------------- /oskit/x86/seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/seg.h -------------------------------------------------------------------------------- /oskit/x86/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/smp.h -------------------------------------------------------------------------------- /oskit/x86/sproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/sproc.h -------------------------------------------------------------------------------- /oskit/x86/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/trap.h -------------------------------------------------------------------------------- /oskit/x86/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/tss.h -------------------------------------------------------------------------------- /oskit/x86/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/types.h -------------------------------------------------------------------------------- /oskit/x86/uvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/oskit/x86/uvm.h -------------------------------------------------------------------------------- /posix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/README -------------------------------------------------------------------------------- /posix/sys/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/_exit.c -------------------------------------------------------------------------------- /posix/sys/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/bind.c -------------------------------------------------------------------------------- /posix/sys/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/chdir.c -------------------------------------------------------------------------------- /posix/sys/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/chmod.c -------------------------------------------------------------------------------- /posix/sys/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/chown.c -------------------------------------------------------------------------------- /posix/sys/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/close.c -------------------------------------------------------------------------------- /posix/sys/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/creat.c -------------------------------------------------------------------------------- /posix/sys/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/dup.c -------------------------------------------------------------------------------- /posix/sys/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/dup2.c -------------------------------------------------------------------------------- /posix/sys/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/fcntl.c -------------------------------------------------------------------------------- /posix/sys/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/flock.c -------------------------------------------------------------------------------- /posix/sys/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/fork.c -------------------------------------------------------------------------------- /posix/sys/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/fs.c -------------------------------------------------------------------------------- /posix/sys/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/fstat.c -------------------------------------------------------------------------------- /posix/sys/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/fsync.c -------------------------------------------------------------------------------- /posix/sys/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/ioctl.c -------------------------------------------------------------------------------- /posix/sys/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/link.c -------------------------------------------------------------------------------- /posix/sys/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/lseek.c -------------------------------------------------------------------------------- /posix/sys/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/lstat.c -------------------------------------------------------------------------------- /posix/sys/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/mkdir.c -------------------------------------------------------------------------------- /posix/sys/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/mknod.c -------------------------------------------------------------------------------- /posix/sys/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/mmap.c -------------------------------------------------------------------------------- /posix/sys/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/mq.h -------------------------------------------------------------------------------- /posix/sys/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/open.c -------------------------------------------------------------------------------- /posix/sys/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/pipe.c -------------------------------------------------------------------------------- /posix/sys/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/posix.c -------------------------------------------------------------------------------- /posix/sys/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/posix.h -------------------------------------------------------------------------------- /posix/sys/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/read.c -------------------------------------------------------------------------------- /posix/sys/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/readv.c -------------------------------------------------------------------------------- /posix/sys/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/recv.c -------------------------------------------------------------------------------- /posix/sys/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/rmdir.c -------------------------------------------------------------------------------- /posix/sys/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/sbrk.c -------------------------------------------------------------------------------- /posix/sys/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/send.c -------------------------------------------------------------------------------- /posix/sys/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/stat.c -------------------------------------------------------------------------------- /posix/sys/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/umask.c -------------------------------------------------------------------------------- /posix/sys/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/uname.c -------------------------------------------------------------------------------- /posix/sys/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/utime.c -------------------------------------------------------------------------------- /posix/sys/vfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/vfork.c -------------------------------------------------------------------------------- /posix/sys/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/wait4.c -------------------------------------------------------------------------------- /posix/sys/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/posix/sys/write.c -------------------------------------------------------------------------------- /realtime/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/realtime/README -------------------------------------------------------------------------------- /rtld/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/GNUmakerules -------------------------------------------------------------------------------- /rtld/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/README -------------------------------------------------------------------------------- /rtld/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/debug.c -------------------------------------------------------------------------------- /rtld/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/debug.h -------------------------------------------------------------------------------- /rtld/i386/reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/i386/reloc.c -------------------------------------------------------------------------------- /rtld/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/ldscript -------------------------------------------------------------------------------- /rtld/rtld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/rtld.c -------------------------------------------------------------------------------- /rtld/rtld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/rtld.h -------------------------------------------------------------------------------- /rtld/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/rtld/xmalloc.c -------------------------------------------------------------------------------- /security/avtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/avtab.c -------------------------------------------------------------------------------- /security/avtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/avtab.h -------------------------------------------------------------------------------- /security/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/global.h -------------------------------------------------------------------------------- /security/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/init.c -------------------------------------------------------------------------------- /security/mls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/mls.c -------------------------------------------------------------------------------- /security/mls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/mls.h -------------------------------------------------------------------------------- /security/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/queue.c -------------------------------------------------------------------------------- /security/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/queue.h -------------------------------------------------------------------------------- /security/sidtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/sidtab.c -------------------------------------------------------------------------------- /security/sidtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/sidtab.h -------------------------------------------------------------------------------- /security/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/symtab.c -------------------------------------------------------------------------------- /security/symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/security/symtab.h -------------------------------------------------------------------------------- /smp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/COPYING -------------------------------------------------------------------------------- /smp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/README -------------------------------------------------------------------------------- /smp/x86/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/apic.c -------------------------------------------------------------------------------- /smp/x86/asm-smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/asm-smp.h -------------------------------------------------------------------------------- /smp/x86/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/bitops.h -------------------------------------------------------------------------------- /smp/x86/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/boot.S -------------------------------------------------------------------------------- /smp/x86/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/global.h -------------------------------------------------------------------------------- /smp/x86/i82489.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/i82489.h -------------------------------------------------------------------------------- /smp/x86/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/smp.c -------------------------------------------------------------------------------- /smp/x86/smp_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/smp/x86/smp_map.c -------------------------------------------------------------------------------- /startup/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/startup/README -------------------------------------------------------------------------------- /svm/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/GNUmakerules -------------------------------------------------------------------------------- /svm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/README -------------------------------------------------------------------------------- /svm/arm32/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/arm32/svm.h -------------------------------------------------------------------------------- /svm/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/mem.c -------------------------------------------------------------------------------- /svm/mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/mincore.c -------------------------------------------------------------------------------- /svm/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/mmap.c -------------------------------------------------------------------------------- /svm/osenv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/osenv_mem.c -------------------------------------------------------------------------------- /svm/svm_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_alloc.c -------------------------------------------------------------------------------- /svm/svm_dealloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_dealloc.c -------------------------------------------------------------------------------- /svm/svm_fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_fault.c -------------------------------------------------------------------------------- /svm/svm_incore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_incore.c -------------------------------------------------------------------------------- /svm/svm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_init.c -------------------------------------------------------------------------------- /svm/svm_mapped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_mapped.c -------------------------------------------------------------------------------- /svm/svm_pagein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_pagein.c -------------------------------------------------------------------------------- /svm/svm_pageout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_pageout.c -------------------------------------------------------------------------------- /svm/svm_physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_physmem.c -------------------------------------------------------------------------------- /svm/svm_protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/svm_protect.c -------------------------------------------------------------------------------- /svm/x86/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/x86/svm.h -------------------------------------------------------------------------------- /svm/x86/svm_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/svm/x86/svm_mem.c -------------------------------------------------------------------------------- /threads/MakeFlags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/threads/MakeFlags -------------------------------------------------------------------------------- /threads/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/threads/README -------------------------------------------------------------------------------- /threads/netio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/threads/netio.c -------------------------------------------------------------------------------- /threads/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/threads/panic.c -------------------------------------------------------------------------------- /threads/x86/pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/threads/x86/pcb.h -------------------------------------------------------------------------------- /tmcp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/tmcp/README -------------------------------------------------------------------------------- /tmcp/start_tmcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/tmcp/start_tmcp.c -------------------------------------------------------------------------------- /tmcp/tmcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/tmcp/tmcp.c -------------------------------------------------------------------------------- /tmcp/tmcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/tmcp/tmcp.h -------------------------------------------------------------------------------- /tmcp/tmcp_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/tmcp/tmcp_log.c -------------------------------------------------------------------------------- /tmcp/tmcp_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/tmcp/tmcp_net.c -------------------------------------------------------------------------------- /udp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/udp/README -------------------------------------------------------------------------------- /udp/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/udp/arp.c -------------------------------------------------------------------------------- /udp/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/udp/eth.c -------------------------------------------------------------------------------- /udp/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/udp/ip.c -------------------------------------------------------------------------------- /udp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/udp/socket.c -------------------------------------------------------------------------------- /udp/udplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/udp/udplib.h -------------------------------------------------------------------------------- /unix/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/GNUmakerules -------------------------------------------------------------------------------- /unix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/README -------------------------------------------------------------------------------- /unix/base_stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/base_stack.S -------------------------------------------------------------------------------- /unix/bmodfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/bmodfs.c -------------------------------------------------------------------------------- /unix/elf/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/elf/crt1.c -------------------------------------------------------------------------------- /unix/elf/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/elf/crti.S -------------------------------------------------------------------------------- /unix/elf/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/elf/crtn.S -------------------------------------------------------------------------------- /unix/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/errno.c -------------------------------------------------------------------------------- /unix/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/fd.c -------------------------------------------------------------------------------- /unix/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/filesystem.c -------------------------------------------------------------------------------- /unix/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/irq.c -------------------------------------------------------------------------------- /unix/libkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/libkern.c -------------------------------------------------------------------------------- /unix/linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/linux/README -------------------------------------------------------------------------------- /unix/linux/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/linux/net.c -------------------------------------------------------------------------------- /unix/mem_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/mem_lock.c -------------------------------------------------------------------------------- /unix/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/mmap.c -------------------------------------------------------------------------------- /unix/native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/native.h -------------------------------------------------------------------------------- /unix/osenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/osenv.c -------------------------------------------------------------------------------- /unix/osenv_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/osenv_intr.c -------------------------------------------------------------------------------- /unix/osenv_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/osenv_rtc.c -------------------------------------------------------------------------------- /unix/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/pit.c -------------------------------------------------------------------------------- /unix/rtclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/rtclock.c -------------------------------------------------------------------------------- /unix/skbufio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/skbufio.c -------------------------------------------------------------------------------- /unix/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/socket.c -------------------------------------------------------------------------------- /unix/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/stdio.c -------------------------------------------------------------------------------- /unix/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/support.h -------------------------------------------------------------------------------- /unix/synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/synch.c -------------------------------------------------------------------------------- /unix/unix_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/unix_mem.c -------------------------------------------------------------------------------- /unix/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/unix/version.c -------------------------------------------------------------------------------- /uvm/sproc/sproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/uvm/sproc/sproc.c -------------------------------------------------------------------------------- /uvm/uvm/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/uvm/uvm/global.h -------------------------------------------------------------------------------- /uvm/uvm/include/fs_nfs.h: -------------------------------------------------------------------------------- 1 | #undef NFS 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_compat_43.h: -------------------------------------------------------------------------------- 1 | #undef COMPAT_43 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_compat_freebsd.h: -------------------------------------------------------------------------------- 1 | #undef COMPAT_FREEBSD 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_compat_oldboot.h: -------------------------------------------------------------------------------- 1 | /* option `COMPAT_OLDBOOT' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_compat_osf1.h: -------------------------------------------------------------------------------- 1 | /* option `COMPAT_OSF1' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_compat_sunos.h: -------------------------------------------------------------------------------- 1 | /* option `COMPAT_SUNOS' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_compat_svr4.h: -------------------------------------------------------------------------------- 1 | #undef COMPAT_SVR4 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_ddb.h: -------------------------------------------------------------------------------- 1 | #undef DDB 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_dummy_nops.h: -------------------------------------------------------------------------------- 1 | /* option `DUMMY_NOPS' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_gateway.h: -------------------------------------------------------------------------------- 1 | /* option `GATEWAY' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_kmemstats.h: -------------------------------------------------------------------------------- 1 | /* option `KMEMSTATS' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_largepages.h: -------------------------------------------------------------------------------- 1 | /* option `LARGEPAGES' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_lockdebug.h: -------------------------------------------------------------------------------- 1 | /* option `LOCKDEBUG' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_math_emulate.h: -------------------------------------------------------------------------------- 1 | #define MATH_EMULATE 1 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_multiprocessor.h: -------------------------------------------------------------------------------- 1 | /* option `MULTIPROCESSOR' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_pool.h: -------------------------------------------------------------------------------- 1 | /* option `POOL_DIAGNOSTIC' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_poollog.h: -------------------------------------------------------------------------------- 1 | /* option `POOL_LOGSIZE' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_user_ldt.h: -------------------------------------------------------------------------------- 1 | #undef USER_LDT 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_vm86.h: -------------------------------------------------------------------------------- 1 | #define VM86 1 2 | -------------------------------------------------------------------------------- /uvm/uvm/include/opt_vnode_op_noinline.h: -------------------------------------------------------------------------------- 1 | /* option `VNODE_OP_NOINLINE' not defined */ 2 | -------------------------------------------------------------------------------- /uvm/uvm/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/uvm/uvm/mem.c -------------------------------------------------------------------------------- /video/svgalib/src/chips.regs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/x11/README -------------------------------------------------------------------------------- /x11/client/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/x11/client/README -------------------------------------------------------------------------------- /x11/video/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/x11/video/README -------------------------------------------------------------------------------- /zlib/GNUmakerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/zlib/GNUmakerules -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSPreservProject/oskit/HEAD/zlib/README --------------------------------------------------------------------------------