├── .gitignore ├── COPYING ├── GNUmakefile ├── README ├── README.arm ├── README.fpga ├── README.sparc ├── TODO ├── acpkg ├── .gitignore ├── Makefrag ├── acpkg-filter-args.pl ├── config.guess └── patches │ ├── a2ps-4.13b.patch │ ├── clamav-0.88.patch │ ├── clamav-0.91.2.patch │ ├── coreutils-5.94.patch │ ├── dhcp-3.0.5.patch │ ├── dmalloc-5.5.0.patch │ ├── empty.patch │ ├── fbida-2.06.patch │ ├── gcc34.patch │ ├── gdb-6.5.patch │ ├── ghostscript-8.54-gpl.patch │ ├── grep-2.5.3.patch │ ├── lesstif-0.95.0.patch │ ├── libX11-1.1.3.patch │ ├── libXt-1.0.4.patch │ ├── linux-2.6.20.4.patch │ ├── mairix-0.21.patch │ ├── make-3.81.patch │ ├── nano.patch │ ├── net-tools-1.60.patch │ ├── openssh-4.3p2.patch │ ├── openssl-0.9.8a.patch │ ├── perl-5.8.8.patch │ ├── python-svn.patch │ ├── qemu-0.9.1.patch │ ├── sfslite-1.0.0.patch │ ├── svgalib-1.9.25.patch │ ├── tar-1.15.patch │ ├── vim70.patch │ ├── xf86-input-void-1.1.0.patch │ ├── xorg-server-1.4.patch │ ├── xpdf-3.02.patch │ ├── xrandr-1.2.2.patch │ └── zlib-1.2.3.patch ├── boot ├── Makefrag ├── bootother.S ├── bsdata.S ├── code16gcc.h ├── csetup.c ├── isolinux.bin ├── pad.pl ├── partinit.pl ├── setup.S └── syslinux.cfg ├── conf ├── .gitignore ├── Makefrag.amd64 ├── Makefrag.arm ├── Makefrag.i386 ├── Makefrag.llvm ├── Makefrag.sparc ├── Makefrag.um ├── config.mk ├── embedbin │ ├── Makefrag │ ├── default.mk │ ├── dj.mk │ ├── empty.mk │ ├── httpd.mk │ ├── tiny.mk │ └── tinylwip.mk ├── gcc-flags.sh ├── gcc.specs ├── gpl-2.0.txt ├── ldso.dynlist ├── leon │ ├── binutils-leon-nofpu-r3.patch │ ├── binutils-raksha-taginsn-histar.patch │ ├── binutils-raksha-taginsn-r24.patch │ ├── binutils-tag-memo-insns.patch │ ├── gcc-leon-nofpu-r3.patch │ ├── gcc-mrestore.patch │ └── gcc3-leon-nofpu.patch ├── qemu-cmpxchg8b.patch ├── qemu-movd.patch ├── sample-bochsrc ├── sample-gdbinit ├── sample-qemu.sh ├── sample.gdbinit ├── vmware │ ├── .gitignore │ ├── data.vmdk │ ├── histar-disk.vmx │ ├── histar-iso.vmx │ └── kern.vmdk └── xilinx-drivers.patch ├── dj ├── Makefrag ├── aperlclient.cc ├── attic │ ├── catdir.c │ ├── catdir.h │ ├── gateexec_abort.cc │ ├── globalcat.h │ ├── globallabel.cc │ ├── globallabel.hh │ ├── labeltrans.cc │ ├── labeltrans.hh │ ├── sgateclnt.cc │ ├── sgateclnt.hh │ ├── sgateparam.h │ ├── share.h │ ├── sharedcaller.cc │ ├── sharedcaller.hh │ ├── sharedutil.cc │ └── sharedutil.hh ├── bcast.cc ├── bcast.hh ├── catmgr.cc ├── catmgr.hh ├── checkpoint.cc ├── checkpoint.hh ├── cryptconn.cc ├── cryptconn.hh ├── ctallocd.cc ├── delegator.cc ├── delegator.hh ├── directexec.cc ├── directexec.hh ├── djarpc.cc ├── djarpc.hh ├── djauthproxy.cc ├── djautorpc.hh ├── djc.cc ├── djcache.cc ├── djcache.hh ├── djd.cc ├── djdebug.cc ├── djdebug.hh ├── djdumpd.cc ├── djechod.cc ├── djflume.cc ├── djflume.hh ├── djfs.x ├── djfs_posix.cc ├── djfs_posix.hh ├── djfsd.cc ├── djgate.x ├── djgatesrv.cc ├── djgatesrv.hh ├── djguardcall.cc ├── djkey.cc ├── djkey.hh ├── djlabel.cc ├── djlabel.hh ├── djlogin.cc ├── djmeasure.cc ├── djops.hh ├── djperld.cc ├── djprot.cc ├── djprot.hh ├── djprotx.x ├── djrpc.hh ├── djrpcx.x ├── djsrpc.hh ├── djsrpcc.cc ├── djsrpcs.cc ├── djutil.cc ├── djutil.hh ├── execmux.hh ├── gatecallstatus.cc ├── gatecallstatus.hh ├── gateexec.cc ├── gateexec.hh ├── gateincoming.cc ├── gateincoming.hh ├── gatesender.cc ├── gatesender.hh ├── hsutil.cc ├── hsutil.hh ├── internalx.x ├── mapcreate.cc ├── mapcreate.hh ├── miscx.x ├── perf.cc ├── perf.hh ├── remote-run.cc ├── reqcontext.cc ├── reqcontext.hh └── stuff.hh ├── inc ├── admind.h ├── alignmacro.h ├── arc4.h ├── arch.h ├── assert.h ├── atomic.h ├── auth.h ├── authclnt.hh ├── authd.h ├── backtrace.h ├── backtracer.hh ├── base64.h ├── bf60.h ├── bipipe.h ├── blowfish_data.h ├── chardevs.h ├── cksum.h ├── container.h ├── cooperate.h ├── cooperate.hh ├── cpplabel.hh ├── db_schema.hh ├── debug.h ├── debug_gate.h ├── declassify.h ├── device.h ├── devpt.h ├── elf.h ├── elf32.h ├── elf64.h ├── errno.hh ├── error.h ├── error.hh ├── fb.h ├── fbcons.h ├── fd.h ├── features.h ├── fs.h ├── fs_dir.hh ├── gateclnt.hh ├── gatefilesrv.h ├── gateinvoke.hh ├── gateparam.h ├── gatesrv.hh ├── gccwrap.h ├── gobblegateclnt.hh ├── groupclnt.hh ├── hashtable.h ├── intmacro.h ├── ioctl.h ├── jcomm.h ├── jthread.h ├── jthread.hh ├── kbdcodes.h ├── kobj.h ├── label.h ├── labelutil.h ├── labelutil.hh ├── lfs.h ├── lfsimpl.h ├── lib.h ├── memlayout.h ├── multisync.h ├── netbench.hh ├── netd.h ├── netd_opnum.h ├── netdev.h ├── nethelper.hh ├── ntp.h ├── privstore.hh ├── process.h ├── prof.h ├── profiler.h ├── pty.h ├── queue.h ├── rbac.hh ├── remfile.h ├── resalloc.h ├── safeint.h ├── safetype.h ├── scopedprof.hh ├── scopeguard.hh ├── segment.h ├── segmentutil.hh ├── selftaint.hh ├── semaphore.h ├── setjmp.h ├── sha1.h ├── sigio.h ├── signal.h ├── sockfd.h ├── spawn.hh ├── stack.h ├── stat.h ├── stdio.h ├── string.h ├── syscall.h ├── syscall_asm.h ├── syscall_num.h ├── taint.h ├── thread.h ├── time.h ├── tun.h ├── types.h ├── uds.h ├── udsimpl.h ├── utrap.h ├── vt220iso8x16.h ├── wait.h └── wrap.hh ├── indent.opts ├── kern ├── Makefrag ├── arch │ ├── amd64 │ │ ├── Makefrag │ │ ├── acpimach.c │ │ ├── arch-x86.c │ │ ├── asm.h │ │ ├── atomic.h │ │ ├── atomic32.h │ │ ├── atomic64.h │ │ ├── boot.h │ │ ├── bootdata.c │ │ ├── init.c │ │ ├── locore.S │ │ ├── memlayout.h │ │ ├── misc.c │ │ ├── mmu-x86.h │ │ ├── mmu.h │ │ ├── mp.c │ │ ├── mp.h │ │ ├── mtrr.c │ │ ├── multiboot.S │ │ ├── multiboot.h │ │ ├── page.c │ │ ├── param.h │ │ ├── pmap-x86.c │ │ ├── pmap-x86.h │ │ ├── pmap.c │ │ ├── pmap.h │ │ ├── reboot.c │ │ ├── setjmp.h │ │ ├── trap.c │ │ ├── trap.h │ │ ├── trapcodes.h │ │ ├── tsctimer.c │ │ ├── tsctimer.h │ │ ├── types.h │ │ ├── utrap.h │ │ ├── x86-common.h │ │ └── x86.h │ ├── arm │ │ ├── Makefrag │ │ ├── asm.h │ │ ├── init.c │ │ ├── locore.S │ │ ├── memlayout.h │ │ ├── misc.c │ │ ├── mmu.h │ │ ├── n770_defconfig │ │ ├── n800_defconfig │ │ ├── page.c │ │ ├── param.h │ │ ├── pmap.c │ │ ├── pmap.h │ │ ├── setjmp.h │ │ ├── trap.c │ │ ├── trapcodes.h │ │ ├── types.h │ │ └── utrap.h │ ├── i386 │ │ ├── Makefrag │ │ ├── amd64shared.c │ │ ├── asm.h │ │ ├── atomic.h │ │ ├── atomic64.h │ │ ├── boot.h │ │ ├── bootdata.c │ │ ├── init.c │ │ ├── locore.S │ │ ├── memlayout.h │ │ ├── misc.c │ │ ├── mmu.h │ │ ├── multiboot.h │ │ ├── param.h │ │ ├── pmap.c │ │ ├── pmap.h │ │ ├── setjmp.h │ │ ├── trap.c │ │ ├── trap.h │ │ ├── trapcodes.h │ │ ├── tsctimer.h │ │ ├── types.h │ │ ├── utrap.h │ │ └── x86.h │ ├── llvm │ │ ├── Makefrag │ │ ├── Makefrag.final │ │ ├── actor.c │ │ ├── actor.h │ │ ├── asm.h │ │ ├── atomic.h │ │ ├── devstub.c │ │ ├── driver-2cmp.c │ │ ├── driver-test.c │ │ ├── ftglue.h │ │ ├── init.c │ │ ├── keep.syms │ │ ├── lnxcons.c │ │ ├── lnxdisk.c │ │ ├── lnxdisk.h │ │ ├── lnxinit.h │ │ ├── lnxopts.h │ │ ├── lnxpage.h │ │ ├── lnxthread.h │ │ ├── memlayout.h │ │ ├── misc.c │ │ ├── mmu.h │ │ ├── page.c │ │ ├── param.h │ │ ├── pmap.c │ │ ├── pmap.h │ │ ├── printf.c │ │ ├── setjmp.h │ │ ├── trap.c │ │ ├── trapcodes.h │ │ ├── types.h │ │ ├── utrap.h │ │ └── x86.h │ ├── sparc │ │ ├── Makefrag │ │ ├── asi.h │ │ ├── asm.h │ │ ├── atomic.h │ │ ├── atomic32.h │ │ ├── atomic64.h │ │ ├── bootloader.h │ │ ├── init.c │ │ ├── kernel.ld.S │ │ ├── leon.h │ │ ├── leon3.h │ │ ├── locore.S │ │ ├── longjmp.S │ │ ├── memlayout.h │ │ ├── misc.c │ │ ├── mmu.h │ │ ├── notes.txt │ │ ├── page.c │ │ ├── param.h │ │ ├── pmap.c │ │ ├── pmap.h │ │ ├── prom_config.h │ │ ├── prom_stage1.S │ │ ├── psr.h │ │ ├── reboot.c │ │ ├── setjmp.h │ │ ├── sparc-common.h │ │ ├── sparc-config.h │ │ ├── sparc.h │ │ ├── trap.c │ │ ├── trap.h │ │ ├── trapcodes.h │ │ ├── types.h │ │ └── utrap.h │ └── um │ │ ├── Makefrag │ │ ├── archdep.c │ │ ├── main.c │ │ ├── memlayout.h │ │ ├── mmu.h │ │ ├── param.h │ │ ├── pmap.h │ │ ├── setjmp.h │ │ ├── shell.c │ │ ├── trap.c │ │ ├── trapcodes.h │ │ ├── types.h │ │ ├── um.h │ │ ├── umbench.c │ │ ├── umcons.c │ │ ├── ummem.c │ │ ├── umtime.c │ │ └── utrap.h ├── btree │ ├── btree.c │ ├── btree.h │ ├── btree_debug.c │ ├── btree_debug.h │ ├── btree_delete.c │ ├── btree_impl.h │ ├── btree_insert.c │ ├── btree_manager.c │ ├── btree_manager.h │ ├── btree_node.c │ ├── btree_node.h │ ├── btree_search.c │ ├── btree_traverse.c │ ├── btree_traverse.h │ ├── btree_utils.h │ ├── cache.c │ ├── cache.h │ ├── pbtree.c │ ├── pbtree.h │ ├── pbtree_frm.c │ ├── pbtree_frm.h │ └── todo ├── dev │ ├── acpi.c │ ├── acpi.h │ ├── acpireg.h │ ├── ahci.c │ ├── ahci.h │ ├── ahcireg.h │ ├── amba.c │ ├── amba.h │ ├── ambapp.h │ ├── apbucons.c │ ├── apbucons.h │ ├── apic.c │ ├── apic.h │ ├── apicreg.h │ ├── cgacons.c │ ├── cgacons.h │ ├── dp8390reg.h │ ├── e1000.c │ ├── e1000.h │ ├── e1000reg.h │ ├── filedisk.c │ ├── filedisk.h │ ├── fxp.c │ ├── fxp.h │ ├── fxpreg.h │ ├── gptimer.c │ ├── gptimer.h │ ├── grata.c │ ├── grata.h │ ├── gratareg.h │ ├── greth.c │ ├── greth.h │ ├── grethreg.h │ ├── hpet.c │ ├── hpet.h │ ├── hpetreg.h │ ├── ide.c │ ├── ide.h │ ├── idereg.h │ ├── irqmp.c │ ├── irqmp.h │ ├── isareg.h │ ├── kbdreg.h │ ├── kclock.c │ ├── kclock.h │ ├── lptcons.c │ ├── lptcons.h │ ├── mii.h │ ├── ne2kpci.c │ ├── ne2kpci.h │ ├── nvram.h │ ├── pci.c │ ├── pci.h │ ├── pcireg.h │ ├── picirq.c │ ├── picirq.h │ ├── pnic.c │ ├── pnic.h │ ├── pnicreg.h │ ├── psmouse.c │ ├── psmouse.h │ ├── satareg.h │ ├── sercons.c │ ├── sercons.h │ ├── timerreg.h │ ├── vesa.h │ ├── vesafb.c │ └── vesafb.h └── kern │ ├── arch.h │ ├── as.c │ ├── as.h │ ├── btree.h │ ├── console.c │ ├── console.h │ ├── container.c │ ├── container.h │ ├── device.c │ ├── device.h │ ├── disk.c │ ├── disk.h │ ├── disklayout.h │ ├── dstack.c │ ├── dstack.h │ ├── embedbin.h │ ├── fb.c │ ├── fb.h │ ├── freelist.c │ ├── freelist.h │ ├── gate.c │ ├── gate.h │ ├── handle.c │ ├── handle.h │ ├── ht.h │ ├── intr.c │ ├── intr.h │ ├── kobj.c │ ├── kobj.h │ ├── kobjhdr.h │ ├── kocache.c │ ├── kocache.h │ ├── label.c │ ├── label.h │ ├── lib.h │ ├── log.c │ ├── log.h │ ├── mousedev.c │ ├── mousedev.h │ ├── netdev.c │ ├── netdev.h │ ├── pagealloc.c │ ├── pageinfo.h │ ├── pagetree.c │ ├── pagetree.h │ ├── panic.c │ ├── param.h │ ├── part.c │ ├── part.h │ ├── printf.c │ ├── prof.c │ ├── prof.h │ ├── pstate.c │ ├── pstate.h │ ├── sched.c │ ├── sched.h │ ├── segment.c │ ├── segment.h │ ├── stackwrap.c │ ├── stackwrap.h │ ├── string.c │ ├── sync.c │ ├── sync.h │ ├── syscall.c │ ├── syscall.h │ ├── thread.c │ ├── thread.h │ ├── timer.c │ ├── timer.h │ ├── uinit.c │ ├── uinit.h │ └── utrap.h ├── lib ├── Makefrag ├── alarm.c ├── amd64 │ ├── coop_syscall.S │ ├── crt1.S │ ├── crti.S │ ├── crtn.S │ ├── libgcc_export.S │ ├── libgcc_wrap.S │ ├── longjmp.S │ ├── misc.c │ ├── stack.S │ ├── strlen.S │ ├── syscall_entry.S │ └── trapstub.S ├── arc4.c ├── arm │ └── longjmp.S ├── authclnt.cc ├── backtrace.c ├── base64.c ├── bf60.c ├── bipipe.c ├── chardevs.c ├── cksum.c ├── console.c ├── container.c ├── cooperate.cc ├── cpplabel.cc ├── cppsup │ ├── Makefrag │ ├── bits │ │ ├── c++config.h │ │ ├── c++io.h │ │ ├── c++locale.h │ │ ├── functexcept.h │ │ ├── gthr.h │ │ ├── os_defines.h │ │ ├── postypes.h │ │ └── stringfwd.h │ ├── cctype │ ├── climits │ ├── clocale │ ├── cstddef │ ├── cstdio │ ├── cstdlib │ ├── cstring │ ├── ctime │ ├── cwchar │ ├── cxxabi.h │ ├── del_op.cc │ ├── del_opnt.cc │ ├── del_opv.cc │ ├── del_opvnt.cc │ ├── eh_alloc.cc │ ├── eh_aux_runtime.cc │ ├── eh_catch.cc │ ├── eh_exception.cc │ ├── eh_globals.cc │ ├── eh_personality.cc │ ├── eh_term_handler.cc │ ├── eh_terminate.cc │ ├── eh_throw.cc │ ├── eh_type.cc │ ├── eh_unex_handler.cc │ ├── exception │ ├── exception_defines.h │ ├── guard.cc │ ├── iosfwd │ ├── new │ ├── new_handler.cc │ ├── new_op.cc │ ├── new_opnt.cc │ ├── new_opv.cc │ ├── new_opvnt.cc │ ├── pure.cc │ ├── tinfo.cc │ ├── tinfo.h │ ├── tinfo2.cc │ ├── unwind-cxx.h │ ├── unwind-pe.h │ ├── vec.cc │ └── vterminate.cc ├── cstrlen.c ├── cyg_prof.c ├── debug.cc ├── debug_gatesrv.cc ├── declassify.cc ├── elf.c ├── errno.c ├── error.cc ├── exec.cc ├── exit.c ├── fb.c ├── fd.cc ├── file.c ├── file_fd.c ├── fork.cc ├── fs_dir.cc ├── fs_dir_ct.cc ├── fs_dir_dseg.cc ├── fs_file.cc ├── fs_mount.c ├── fs_taint.cc ├── gateclnt.cc ├── gatefile.cc ├── gateinvoke.cc ├── gatesrv.cc ├── getdnnm.c ├── groupclnt.cc ├── hashtable.c ├── host.c ├── i386 │ ├── coop_syscall.S │ ├── crt1.S │ ├── crti.S │ ├── crtn.S │ ├── libgcc_export.S │ ├── libgcc_wrap.S │ ├── longjmp.S │ ├── misc.c │ ├── stack.S │ ├── strlen.S │ ├── syscall_entry.S │ └── trapstub.S ├── ioctl.c ├── jcomm.cc ├── jsession.c ├── jthread.c ├── label.c ├── labelutil.cc ├── lfsdev.c ├── lfsimpl.cc ├── libmain.c ├── memcmp.c ├── memcpy.c ├── memlayout.c ├── memmove.c ├── memset.c ├── misc.c ├── mmap.c ├── mouse.c ├── multisync.cc ├── netbench.cc ├── nethelper.cc ├── panic.c ├── pipe.c ├── printf.c ├── printfmt.c ├── privstore.cc ├── proc.cc ├── prof.cc ├── profiler.c ├── pthread.c ├── ptrace.cc ├── pty.c ├── rand.c ├── rbac.cc ├── readline.c ├── resalloc.cc ├── resolv.c ├── rlim.c ├── sbrk.c ├── segment.c ├── segvhelper.cc ├── selftaint.cc ├── semaphore.c ├── sha1.c ├── shm.c ├── sigio.c ├── signal.c ├── signalgate.cc ├── sock_fd.c ├── socket.c ├── sparc │ ├── Makefrag │ ├── coop_syscall.S │ ├── crt1.S │ ├── crti.S │ ├── crtn.S │ ├── longjmp.S │ ├── mathops.S │ ├── misc.c │ ├── stack.S │ ├── strlen.S │ ├── syscall_entry.S │ ├── trapstub.S │ └── win.S ├── spawn.cc ├── stat.c ├── strtou64.c ├── syscall.c ├── sysinfo.c ├── sysstring.c ├── taint.c ├── thread.c ├── time.c ├── tun.c ├── udsdev.c ├── udsimpl.cc ├── uidgid.c ├── utrap.c ├── utrapasm.c ├── wait.c └── wrap.cc ├── lind ├── Kconfig ├── Makefile ├── Makefile-os-Linux ├── Makefile-os-jos64 ├── Makefile.rules ├── asm-lind │ ├── 8253pit.h │ ├── Kbuild │ ├── a.out.h │ ├── acpi.h │ ├── agp.h │ ├── alternative-asm.i │ ├── alternative.h │ ├── apic.h │ ├── apicdef.h │ ├── atomic.h │ ├── auxvec.h │ ├── bitops.h │ ├── boot.h │ ├── bootsetup.h │ ├── bug.h │ ├── bugs.h │ ├── byteorder.h │ ├── cache.h │ ├── cacheflush.h │ ├── calgary.h │ ├── calling.h │ ├── checksum.h │ ├── common.lds.S │ ├── compat.h │ ├── cpu.h │ ├── cpufeature.h │ ├── cputime.h │ ├── current.h │ ├── debugreg.h │ ├── delay.h │ ├── desc.h │ ├── desc_defs.h │ ├── device.h │ ├── div64.h │ ├── dma-mapping.h │ ├── dma.h │ ├── dmi.h │ ├── dwarf2.h │ ├── e820.h │ ├── edac.h │ ├── elf.h │ ├── emergency-restart.h │ ├── errno.h │ ├── fcntl.h │ ├── fixmap.h │ ├── floppy.h │ ├── fpu32.h │ ├── futex.h │ ├── genapic.h │ ├── hardirq.h │ ├── hpet.h │ ├── hw_irq.h │ ├── hypertransport.h │ ├── ia32.h │ ├── ia32_unistd.h │ ├── ide.h │ ├── idle.h │ ├── intel_arch_perfmon.h │ ├── io.h │ ├── io_apic.h │ ├── ioctl.h │ ├── ioctls.h │ ├── ipcbuf.h │ ├── ipi.h │ ├── irq.h │ ├── irq_regs.h │ ├── irqflags.h │ ├── k8.h │ ├── kdebug.h │ ├── kexec.h │ ├── kmap_types.h │ ├── kprobes.h │ ├── ldt.h │ ├── linkage.h │ ├── local.h │ ├── mach_apic.h │ ├── mc146818rtc.h │ ├── mce.h │ ├── mman.h │ ├── mmsegment.h │ ├── mmu.h │ ├── mmu_context.h │ ├── mmzone.h │ ├── module.h │ ├── mpspec.h │ ├── msgbuf.h │ ├── msidef.h │ ├── msr.h │ ├── mtrr.h │ ├── mutex.h │ ├── namei.h │ ├── nmi.h │ ├── node.h │ ├── numa.h │ ├── page.h │ ├── param.h │ ├── parport.h │ ├── pci-direct.h │ ├── pci.h │ ├── pda.h │ ├── percpu.h │ ├── pgalloc.h │ ├── pgtable.h │ ├── poll.h │ ├── posix_types.h │ ├── prctl.h │ ├── processor.h │ ├── proto.h │ ├── ptrace-abi.h │ ├── ptrace.h │ ├── resource.h │ ├── rio.h │ ├── rtc.h │ ├── rwlock.h │ ├── scatterlist.h │ ├── seccomp.h │ ├── sections.h │ ├── segment.h │ ├── semaphore.h │ ├── sembuf.h │ ├── serial.h │ ├── setup.h │ ├── shmbuf.h │ ├── shmparam.h │ ├── sigcontext.h │ ├── sigcontext32.h │ ├── siginfo.h │ ├── signal.h │ ├── smp.h │ ├── socket.h │ ├── sockios.h │ ├── sparsemem.h │ ├── spinlock.h │ ├── spinlock_types.h │ ├── stacktrace.h │ ├── stat.h │ ├── statfs.h │ ├── string.h │ ├── suspend.h │ ├── swiotlb.h │ ├── system.h │ ├── tce.h │ ├── termbits.h │ ├── termios.h │ ├── therm_throt.h │ ├── thread_info.h │ ├── timex.h │ ├── tlb.h │ ├── tlbflush.h │ ├── topology.h │ ├── types.h │ ├── uaccess.h │ ├── ucontext.h │ ├── unaligned.h │ ├── unistd.h │ ├── unwind.h │ ├── user.h │ ├── user32.h │ ├── vga.h │ ├── vsyscall.h │ ├── vsyscall32.h │ └── xor.h ├── defconfig ├── drivers │ ├── Makefile │ ├── net_if.c │ ├── stderr_console.c │ └── stdio_console.c ├── fs │ ├── Makefile │ └── binfmt_lind.c ├── include │ ├── archcall.h │ ├── archenv.h │ ├── archtype.h │ ├── kern │ │ ├── process.h │ │ ├── signal.h │ │ └── time.h │ ├── linuxsyscall.h │ ├── linuxthread.h │ ├── longjmp.h │ ├── os-Linux │ │ └── util.h │ ├── os-jos64 │ │ ├── kernelcall.h │ │ ├── lfs.h │ │ └── lutrap.h │ ├── os-lib │ │ ├── net.h │ │ ├── netd.h │ │ └── socket.h │ ├── sysdep │ │ ├── barrier.h │ │ ├── config.h │ │ ├── ptrace.h │ │ ├── setjmp.h │ │ └── string.h │ └── transport.h ├── kernel │ ├── Makefile │ ├── asm-offsets.c │ ├── init_task.c │ ├── irq.c │ ├── lind_arch.c │ ├── process.c │ ├── time.c │ ├── traps.c │ └── vmlinux.lds.S ├── lib │ ├── Makefile │ ├── bitops.c │ ├── bitstr.c │ ├── clear_page.S │ ├── copy_page.S │ ├── csum-copy.S │ ├── csum-partial.c │ ├── csum-wrappers.c │ ├── delay.c │ ├── io.c │ ├── iomap_copy.S │ ├── net.c │ ├── rwlock.S │ ├── thread.c │ ├── thunk.S │ └── wrap.c ├── mm │ ├── Makefile │ └── init.c ├── os-Linux │ ├── Makefile │ ├── drivers │ │ ├── Makefile │ │ ├── rawsock.h │ │ ├── rawsock_kern.c │ │ └── rawsock_user.c │ ├── lib.c │ ├── main.c │ ├── setjmp.S │ └── unimpl.c ├── os-jos64 │ ├── Makefile │ ├── drivers │ │ ├── Makefile │ │ ├── jif.h │ │ ├── jif_kern.c │ │ ├── jif_user.c │ │ ├── netd.h │ │ ├── netd_jos64.c │ │ ├── netd_kern.c │ │ ├── netd_slot.c │ │ ├── netd_user.c │ │ └── netduser.h │ ├── kernelcall.c │ ├── lfs.c │ ├── lib.c │ ├── main.c │ ├── setjmp.S │ └── unimpl.c └── os-lib │ ├── Makefile │ ├── bench_client.c │ ├── bench_server.c │ ├── net_bench.h │ └── socket.c ├── mergedep.pl ├── netd ├── Makefrag ├── netd_client.cc ├── netd_gatesrv.cc ├── netd_linux.cc ├── netd_lwip.c ├── netd_lwipclient.cc ├── netd_lwipevent.cc ├── netd_lwipif.c ├── netd_lwipinit.c ├── netdclnt.hh ├── netdipc.h ├── netdlinux.h ├── netdlwip.h └── netdsrv.hh ├── notes ├── apps.txt ├── bootusb.txt ├── code-split ├── cooperation.txt ├── covert-channel ├── cpu-resources.txt ├── curious-bugs.txt ├── dis ├── djos.txt ├── finding-bugs ├── flume.txt ├── ft-bug-fixes ├── gate-notes ├── histar-demo.txt ├── httpd-bench.txt ├── hw-virt ├── i386-port-notes ├── ide-notes ├── jos32-qs.txt ├── libgcc-shared ├── loc-count-exclude ├── mac-on-dac.txt ├── native-build.txt ├── object-naming.txt ├── preauthorizations ├── research-qs.txt ├── resource-allocation.txt ├── signal-handling.txt ├── sparc-flat.txt ├── sshd-rsa-auth.txt ├── syscall-sysret ├── tags.txt ├── tcb-size.txt ├── user-level-drivers.txt ├── using-gdb.txt ├── vm-threads └── why-db.txt ├── patches ├── branch-debug.patch ├── copy-from-user.patch ├── device-kobject.patch ├── e1000-phy.patch ├── locale.patch └── sparc-mflat.patch ├── pkg ├── Makefrag ├── cat │ ├── Makefile │ ├── Makefrag │ ├── cat.1 │ └── cat.c ├── echo │ ├── Makefile │ ├── Makefrag │ ├── echo.1 │ └── echo.c ├── ftpd │ ├── Makefrag │ ├── extern.h │ ├── ftpcmd.y │ ├── ftpd.c │ ├── pathnames.h │ ├── popen.c │ ├── vis.c │ └── vis.h ├── gdb-gl │ ├── README │ ├── jos64-nat.c │ ├── jos64.mh │ ├── jos64.mt │ └── nm-jos64.h ├── httpd │ ├── Makefrag │ ├── inc │ │ ├── argv.h │ │ ├── module.hh │ │ ├── openssl.h │ │ ├── ssl_fd.h │ │ ├── ssldclnt.hh │ │ ├── ssleproc.h │ │ └── sslproxy.hh │ ├── lib │ │ ├── Makefrag │ │ ├── a2pdf.cc │ │ ├── argv.c │ │ ├── cat.cc │ │ ├── openssl.c │ │ ├── perl.cc │ │ ├── ssl_eproc.cc │ │ ├── ssl_fd.c │ │ ├── ssl_proxy.cc │ │ └── ssld_client.cc │ ├── script │ │ ├── fetch.pl │ │ ├── printenv.pl │ │ ├── ps2pdf.sh │ │ └── zhelper.sh │ └── user │ │ ├── Makefrag │ │ ├── bootstrapc.cc │ │ ├── bootstrapd.cc │ │ ├── djwebappd.cc │ │ ├── eprocd-launch.cc │ │ ├── httpd.cc │ │ ├── httpd2.cc │ │ ├── httpd_a2pdf.cc │ │ ├── httpd_mom.cc │ │ ├── httpd_worker.cc │ │ ├── inetd.cc │ │ ├── ssl_bench.cc │ │ ├── ssl_eprocd.cc │ │ └── ssld.cc ├── ksh │ ├── BUG-REPORTS │ ├── CONTRIBUTORS │ ├── ChangeLog │ ├── ChangeLog.0 │ ├── IAFA-PACKAGE │ ├── INSTALL │ ├── LEGAL │ ├── Makefile │ ├── Makefrag │ ├── NEWS │ ├── NOTES │ ├── PROJECTS │ ├── README │ ├── alloc.c │ ├── c_ksh.c │ ├── c_sh.c │ ├── c_test.c │ ├── c_test.h │ ├── c_ulimit.c │ ├── config.h │ ├── edit.c │ ├── edit.h │ ├── emacs-gen.sh │ ├── emacs.c │ ├── emacs.out │ ├── eval.c │ ├── exec.c │ ├── expand.h │ ├── expr.c │ ├── history.c │ ├── io.c │ ├── jobs.c │ ├── ksh.1 │ ├── ksh_limval.h │ ├── lex.c │ ├── lex.h │ ├── mail.c │ ├── main.c │ ├── misc.c │ ├── path.c │ ├── proto.h │ ├── sh.1 │ ├── sh.h │ ├── shf.c │ ├── shf.h │ ├── syn.c │ ├── table.c │ ├── table.h │ ├── trap.c │ ├── tree.c │ ├── tree.h │ ├── tty.c │ ├── tty.h │ ├── var.c │ ├── version.c │ └── vi.c ├── links │ ├── AUTHORS │ ├── BUGS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile │ ├── Makefrag │ ├── NEWS │ ├── README │ ├── SITES │ ├── TODO │ ├── Unicode │ │ ├── 7bit.cp │ │ ├── 7bitrepl.lnx │ │ ├── 8859_1.cp │ │ ├── 8859_13.cp │ │ ├── 8859_15.cp │ │ ├── 8859_16.cp │ │ ├── 8859_2.cp │ │ ├── 8859_4.cp │ │ ├── 8859_5.cp │ │ ├── 8859_7.cp │ │ ├── 8859_9.cp │ │ ├── cp1125.cp │ │ ├── cp1250.cp │ │ ├── cp1251.cp │ │ ├── cp1257.cp │ │ ├── cp437.cp │ │ ├── cp737.cp │ │ ├── cp850.cp │ │ ├── cp852.cp │ │ ├── cp866.cp │ │ ├── entities.lnx │ │ ├── gen │ │ ├── gen-7b │ │ ├── gen-cp │ │ ├── gen-ent │ │ ├── index.txt │ │ ├── kamen.cp │ │ ├── koi8_r.cp │ │ ├── koi8_u.cp │ │ ├── mac_lat2.cp │ │ ├── macroman.cp │ │ ├── tcvn5712.cp │ │ ├── tr7bit.awk │ │ ├── utf_8.cp │ │ └── viscii.cp │ ├── af_unix.c │ ├── bfu.c │ ├── bookmarks.c │ ├── cache.c │ ├── charsets.c │ ├── codepage.h │ ├── codepage.inc │ ├── config.h │ ├── connect.c │ ├── cookies.c │ ├── default.c │ ├── dns.c │ ├── entity.inc │ ├── error.c │ ├── file.c │ ├── finger.c │ ├── ftp.c │ ├── html.c │ ├── html_r.c │ ├── html_tbl.c │ ├── http.c │ ├── https.c │ ├── intl │ │ ├── belarusian.lng │ │ ├── brazilian_portuguese.lng │ │ ├── bulgarian.lng │ │ ├── catalan.lng │ │ ├── croatian.lng │ │ ├── czech.lng │ │ ├── danish.lng │ │ ├── dutch.lng │ │ ├── english.lng │ │ ├── estonian.lng │ │ ├── finnish.lng │ │ ├── french.lng │ │ ├── galician.lng │ │ ├── gen-intl │ │ ├── german.lng │ │ ├── greek.lng │ │ ├── hungarian.lng │ │ ├── icelandic.lng │ │ ├── index.txt │ │ ├── indonesian.lng │ │ ├── intl.txt │ │ ├── italian.lng │ │ ├── lithuanian.lng │ │ ├── norwegian.lng │ │ ├── polish.lng │ │ ├── portuguese.lng │ │ ├── romanian.lng │ │ ├── russian.lng │ │ ├── serbian.lng │ │ ├── slovak.lng │ │ ├── spanish.lng │ │ ├── swedish.lng │ │ ├── synclang │ │ ├── synclang.awk │ │ ├── turkish.lng │ │ ├── ukrainian.lng │ │ └── upper_sorbian.lng │ ├── kbd.c │ ├── kbdbind.c │ ├── language.c │ ├── language.h │ ├── language.inc │ ├── links.h │ ├── mailto.c │ ├── main.c │ ├── menu.c │ ├── os_dep.c │ ├── os_dep.h │ ├── os_depx.h │ ├── sched.c │ ├── select.c │ ├── session.c │ ├── setup.h │ ├── smb.c │ ├── terminal.c │ ├── types.c │ ├── uni_7b.inc │ ├── url.c │ └── view.c ├── lwip │ ├── FILES │ ├── Makefrag │ ├── api │ │ ├── api_lib.c │ │ ├── api_msg.c │ │ ├── err.c │ │ ├── sockets.c │ │ └── tcpip.c │ ├── core │ │ ├── dhcp.c │ │ ├── inet.c │ │ ├── inet6.c │ │ ├── ipv4 │ │ │ ├── icmp.c │ │ │ ├── ip.c │ │ │ ├── ip_addr.c │ │ │ └── ip_frag.c │ │ ├── ipv6 │ │ │ ├── README │ │ │ ├── icmp6.c │ │ │ ├── ip6.c │ │ │ └── ip6_addr.c │ │ ├── mem.c │ │ ├── memp.c │ │ ├── netif.c │ │ ├── pbuf.c │ │ ├── raw.c │ │ ├── stats.c │ │ ├── sys.c │ │ ├── tcp.c │ │ ├── tcp_in.c │ │ ├── tcp_out.c │ │ └── udp.c │ ├── ext │ │ └── api │ │ │ ├── ext.h │ │ │ └── socketdef.h │ ├── include │ │ ├── ipv4 │ │ │ └── lwip │ │ │ │ ├── icmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip_addr.h │ │ │ │ └── ip_frag.h │ │ ├── ipv6 │ │ │ └── lwip │ │ │ │ ├── icmp.h │ │ │ │ ├── inet.h │ │ │ │ ├── ip.h │ │ │ │ └── ip_addr.h │ │ ├── lwip │ │ │ ├── api.h │ │ │ ├── api_msg.h │ │ │ ├── arch.h │ │ │ ├── debug.h │ │ │ ├── def.h │ │ │ ├── dhcp.h │ │ │ ├── err.h │ │ │ ├── mem.h │ │ │ ├── memp.h │ │ │ ├── netif.h │ │ │ ├── opt.h │ │ │ ├── pbuf.h │ │ │ ├── raw.h │ │ │ ├── sio.h │ │ │ ├── snmp.h │ │ │ ├── sockets.h │ │ │ ├── stats.h │ │ │ ├── sys.h │ │ │ ├── tcp.h │ │ │ ├── tcpip.h │ │ │ └── udp.h │ │ └── netif │ │ │ ├── etharp.h │ │ │ ├── loopif.h │ │ │ └── slipif.h │ ├── jos64 │ │ ├── api │ │ │ └── event.c │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── perf.h │ │ │ ├── sys_arch.c │ │ │ └── sys_arch.h │ │ ├── jif │ │ │ ├── jif.c │ │ │ ├── jif.h │ │ │ ├── tun.c │ │ │ └── tun.h │ │ └── lwipopts.h │ ├── lnx64 │ │ ├── Makefrag │ │ ├── api │ │ │ └── event.c │ │ ├── arch │ │ │ ├── cc.h │ │ │ ├── perf.h │ │ │ ├── sys_arch.c │ │ │ └── sys_arch.h │ │ ├── lif │ │ │ ├── fd.c │ │ │ ├── fd.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ ├── rawsock.c │ │ │ ├── rawsock.h │ │ │ └── socket.h │ │ └── lwipopts.h │ └── netif │ │ ├── FILES │ │ ├── etharp.c │ │ ├── ethernetif.c │ │ ├── loopif.c │ │ ├── ppp │ │ ├── auth.c │ │ ├── auth.h │ │ ├── chap.c │ │ ├── chap.h │ │ ├── chpms.c │ │ ├── chpms.h │ │ ├── fsm.c │ │ ├── fsm.h │ │ ├── ipcp.c │ │ ├── ipcp.h │ │ ├── lcp.c │ │ ├── lcp.h │ │ ├── magic.c │ │ ├── magic.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── pap.c │ │ ├── pap.h │ │ ├── ppp.c │ │ ├── ppp.h │ │ ├── pppdebug.h │ │ ├── randm.c │ │ ├── randm.h │ │ ├── vj.c │ │ ├── vj.h │ │ └── vjbsdhdr.h │ │ └── slipif.c ├── primes │ ├── Makefile │ ├── Makefrag │ ├── pattern.c │ ├── pr_tbl.c │ ├── primes.c │ └── primes.h ├── python-histar │ ├── _histarmodule.cc │ └── histar.py ├── ssl-eproc │ └── e_proc.c ├── uclibc++ │ ├── .config │ ├── .config.cmd │ ├── .config.old │ ├── BugFinders │ ├── ChangeLog │ ├── DOCUMENTATION │ ├── INSTALL │ ├── Makefile │ ├── Makefrag │ ├── README │ ├── Rules.mak │ ├── TODO │ ├── extra │ │ ├── Configs │ │ │ ├── Config.default │ │ │ ├── Config.in │ │ │ └── Config.in.arch │ │ ├── Makefile │ │ ├── config │ │ │ ├── Kconfig-language.txt │ │ │ ├── Makefile │ │ │ ├── checklist.c │ │ │ ├── colors.h │ │ │ ├── conf.c │ │ │ ├── confdata.c │ │ │ ├── dialog.h │ │ │ ├── expr.c │ │ │ ├── expr.h │ │ │ ├── inputbox.c │ │ │ ├── lex.zconf.c_shipped │ │ │ ├── lkc.h │ │ │ ├── lkc_proto.h │ │ │ ├── mconf.c │ │ │ ├── menu.c │ │ │ ├── menubox.c │ │ │ ├── msgbox.c │ │ │ ├── symbol.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ ├── yesno.c │ │ │ ├── zconf.l │ │ │ ├── zconf.tab.c_shipped │ │ │ ├── zconf.tab.h_shipped │ │ │ └── zconf.y │ │ ├── libstrip │ │ │ └── libstrip │ │ └── locale │ │ │ ├── LOCALES │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── charmaps │ │ │ ├── ARMSCII-8.pairs │ │ │ ├── ASCII.pairs │ │ │ ├── CP1251.pairs │ │ │ ├── CP1255.pairs │ │ │ ├── GEORGIAN-PS.pairs │ │ │ ├── ISO-8859-1.pairs │ │ │ ├── ISO-8859-10.pairs │ │ │ ├── ISO-8859-13.pairs │ │ │ ├── ISO-8859-14.pairs │ │ │ ├── ISO-8859-15.pairs │ │ │ ├── ISO-8859-16.pairs │ │ │ ├── ISO-8859-2.pairs │ │ │ ├── ISO-8859-3.pairs │ │ │ ├── ISO-8859-4.pairs │ │ │ ├── ISO-8859-5.pairs │ │ │ ├── ISO-8859-6.pairs │ │ │ ├── ISO-8859-7.pairs │ │ │ ├── ISO-8859-8.pairs │ │ │ ├── ISO-8859-9.pairs │ │ │ ├── KOI8-R.pairs │ │ │ ├── KOI8-T.pairs │ │ │ ├── KOI8-U.pairs │ │ │ └── TIS-620.pairs │ │ │ ├── collation │ │ │ ├── af_ZA │ │ │ ├── am_ET │ │ │ ├── ar_AE │ │ │ ├── ar_BH │ │ │ ├── ar_DZ │ │ │ ├── ar_EG │ │ │ ├── ar_IN │ │ │ ├── ar_IQ │ │ │ ├── ar_JO │ │ │ ├── ar_KW │ │ │ ├── ar_LB │ │ │ ├── ar_LY │ │ │ ├── ar_MA │ │ │ ├── ar_OM │ │ │ ├── ar_QA │ │ │ ├── ar_SA │ │ │ ├── ar_SD │ │ │ ├── ar_SY │ │ │ ├── ar_TN │ │ │ ├── ar_YE │ │ │ ├── az_AZ │ │ │ ├── be_BY │ │ │ ├── bg_BG │ │ │ ├── bn_BD │ │ │ ├── bn_IN │ │ │ ├── br_FR │ │ │ ├── bs_BA │ │ │ ├── comm │ │ │ ├── cy_GB │ │ │ ├── de_AT │ │ │ ├── de_BE │ │ │ ├── de_CH │ │ │ ├── de_DE │ │ │ ├── de_LU │ │ │ ├── el_GR │ │ │ ├── en_AU │ │ │ ├── en_BW │ │ │ ├── en_CA │ │ │ ├── en_DK │ │ │ ├── en_GB │ │ │ ├── en_HK │ │ │ ├── en_IE │ │ │ ├── en_IN │ │ │ ├── en_NZ │ │ │ ├── en_PH │ │ │ ├── en_SG │ │ │ ├── en_US │ │ │ ├── en_ZA │ │ │ ├── en_ZW │ │ │ ├── eo_EO │ │ │ ├── eu_ES │ │ │ ├── fa_IR │ │ │ ├── fo_FO │ │ │ ├── fr_BE │ │ │ ├── fr_CA │ │ │ ├── fr_CH │ │ │ ├── fr_FR │ │ │ ├── fr_LU │ │ │ ├── ga_IE │ │ │ ├── gd_GB │ │ │ ├── gl_ES │ │ │ ├── gv_GB │ │ │ ├── he_IL │ │ │ ├── hi_IN │ │ │ ├── hu_HU │ │ │ ├── hy_AM │ │ │ ├── id_ID │ │ │ ├── iso14651_t1 │ │ │ ├── it_CH │ │ │ ├── it_IT │ │ │ ├── iw_IL │ │ │ ├── ka_GE │ │ │ ├── kl_GL │ │ │ ├── kw_GB │ │ │ ├── mi_NZ │ │ │ ├── mk_MK │ │ │ ├── mr_IN │ │ │ ├── ms_MY │ │ │ ├── mt_MT │ │ │ ├── nl_BE │ │ │ ├── nl_NL │ │ │ ├── nn_NO │ │ │ ├── oc_FR │ │ │ ├── pt_BR │ │ │ ├── pt_PT │ │ │ ├── ro_RO │ │ │ ├── ru_RU │ │ │ ├── ru_UA │ │ │ ├── se_NO │ │ │ ├── sk_SK │ │ │ ├── sq_AL │ │ │ ├── sr_YU │ │ │ ├── sv_FI │ │ │ ├── sv_SE │ │ │ ├── ta_IN │ │ │ ├── te_IN │ │ │ ├── tg_TJ │ │ │ ├── th_TH │ │ │ ├── ti_ER │ │ │ ├── ti_ET │ │ │ ├── tl_PH │ │ │ ├── tt_RU │ │ │ ├── uk_UA │ │ │ ├── ur_PK │ │ │ ├── uz_UZ │ │ │ ├── vi_VN │ │ │ ├── wa_BE │ │ │ └── yi_US │ │ │ ├── gen_collate.c │ │ │ ├── gen_ldc.c │ │ │ ├── gen_locale.c │ │ │ ├── gen_mmap.c │ │ │ ├── gen_wc8bit.c │ │ │ ├── gen_wctype.c │ │ │ ├── lmmtolso.c │ │ │ ├── locale_mmap.h │ │ │ └── tst_nl_langinfo.c │ ├── include │ │ ├── Makefile │ │ ├── algorithm │ │ ├── basic_definitions │ │ ├── bitset │ │ ├── cassert │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfloat │ │ ├── char_traits │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── complex │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdarg │ │ ├── cstddef │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctime │ │ ├── cwchar │ │ ├── cwctype │ │ ├── deque │ │ ├── exception │ │ ├── fstream │ │ ├── func_exception │ │ ├── functional │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── istream │ │ ├── istream_helpers │ │ ├── iterator │ │ ├── iterator_base │ │ ├── limits │ │ ├── list │ │ ├── locale │ │ ├── map │ │ ├── memory │ │ ├── new │ │ ├── numeric │ │ ├── ostream │ │ ├── ostream_helpers │ │ ├── queue │ │ ├── set │ │ ├── sstream │ │ ├── stack │ │ ├── stdexcept │ │ ├── streambuf │ │ ├── string │ │ ├── string_iostream │ │ ├── support │ │ ├── system_configuration.h │ │ ├── type_traits │ │ ├── typeinfo │ │ ├── unwind-cxx.h │ │ ├── utility │ │ ├── valarray │ │ └── vector │ ├── scripts │ │ ├── find_libgcc_eh.sh │ │ └── find_libsupc.sh │ ├── src │ │ ├── Makefile │ │ ├── Makefrag │ │ ├── abi │ │ │ ├── abi.cpp │ │ │ ├── libgcc_eh │ │ │ │ └── Makefile │ │ │ └── libsupc │ │ │ │ └── Makefile │ │ ├── algorithm.cpp │ │ ├── bitset.cpp │ │ ├── char_traits.cpp │ │ ├── complex.cpp │ │ ├── del_op.cpp │ │ ├── del_opnt.cpp │ │ ├── del_opv.cpp │ │ ├── del_opvnt.cpp │ │ ├── deque.cpp │ │ ├── eh_alloc.cpp │ │ ├── eh_globals.cpp │ │ ├── exception.cpp │ │ ├── fstream.cpp │ │ ├── func_exception.cpp │ │ ├── iomanip.cpp │ │ ├── ios.cpp │ │ ├── iostream.cpp │ │ ├── istream.cpp │ │ ├── iterator.cpp │ │ ├── limits.cpp │ │ ├── list.cpp │ │ ├── locale.cpp │ │ ├── map.cpp │ │ ├── new_handler.cpp │ │ ├── new_op.cpp │ │ ├── new_opnt.cpp │ │ ├── new_opv.cpp │ │ ├── new_opvnt.cpp │ │ ├── numeric.cpp │ │ ├── ostream.cpp │ │ ├── queue.cpp │ │ ├── set.cpp │ │ ├── sstream.cpp │ │ ├── stack.cpp │ │ ├── stdexcept.cpp │ │ ├── streambuf.cpp │ │ ├── string.cpp │ │ ├── support.cpp │ │ ├── typeinfo.cpp │ │ ├── utility.cpp │ │ ├── valarray.cpp │ │ └── vector.cpp │ └── tests │ │ ├── Makefile │ │ ├── algotest.cpp │ │ ├── bitsettest.cpp │ │ ├── chartraitstest.cpp │ │ ├── dequetest.cpp │ │ ├── excepttest.cpp │ │ ├── fstreamtest.cpp │ │ ├── functionaltest.cpp │ │ ├── iotest.cpp │ │ ├── listtest.cpp │ │ ├── maptest.cpp │ │ ├── memorytest.cpp │ │ ├── mmaptest.cpp │ │ ├── newdeltest.cpp │ │ ├── numerictest.cpp │ │ ├── settest.cpp │ │ ├── sstreamtest.cpp │ │ ├── stacktest.cpp │ │ ├── streambuftest.cpp │ │ ├── streamitertest.cpp │ │ ├── stringtest.cpp │ │ ├── testframework.cpp │ │ ├── testframework.h │ │ ├── testoutput │ │ ├── Makefile │ │ ├── algotest.good │ │ ├── bitsettest.good │ │ ├── chartraitstest.good │ │ ├── dequetest.good │ │ ├── excepttest.good │ │ ├── fstreamtest.good │ │ ├── fstreamtest.input │ │ ├── functionaltest.good │ │ ├── iotest.good │ │ ├── iotest.input │ │ ├── listtest.good │ │ ├── maptest.good │ │ ├── memorytest.good │ │ ├── mmaptest.good │ │ ├── newdeltest.good │ │ ├── runtests.sh │ │ ├── settest.good │ │ ├── sstreamtest.good │ │ ├── stacktest.good │ │ ├── streambuftest.good │ │ ├── streambuftest.input │ │ ├── stringtest.good │ │ ├── stringtest.input │ │ ├── utilitytest.good │ │ ├── valarraytest.good │ │ ├── vectortest.good │ │ ├── wchartest.good │ │ └── wchartest.input │ │ ├── utilitytest.cpp │ │ ├── valarraytest.cpp │ │ ├── vectortest.cpp │ │ └── wchartest.cpp └── uclibc │ ├── COPYING.LIB │ ├── COPYING.LIB.boilerplate │ ├── Changelog │ ├── DEDICATION.mjn3 │ ├── INSTALL │ ├── MAINTAINERS │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ ├── Makerules │ ├── README │ ├── Rules.mak │ ├── TODO │ ├── docs │ ├── Glibc_vs_uClibc_Differences.txt │ ├── PORTING │ ├── man │ │ ├── ldconfig.8 │ │ └── ldd.1 │ ├── threads.txt │ ├── uClibc_vs_SuSv3.txt │ └── uclibc.org │ │ ├── FAQ.html │ │ ├── about.html │ │ ├── copyright.txt │ │ ├── developer.html │ │ ├── download.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── images │ │ ├── back.png │ │ ├── dir.png │ │ ├── donate.png │ │ ├── fm.mini.png │ │ ├── gfx_by_gimp.png │ │ ├── ltbutton2.png │ │ ├── osuosl.png │ │ ├── sdsmall.png │ │ ├── text.png │ │ ├── vh40.gif │ │ └── written.in.vi.png │ │ ├── index.html │ │ ├── lists.html │ │ ├── news.html │ │ ├── oldnews.html │ │ ├── other_libs.html │ │ ├── products.html │ │ ├── subversion.html │ │ ├── toolchains.html │ │ └── uClibc-apps.html │ ├── extra │ ├── Configs │ │ ├── Config.alpha │ │ ├── Config.arm │ │ ├── Config.bfin │ │ ├── Config.cris │ │ ├── Config.default │ │ ├── Config.e1 │ │ ├── Config.frv │ │ ├── Config.h8300 │ │ ├── Config.hppa │ │ ├── Config.i386 │ │ ├── Config.i960 │ │ ├── Config.ia64 │ │ ├── Config.in │ │ ├── Config.in.arch │ │ ├── Config.m68k │ │ ├── Config.microblaze │ │ ├── Config.mips │ │ ├── Config.nios │ │ ├── Config.nios2 │ │ ├── Config.powerpc │ │ ├── Config.sh │ │ ├── Config.sh64 │ │ ├── Config.sparc │ │ ├── Config.v850 │ │ ├── Config.vax │ │ ├── Config.x86_64 │ │ └── defconfigs │ │ │ ├── alpha │ │ │ ├── arm │ │ │ ├── bfin │ │ │ ├── cris │ │ │ ├── e1 │ │ │ ├── frv │ │ │ ├── h8300 │ │ │ ├── hppa │ │ │ ├── i386 │ │ │ ├── i960 │ │ │ ├── ia64 │ │ │ ├── m68k │ │ │ ├── microblaze │ │ │ ├── mips │ │ │ ├── nios │ │ │ ├── nios2 │ │ │ ├── powerpc │ │ │ ├── sh │ │ │ ├── sh64 │ │ │ ├── sparc │ │ │ ├── v850 │ │ │ ├── vax │ │ │ └── x86_64 │ ├── Makefile │ ├── Makefile.in │ ├── config │ │ ├── Makefile │ │ ├── Makefile.kconfig │ │ ├── POTFILES.in │ │ ├── README.uClibc │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kconfig-language.txt │ │ ├── kconfig-to-uclibc.patch │ │ ├── kconfig_load.c │ │ ├── kxgettext.c │ │ ├── lex.zconf.c_shipped │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── BIG.FAT.WARNING │ │ │ ├── check-lxdialog.sh │ │ │ ├── checklist.c │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── menubox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── symbol.c │ │ ├── util.c │ │ ├── zconf.gperf │ │ ├── zconf.hash.c_shipped │ │ ├── zconf.l │ │ ├── zconf.tab.c_shipped │ │ └── zconf.y │ ├── libstrip │ │ └── libstrip │ ├── locale │ │ ├── LOCALES │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── charmaps │ │ │ ├── ARMSCII-8.pairs │ │ │ ├── ASCII.pairs │ │ │ ├── CP1251.pairs │ │ │ ├── CP1255.pairs │ │ │ ├── GEORGIAN-PS.pairs │ │ │ ├── ISO-8859-1.pairs │ │ │ ├── ISO-8859-10.pairs │ │ │ ├── ISO-8859-13.pairs │ │ │ ├── ISO-8859-14.pairs │ │ │ ├── ISO-8859-15.pairs │ │ │ ├── ISO-8859-16.pairs │ │ │ ├── ISO-8859-2.pairs │ │ │ ├── ISO-8859-3.pairs │ │ │ ├── ISO-8859-4.pairs │ │ │ ├── ISO-8859-5.pairs │ │ │ ├── ISO-8859-6.pairs │ │ │ ├── ISO-8859-7.pairs │ │ │ ├── ISO-8859-8.pairs │ │ │ ├── ISO-8859-9.pairs │ │ │ ├── KOI8-R.pairs │ │ │ ├── KOI8-T.pairs │ │ │ ├── KOI8-U.pairs │ │ │ └── TIS-620.pairs │ │ ├── collation │ │ │ ├── af_ZA │ │ │ ├── am_ET │ │ │ ├── ar_AE │ │ │ ├── ar_BH │ │ │ ├── ar_DZ │ │ │ ├── ar_EG │ │ │ ├── ar_IN │ │ │ ├── ar_IQ │ │ │ ├── ar_JO │ │ │ ├── ar_KW │ │ │ ├── ar_LB │ │ │ ├── ar_LY │ │ │ ├── ar_MA │ │ │ ├── ar_OM │ │ │ ├── ar_QA │ │ │ ├── ar_SA │ │ │ ├── ar_SD │ │ │ ├── ar_SY │ │ │ ├── ar_TN │ │ │ ├── ar_YE │ │ │ ├── az_AZ │ │ │ ├── be_BY │ │ │ ├── bg_BG │ │ │ ├── bn_BD │ │ │ ├── bn_IN │ │ │ ├── br_FR │ │ │ ├── bs_BA │ │ │ ├── ca_ES │ │ │ ├── comm │ │ │ ├── cs_CZ │ │ │ ├── cy_GB │ │ │ ├── da_DK │ │ │ ├── de_AT │ │ │ ├── de_BE │ │ │ ├── de_CH │ │ │ ├── de_DE │ │ │ ├── de_LU │ │ │ ├── el_GR │ │ │ ├── en_AU │ │ │ ├── en_BW │ │ │ ├── en_CA │ │ │ ├── en_DK │ │ │ ├── en_GB │ │ │ ├── en_HK │ │ │ ├── en_IE │ │ │ ├── en_IN │ │ │ ├── en_NZ │ │ │ ├── en_PH │ │ │ ├── en_SG │ │ │ ├── en_US │ │ │ ├── en_ZA │ │ │ ├── en_ZW │ │ │ ├── eo_EO │ │ │ ├── es_AR │ │ │ ├── es_BO │ │ │ ├── es_CL │ │ │ ├── es_CO │ │ │ ├── es_CR │ │ │ ├── es_DO │ │ │ ├── es_EC │ │ │ ├── es_ES │ │ │ ├── es_GT │ │ │ ├── es_HN │ │ │ ├── es_MX │ │ │ ├── es_NI │ │ │ ├── es_PA │ │ │ ├── es_PE │ │ │ ├── es_PR │ │ │ ├── es_PY │ │ │ ├── es_SV │ │ │ ├── es_US │ │ │ ├── es_UY │ │ │ ├── es_VE │ │ │ ├── et_EE │ │ │ ├── eu_ES │ │ │ ├── fa_IR │ │ │ ├── fi_FI │ │ │ ├── fo_FO │ │ │ ├── fr_BE │ │ │ ├── fr_CA │ │ │ ├── fr_CH │ │ │ ├── fr_FR │ │ │ ├── fr_LU │ │ │ ├── ga_IE │ │ │ ├── gd_GB │ │ │ ├── gl_ES │ │ │ ├── gv_GB │ │ │ ├── he_IL │ │ │ ├── hi_IN │ │ │ ├── hr_HR │ │ │ ├── hu_HU │ │ │ ├── hy_AM │ │ │ ├── id_ID │ │ │ ├── is_IS │ │ │ ├── iso14651_t1 │ │ │ ├── it_CH │ │ │ ├── it_IT │ │ │ ├── iw_IL │ │ │ ├── ja_JP │ │ │ ├── ka_GE │ │ │ ├── kl_GL │ │ │ ├── ko_KR │ │ │ ├── kw_GB │ │ │ ├── lt_LT │ │ │ ├── lv_LV │ │ │ ├── mi_NZ │ │ │ ├── mk_MK │ │ │ ├── mr_IN │ │ │ ├── ms_MY │ │ │ ├── mt_MT │ │ │ ├── nl_BE │ │ │ ├── nl_NL │ │ │ ├── nn_NO │ │ │ ├── no_NO │ │ │ ├── oc_FR │ │ │ ├── pl_PL │ │ │ ├── pt_BR │ │ │ ├── pt_PT │ │ │ ├── ro_RO │ │ │ ├── ru_RU │ │ │ ├── ru_UA │ │ │ ├── se_NO │ │ │ ├── sk_SK │ │ │ ├── sl_SI │ │ │ ├── sq_AL │ │ │ ├── sr_YU │ │ │ ├── sv_FI │ │ │ ├── sv_SE │ │ │ ├── ta_IN │ │ │ ├── te_IN │ │ │ ├── tg_TJ │ │ │ ├── th_TH │ │ │ ├── ti_ER │ │ │ ├── ti_ET │ │ │ ├── tl_PH │ │ │ ├── tr_TR │ │ │ ├── tt_RU │ │ │ ├── uk_UA │ │ │ ├── ur_PK │ │ │ ├── uz_UZ │ │ │ ├── vi_VN │ │ │ ├── wa_BE │ │ │ ├── yi_US │ │ │ ├── zh_CN │ │ │ ├── zh_HK │ │ │ ├── zh_SG │ │ │ └── zh_TW │ │ ├── gen_collate.c │ │ ├── gen_ldc.c │ │ ├── gen_locale.c │ │ ├── gen_mmap.c │ │ ├── gen_wc8bit.c │ │ ├── gen_wctype.c │ │ ├── lmmtolso.c │ │ ├── locale_mmap.h │ │ └── tst_nl_langinfo.c │ └── scripts │ │ ├── Makefile.arch.lvl3 │ │ ├── Makefile.arch.lvl4 │ │ ├── Makefile.libs.lvl0 │ │ ├── Makefile.libs.lvl1 │ │ ├── Makefile.libs.lvl2 │ │ ├── Makefile.objs.lvl2 │ │ ├── Makefile.objs.lvl3 │ │ ├── Makefile.objs.lvl4 │ │ ├── Makefile.utils.lvl1 │ │ ├── conf-header.sh │ │ ├── create_makefiles.sh │ │ ├── defs.awk │ │ ├── format.lds │ │ ├── gen_bits_syscall_h.sh │ │ ├── getent │ │ ├── relative_path.sh │ │ └── relinfo.pl │ ├── include │ ├── _lfs_64.h │ ├── a.out.h │ ├── alloca.h │ ├── ar.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── assert.h │ ├── atomic.h │ ├── byteswap.h │ ├── complex.h │ ├── cpio.h │ ├── crypt.h │ ├── ctype.h │ ├── dirent.h │ ├── dlfcn.h │ ├── elf.h │ ├── endian.h │ ├── err.h │ ├── errno.h │ ├── error.h │ ├── fcntl.h │ ├── features.h │ ├── fnmatch.h │ ├── ftw.h │ ├── getopt.h │ ├── glob.h │ ├── gnu-versions.h │ ├── grp.h │ ├── iconv.h │ ├── ieee754.h │ ├── inttypes.h │ ├── langinfo.h │ ├── lastlog.h │ ├── libc-internal.h │ ├── libc-symbols.h │ ├── libgen.h │ ├── libintl.h │ ├── limits.h │ ├── link.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── mntent.h │ ├── mqueue.h │ ├── net │ │ ├── ethernet.h │ │ ├── if.h │ │ ├── if_arp.h │ │ ├── if_packet.h │ │ ├── if_ppp.h │ │ ├── if_shaper.h │ │ ├── if_slip.h │ │ ├── ppp-comp.h │ │ ├── ppp_defs.h │ │ └── route.h │ ├── netax25 │ │ └── ax25.h │ ├── netdb.h │ ├── neteconet │ │ └── ec.h │ ├── netinet │ │ ├── ether.h │ │ ├── icmp6.h │ │ ├── if_ether.h │ │ ├── if_fddi.h │ │ ├── if_tr.h │ │ ├── igmp.h │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ ├── ip6.h │ │ ├── ip_fw.h │ │ ├── ip_icmp.h │ │ ├── ip_tcp.h │ │ ├── ip_udp.h │ │ ├── protocols.h │ │ ├── tcp.h │ │ └── udp.h │ ├── netipx │ │ └── ipx.h │ ├── netpacket │ │ └── packet.h │ ├── nl_types.h │ ├── obstack.h │ ├── paths.h │ ├── poll.h │ ├── printf.h │ ├── protocols │ │ ├── routed.h │ │ ├── rwhod.h │ │ ├── talkd.h │ │ └── timed.h │ ├── pty.h │ ├── pwd.h │ ├── regex.h │ ├── regexp.h │ ├── resolv.h │ ├── rpc │ │ ├── auth.h │ │ ├── auth_des.h │ │ ├── auth_unix.h │ │ ├── clnt.h │ │ ├── des_crypt.h │ │ ├── key_prot.h │ │ ├── netdb.h │ │ ├── pmap_clnt.h │ │ ├── pmap_prot.h │ │ ├── pmap_rmt.h │ │ ├── rpc.h │ │ ├── rpc_des.h │ │ ├── rpc_msg.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── types.h │ │ └── xdr.h │ ├── sched.h │ ├── scsi │ │ ├── scsi.h │ │ ├── scsi_ioctl.h │ │ └── sg.h │ ├── search.h │ ├── setjmp.h │ ├── sgtty.h │ ├── shadow.h │ ├── signal.h │ ├── stdint.h │ ├── stdio.h │ ├── stdio_ext.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── sys │ │ ├── bitypes.h │ │ ├── cdefs.h │ │ ├── dir.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── fsuid.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── kd.h │ │ ├── kdaemon.h │ │ ├── klog.h │ │ ├── mman.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── mtio.h │ │ ├── param.h │ │ ├── personality.h │ │ ├── poll.h │ │ ├── queue.h │ │ ├── quota.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── sendfile.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── socketvar.h │ │ ├── soundcard.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ ├── swap.h │ │ ├── syscall.h │ │ ├── sysctl.h │ │ ├── sysinfo.h │ │ ├── syslog.h │ │ ├── sysmacros.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── times.h │ │ ├── timex.h │ │ ├── ttydefaults.h │ │ ├── types.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── unistd.h │ │ ├── ustat.h │ │ ├── utsname.h │ │ ├── vfs.h │ │ ├── vt.h │ │ ├── wait.h │ │ └── xattr.h │ ├── syscall.h │ ├── sysexits.h │ ├── syslog.h │ ├── tar.h │ ├── termio.h │ ├── termios.h │ ├── tgmath.h │ ├── time.h │ ├── ttyent.h │ ├── ucontext.h │ ├── ulimit.h │ ├── unistd.h │ ├── ustat.h │ ├── utime.h │ ├── utmp.h │ ├── values.h │ ├── wait.h │ ├── wchar.h │ ├── wctype.h │ ├── wordexp.h │ └── xlocale.h │ ├── jos64-local-changes │ └── changed.files │ ├── ldso │ ├── COPYRIGHT │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── include │ │ ├── dl-defs.h │ │ ├── dl-elf.h │ │ ├── dl-hash.h │ │ ├── dl-string.h │ │ ├── dl-syscall.h │ │ ├── dlfcn.h │ │ ├── ldso.h │ │ └── unsecvars.h │ ├── ldso │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── arm │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── bfin │ │ │ ├── dl-debug.h │ │ │ ├── dl-inlines.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── cris │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── dl-array.c │ │ ├── dl-debug.c │ │ ├── dl-elf.c │ │ ├── dl-hash.c │ │ ├── dl-startup.c │ │ ├── frv │ │ │ ├── dl-debug.h │ │ │ ├── dl-inlines.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── i386 │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── ldso.c │ │ ├── m68k │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── mips │ │ │ ├── README │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── powerpc │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── sh │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── sh64 │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ ├── sparc │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ │ └── x86_64 │ │ │ ├── dl-debug.h │ │ │ ├── dl-startup.h │ │ │ ├── dl-syscalls.h │ │ │ ├── dl-sysdep.h │ │ │ ├── elfinterp.c │ │ │ └── resolve.S │ ├── libdl │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ └── libdl.c │ └── man │ │ ├── Makefile │ │ ├── dlopen.3 │ │ ├── ld.so.8 │ │ ├── ld.so.texi │ │ ├── ldconfig.8 │ │ └── ldd.1 │ ├── libc │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ ├── Makefrag.prof │ ├── inet │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── accept.c │ │ ├── addr.c │ │ ├── bind.c │ │ ├── closenameservers.c │ │ ├── connect.c │ │ ├── decodea.c │ │ ├── decoded.c │ │ ├── decodeh.c │ │ ├── decodep.c │ │ ├── decodeq.c │ │ ├── dnslookup.c │ │ ├── encodea.c │ │ ├── encoded.c │ │ ├── encodeh.c │ │ ├── encodep.c │ │ ├── encodeq.c │ │ ├── ether_addr.c │ │ ├── formquery.c │ │ ├── gai_strerror.c │ │ ├── get_hosts_byaddr_r.c │ │ ├── get_hosts_byname_r.c │ │ ├── getaddrinfo.c │ │ ├── gethostbyaddr.c │ │ ├── gethostbyaddr_r.c │ │ ├── gethostbyname.c │ │ ├── gethostbyname2.c │ │ ├── gethostbyname2_r.c │ │ ├── gethostbyname_r.c │ │ ├── gethostent.c │ │ ├── getnameinfo.c │ │ ├── getnetbyad.c │ │ ├── getnetbynm.c │ │ ├── getnetent.c │ │ ├── getpeername.c │ │ ├── getproto.c │ │ ├── getservice.c │ │ ├── getsockname.c │ │ ├── getsockopt.c │ │ ├── herror.c │ │ ├── hostid.c │ │ ├── if_index.c │ │ ├── ifaddrs.c │ │ ├── in6_addr.c │ │ ├── inet_addr.c │ │ ├── inet_aton.c │ │ ├── inet_lnaof.c │ │ ├── inet_makeaddr.c │ │ ├── inet_net.c │ │ ├── inet_netof.c │ │ ├── inet_ntoa.c │ │ ├── lengthd.c │ │ ├── lengthq.c │ │ ├── listen.c │ │ ├── netlinkaccess.h │ │ ├── ns_name.c │ │ ├── ntohl.c │ │ ├── ntop.c │ │ ├── opennameservers.c │ │ ├── opensock.c │ │ ├── read_etc_hosts_r.c │ │ ├── recv.c │ │ ├── recvfrom.c │ │ ├── recvmsg.c │ │ ├── res_comp.c │ │ ├── res_init.c │ │ ├── res_query.c │ │ ├── resolv.c │ │ ├── resolveaddress.c │ │ ├── resolvename.c │ │ ├── rpc │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Makefrag │ │ │ ├── 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 │ │ │ ├── clnt_unix.c │ │ │ ├── create_xid.c │ │ │ ├── errqueue.h │ │ │ ├── get_myaddress.c │ │ │ ├── getrpcent.c │ │ │ ├── getrpcport.c │ │ │ ├── pm_getmaps.c │ │ │ ├── pm_getport.c │ │ │ ├── pmap_clnt.c │ │ │ ├── pmap_prot.c │ │ │ ├── pmap_prot2.c │ │ │ ├── pmap_rmt.c │ │ │ ├── rcmd.c │ │ │ ├── rexec.c │ │ │ ├── rpc_cmsg.c │ │ │ ├── rpc_commondata.c │ │ │ ├── rpc_dtablesize.c │ │ │ ├── rpc_private.h │ │ │ ├── rpc_prot.c │ │ │ ├── rpc_thread.c │ │ │ ├── rtime.c │ │ │ ├── ruserpass.c │ │ │ ├── sa_len.c │ │ │ ├── svc.c │ │ │ ├── svc_auth.c │ │ │ ├── svc_authux.c │ │ │ ├── svc_raw.c │ │ │ ├── svc_run.c │ │ │ ├── svc_simple.c │ │ │ ├── svc_tcp.c │ │ │ ├── svc_udp.c │ │ │ ├── svc_unix.c │ │ │ ├── xdr.c │ │ │ ├── xdr_array.c │ │ │ ├── xdr_float.c │ │ │ ├── xdr_intXX_t.c │ │ │ ├── xdr_mem.c │ │ │ ├── xdr_rec.c │ │ │ ├── xdr_reference.c │ │ │ └── xdr_stdio.c │ │ ├── send.c │ │ ├── sendmsg.c │ │ ├── sendto.c │ │ ├── setsockopt.c │ │ ├── shutdown.c │ │ ├── socket.c │ │ ├── socketcalls.c │ │ └── socketpair.c │ ├── misc │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── assert │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── __assert.c │ │ ├── ctype │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── __C_ctype_b.c │ │ │ ├── __C_ctype_tolower.c │ │ │ ├── __C_ctype_toupper.c │ │ │ ├── __ctype_assert.c │ │ │ ├── __ctype_b_loc.c │ │ │ ├── __ctype_tolower_loc.c │ │ │ ├── __ctype_toupper_loc.c │ │ │ ├── ctype.c │ │ │ ├── isalnum.c │ │ │ ├── isalnum_l.c │ │ │ ├── isalpha.c │ │ │ ├── isalpha_l.c │ │ │ ├── isascii.c │ │ │ ├── isascii_l.c │ │ │ ├── isblank.c │ │ │ ├── isblank_l.c │ │ │ ├── iscntrl.c │ │ │ ├── iscntrl_l.c │ │ │ ├── isctype.c │ │ │ ├── isdigit.c │ │ │ ├── isdigit_l.c │ │ │ ├── isgraph.c │ │ │ ├── isgraph_l.c │ │ │ ├── islower.c │ │ │ ├── islower_l.c │ │ │ ├── isprint.c │ │ │ ├── isprint_l.c │ │ │ ├── ispunct.c │ │ │ ├── ispunct_l.c │ │ │ ├── isspace.c │ │ │ ├── isspace_l.c │ │ │ ├── isupper.c │ │ │ ├── isupper_l.c │ │ │ ├── isxdigit.c │ │ │ ├── isxdigit_l.c │ │ │ ├── toascii.c │ │ │ ├── toascii_l.c │ │ │ ├── tolower.c │ │ │ ├── tolower_l.c │ │ │ ├── toupper.c │ │ │ └── toupper_l.c │ │ ├── dirent │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── alphasort.c │ │ │ ├── alphasort64.c │ │ │ ├── closedir.c │ │ │ ├── dirfd.c │ │ │ ├── dirstream.h │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readdir_r.c │ │ │ ├── rewinddir.c │ │ │ ├── scandir.c │ │ │ ├── scandir64.c │ │ │ ├── seekdir.c │ │ │ └── telldir.c │ │ ├── error │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── err.c │ │ │ └── error.c │ │ ├── file │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── lockf.c │ │ │ └── lockf64.c │ │ ├── fnmatch │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── fnmatch.c │ │ │ ├── fnmatch_loop.c │ │ │ └── fnmatch_old.c │ │ ├── ftw │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── ftw.c │ │ │ └── ftw64.c │ │ ├── glob │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── glob-susv3.c │ │ │ ├── glob.c │ │ │ ├── glob64-susv3.c │ │ │ └── glob64.c │ │ ├── gnu │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── obstack.c │ │ ├── internals │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── __errno_location.c │ │ │ ├── __h_errno_location.c │ │ │ ├── __uClibc_main.c │ │ │ ├── errno.c │ │ │ ├── internal_errno.h │ │ │ ├── shared_flat_add_library.c │ │ │ ├── shared_flat_initfini.c │ │ │ ├── shared_flat_lib.h │ │ │ ├── tempname.c │ │ │ └── tempname.h │ │ ├── locale │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── __curlocale.c │ │ │ ├── __locale_mbrtowc_l.c │ │ │ ├── _locale_init.c │ │ │ ├── c8tables.h │ │ │ ├── duplocale.c │ │ │ ├── freelocale.c │ │ │ ├── locale.c │ │ │ ├── locale_data.c │ │ │ ├── locale_mmap.h │ │ │ ├── localeconv.c │ │ │ ├── lt_defines.h │ │ │ ├── newlocale.c │ │ │ ├── nl_langinfo.c │ │ │ ├── nl_langinfo_l.c │ │ │ ├── setlocale.c │ │ │ ├── uselocale.c │ │ │ └── wctables.h │ │ ├── mntent │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── mntent.c │ │ ├── pthread │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── unlock.c │ │ │ └── weaks.c │ │ ├── regex │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── _regex.h │ │ │ ├── regcomp.c │ │ │ ├── regex.c │ │ │ ├── regex_internal.c │ │ │ ├── regex_internal.h │ │ │ ├── regex_old.c │ │ │ └── regexec.c │ │ ├── search │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── _hsearch_r.c │ │ │ ├── _lsearch.c │ │ │ ├── _tsearch.c │ │ │ ├── hcreate_r.c │ │ │ ├── hdestroy_r.c │ │ │ ├── hsearch.c │ │ │ ├── hsearch_r.c │ │ │ ├── insque.c │ │ │ ├── insremque.c │ │ │ ├── lfind.c │ │ │ ├── lsearch.c │ │ │ ├── remque.c │ │ │ ├── tdelete.c │ │ │ ├── tdestroy.c │ │ │ ├── tfind.c │ │ │ ├── tsearch.c │ │ │ └── twalk.c │ │ ├── statfs │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── fstatfs64.c │ │ │ ├── fstatvfs.c │ │ │ ├── fstatvfs64.c │ │ │ ├── internal_statvfs.c │ │ │ ├── statfs64.c │ │ │ ├── statvfs.c │ │ │ └── statvfs64.c │ │ ├── syslog │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── syslog.c │ │ ├── sysvipc │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── ftok.c │ │ │ ├── ipc.h │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgq.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── sem.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── shm.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ └── shmget.c │ │ ├── time │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── __time_tm.c │ │ │ ├── _time_localtime_tzi.c │ │ │ ├── _time_mktime.c │ │ │ ├── _time_mktime_tzi.c │ │ │ ├── _time_t2tm.c │ │ │ ├── adjtime.c │ │ │ ├── asctime.c │ │ │ ├── asctime_r.c │ │ │ ├── clock.c │ │ │ ├── ctime.c │ │ │ ├── ctime_r.c │ │ │ ├── difftime.c │ │ │ ├── dysize.c │ │ │ ├── ftime.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_r.c │ │ │ ├── localtime.c │ │ │ ├── localtime_r.c │ │ │ ├── mktime.c │ │ │ ├── strftime.c │ │ │ ├── strftime_l.c │ │ │ ├── strptime.c │ │ │ ├── strptime_l.c │ │ │ ├── time.c │ │ │ ├── timegm.c │ │ │ ├── tzset.c │ │ │ ├── wcsftime.c │ │ │ └── wcsftime_l.c │ │ ├── ttyent │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── getttyent.c │ │ ├── utmp │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── utent.c │ │ │ └── wtent.c │ │ ├── wchar │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── _wchar_utf8sntowcs.c │ │ │ ├── _wchar_wcsntoutf8s.c │ │ │ ├── btowc.c │ │ │ ├── iconv.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbsnrtowcs.c │ │ │ ├── mbsrtowcs.c │ │ │ ├── wchar.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsnrtombs.c │ │ │ ├── wcsrtombs.c │ │ │ ├── wcswidth.c │ │ │ ├── wctob.c │ │ │ └── wcwidth.c │ │ ├── wctype │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── _wctype.c │ │ │ ├── iswalnum.c │ │ │ ├── iswalnum_l.c │ │ │ ├── iswalpha.c │ │ │ ├── iswalpha_l.c │ │ │ ├── iswblank.c │ │ │ ├── iswblank_l.c │ │ │ ├── iswcntrl.c │ │ │ ├── iswcntrl_l.c │ │ │ ├── iswctype.c │ │ │ ├── iswctype_l.c │ │ │ ├── iswdigit.c │ │ │ ├── iswdigit_l.c │ │ │ ├── iswgraph.c │ │ │ ├── iswgraph_l.c │ │ │ ├── iswlower.c │ │ │ ├── iswlower_l.c │ │ │ ├── iswprint.c │ │ │ ├── iswprint_l.c │ │ │ ├── iswpunct.c │ │ │ ├── iswpunct_l.c │ │ │ ├── iswspace.c │ │ │ ├── iswspace_l.c │ │ │ ├── iswupper.c │ │ │ ├── iswupper_l.c │ │ │ ├── iswxdigit.c │ │ │ ├── iswxdigit_l.c │ │ │ ├── towctrans.c │ │ │ ├── towctrans_l.c │ │ │ ├── towlower.c │ │ │ ├── towlower_l.c │ │ │ ├── towupper.c │ │ │ ├── towupper_l.c │ │ │ ├── wctrans.c │ │ │ ├── wctrans_l.c │ │ │ ├── wctype.c │ │ │ └── wctype_l.c │ │ └── wordexp │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── wordexp.c │ ├── pwd_grp │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── __parsegrent.c │ │ ├── __parsepwent.c │ │ ├── __parsespent.c │ │ ├── __pgsreader.c │ │ ├── fgetgrent.c │ │ ├── fgetgrent_r.c │ │ ├── fgetpwent.c │ │ ├── fgetpwent_r.c │ │ ├── fgetspent.c │ │ ├── fgetspent_r.c │ │ ├── getgrent.c │ │ ├── getgrent_r.c │ │ ├── getgrgid.c │ │ ├── getgrgid_r.c │ │ ├── getgrnam.c │ │ ├── getgrnam_r.c │ │ ├── getpw.c │ │ ├── getpwent.c │ │ ├── getpwent_r.c │ │ ├── getpwnam.c │ │ ├── getpwnam_r.c │ │ ├── getpwuid.c │ │ ├── getpwuid_r.c │ │ ├── getspent.c │ │ ├── getspent_r.c │ │ ├── getspnam.c │ │ ├── getspnam_r.c │ │ ├── initgroups.c │ │ ├── lckpwdf.c │ │ ├── putgrent.c │ │ ├── putpwent.c │ │ ├── putspent.c │ │ ├── pwd_grp.c │ │ ├── pwd_grp_internal.c │ │ ├── sgetspent.c │ │ └── sgetspent_r.c │ ├── signal │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── allocrtsig.c │ │ ├── killpg.c │ │ ├── raise.c │ │ ├── sigaction.c │ │ ├── sigaddset.c │ │ ├── sigandset.c │ │ ├── sigblock.c │ │ ├── sigdelset.c │ │ ├── sigempty.c │ │ ├── sigfillset.c │ │ ├── siggetmask.c │ │ ├── sighold.c │ │ ├── sigignore.c │ │ ├── sigintr.c │ │ ├── sigisempty.c │ │ ├── sigismem.c │ │ ├── sigjmp.c │ │ ├── signal.c │ │ ├── sigorset.c │ │ ├── sigpause.c │ │ ├── sigrelse.c │ │ ├── sigset-cvt-mask.h │ │ ├── sigset.c │ │ ├── sigsetmask.c │ │ ├── sigsetops.c │ │ ├── sigsetops.h │ │ ├── sigwait.c │ │ └── sysv_signal.c │ ├── stdio │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── _READ.c │ │ ├── _WRITE.c │ │ ├── __fbufsize.c │ │ ├── __flbf.c │ │ ├── __fpending.c │ │ ├── __fpurge.c │ │ ├── __freadable.c │ │ ├── __freading.c │ │ ├── __fsetlocking.c │ │ ├── __fwritable.c │ │ ├── __fwriting.c │ │ ├── __psfs_do_numeric.c │ │ ├── __psfs_parse_spec.c │ │ ├── __scan_cookie.c │ │ ├── _adjust_pos.c │ │ ├── _cs_funcs.c │ │ ├── _flushlbf.c │ │ ├── _fopen.c │ │ ├── _fpmaxtostr.c │ │ ├── _fwrite.c │ │ ├── _load_inttype.c │ │ ├── _ppfs_init.c │ │ ├── _ppfs_parsespec.c │ │ ├── _ppfs_prepargs.c │ │ ├── _ppfs_setargs.c │ │ ├── _rfill.c │ │ ├── _scanf.c │ │ ├── _stdio.c │ │ ├── _stdio.h │ │ ├── _store_inttype.c │ │ ├── _trans2r.c │ │ ├── _trans2w.c │ │ ├── _uintmaxtostr.c │ │ ├── _vfprintf.c │ │ ├── _wcommit.c │ │ ├── _wfwrite.c │ │ ├── asprintf.c │ │ ├── clearerr.c │ │ ├── clearerr_unlocked.c │ │ ├── ctermid.c │ │ ├── dprintf.c │ │ ├── fclose.c │ │ ├── fcloseall.c │ │ ├── fdopen.c │ │ ├── feof.c │ │ ├── feof_unlocked.c │ │ ├── ferror.c │ │ ├── ferror_unlocked.c │ │ ├── fflush.c │ │ ├── fflush_unlocked.c │ │ ├── fgetc.c │ │ ├── fgetc_unlocked.c │ │ ├── fgetpos.c │ │ ├── fgetpos64.c │ │ ├── fgets.c │ │ ├── fgets_unlocked.c │ │ ├── fgetwc.c │ │ ├── fgetwc_unlocked.c │ │ ├── fgetws.c │ │ ├── fgetws_unlocked.c │ │ ├── fileno.c │ │ ├── fileno_unlocked.c │ │ ├── flockfile.c │ │ ├── fmemopen.c │ │ ├── fopen.c │ │ ├── fopen64.c │ │ ├── fopencookie.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputc_unlocked.c │ │ ├── fputs.c │ │ ├── fputs_unlocked.c │ │ ├── fputwc.c │ │ ├── fputwc_unlocked.c │ │ ├── fputws.c │ │ ├── fputws_unlocked.c │ │ ├── fread.c │ │ ├── fread_unlocked.c │ │ ├── freopen.c │ │ ├── freopen64.c │ │ ├── fscanf.c │ │ ├── fseeko.c │ │ ├── fseeko64.c │ │ ├── fsetpos.c │ │ ├── fsetpos64.c │ │ ├── ftello.c │ │ ├── ftello64.c │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwrite_unlocked.c │ │ ├── fwscanf.c │ │ ├── getchar.c │ │ ├── getchar_unlocked.c │ │ ├── getdelim.c │ │ ├── getline.c │ │ ├── gets.c │ │ ├── getw.c │ │ ├── getwchar.c │ │ ├── getwchar_unlocked.c │ │ ├── old_vfprintf.c │ │ ├── open_memstream.c │ │ ├── parse_printf_format.c │ │ ├── perror.c │ │ ├── popen.c │ │ ├── printf.c │ │ ├── putchar.c │ │ ├── putchar_unlocked.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── putwchar.c │ │ ├── putwchar_unlocked.c │ │ ├── register_printf_function.c │ │ ├── remove.c │ │ ├── rewind.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setlinebuf.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── tempnam.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── tmpnam_r.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vdprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wprintf.c │ │ └── wscanf.c │ ├── stdlib │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── __cxa_atexit.c │ │ ├── __cxa_finalize.c │ │ ├── __exit_handler.c │ │ ├── __fp_range_check.c │ │ ├── __strtofpmax.c │ │ ├── __strtofpmax_l.c │ │ ├── __wcstofpmax.c │ │ ├── __wcstofpmax_l.c │ │ ├── _atexit.c │ │ ├── _stdlib_mb_cur_max.c │ │ ├── _stdlib_strto_l.c │ │ ├── _stdlib_strto_l_l.c │ │ ├── _stdlib_strto_ll.c │ │ ├── _stdlib_strto_ll_l.c │ │ ├── _stdlib_wcsto_l.c │ │ ├── _stdlib_wcsto_l_l.c │ │ ├── _stdlib_wcsto_ll.c │ │ ├── _stdlib_wcsto_ll_l.c │ │ ├── _strtod.c │ │ ├── a64l.c │ │ ├── abort.c │ │ ├── abs.c │ │ ├── arc4random.c │ │ ├── atexit.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── bsd_getpt.c │ │ ├── bsearch.c │ │ ├── div.c │ │ ├── drand48-iter.c │ │ ├── drand48.c │ │ ├── drand48_r.c │ │ ├── erand48.c │ │ ├── erand48_r.c │ │ ├── exit.c │ │ ├── gcvt.c │ │ ├── getenv.c │ │ ├── getpt.c │ │ ├── grantpt.c │ │ ├── jrand48.c │ │ ├── jrand48_r.c │ │ ├── l64a.c │ │ ├── labs.c │ │ ├── ldiv.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── lrand48.c │ │ ├── lrand48_r.c │ │ ├── malloc-simple │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── alloc.c │ │ │ ├── calloc.c │ │ │ ├── free.c │ │ │ ├── malloc.c │ │ │ ├── memalign.c │ │ │ └── realloc.c │ │ ├── malloc-standard │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Makefrag │ │ │ ├── calloc.c │ │ │ ├── free.c │ │ │ ├── mallinfo.c │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── mallopt.c │ │ │ ├── memalign.c │ │ │ └── realloc.c │ │ ├── malloc │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── calloc.c │ │ │ ├── free.c │ │ │ ├── heap.h │ │ │ ├── heap_alloc.c │ │ │ ├── heap_alloc_at.c │ │ │ ├── heap_debug.c │ │ │ ├── heap_free.c │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── malloc_debug.c │ │ │ ├── memalign.c │ │ │ └── realloc.c │ │ ├── mblen.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── mkdtemp.c │ │ ├── mkstemp.c │ │ ├── mkstemp64.c │ │ ├── mktemp.c │ │ ├── mrand48.c │ │ ├── mrand48_r.c │ │ ├── nrand48.c │ │ ├── nrand48_r.c │ │ ├── old_atexit.c │ │ ├── on_exit.c │ │ ├── posix_memalign.c │ │ ├── ptsname.c │ │ ├── pty-private.h │ │ ├── qsort.c │ │ ├── rand.c │ │ ├── rand_r.c │ │ ├── random.c │ │ ├── random_r.c │ │ ├── realpath.c │ │ ├── seed48.c │ │ ├── seed48_r.c │ │ ├── setenv.c │ │ ├── srand48.c │ │ ├── srand48_r.c │ │ ├── stdlib.c │ │ ├── strtod.c │ │ ├── strtod_l.c │ │ ├── strtof.c │ │ ├── strtof_l.c │ │ ├── strtol.c │ │ ├── strtol_l.c │ │ ├── strtold.c │ │ ├── strtold_l.c │ │ ├── strtoll.c │ │ ├── strtoll_l.c │ │ ├── strtoul.c │ │ ├── strtoul_l.c │ │ ├── strtoull.c │ │ ├── strtoull_l.c │ │ ├── system.c │ │ ├── unix_grantpt.c │ │ ├── unlockpt.c │ │ ├── valloc.c │ │ ├── wcstod.c │ │ ├── wcstod_l.c │ │ ├── wcstof.c │ │ ├── wcstof_l.c │ │ ├── wcstol.c │ │ ├── wcstol_l.c │ │ ├── wcstold.c │ │ ├── wcstold_l.c │ │ ├── wcstoll.c │ │ ├── wcstoll_l.c │ │ ├── wcstombs.c │ │ ├── wcstoul.c │ │ ├── wcstoul_l.c │ │ ├── wcstoull.c │ │ ├── wcstoull_l.c │ │ └── wctomb.c │ ├── string │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── __glibc_strerror_r.c │ │ ├── __xpg_basename.c │ │ ├── __xpg_strerror_r.c │ │ ├── _collate.c │ │ ├── _string.h │ │ ├── _string_syserrmsgs.c │ │ ├── _string_syssigmsgs.c │ │ ├── _syserrmsg.h │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── _memcpy.S │ │ │ ├── bcopy.S │ │ │ ├── bzero.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── strcmp.S │ │ │ ├── strlen.S │ │ │ └── strncmp.S │ │ ├── basename.c │ │ ├── bcopy.c │ │ ├── bfin │ │ │ ├── Makefile │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ └── strcmp.S │ │ ├── bzero.c │ │ ├── dirname.c │ │ ├── ffs.c │ │ ├── frv │ │ │ ├── Makefile │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── generic │ │ │ ├── Makefile │ │ │ ├── bp-checks.h │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcopy.h │ │ │ ├── memcpy.c │ │ │ ├── memmem.c │ │ │ ├── memmove.c │ │ │ ├── mempcpy.c │ │ │ ├── memrchr.c │ │ │ ├── memset.c │ │ │ ├── pagecopy.h │ │ │ ├── rawmemchr.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strchrnul.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strlen.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strnlen.c │ │ │ ├── strrchr.c │ │ │ ├── strsep.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ └── strtok_r.c │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── memchr.c │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ ├── memset.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strlen.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strnlen.c │ │ │ └── strrchr.c │ │ ├── ia64 │ │ │ ├── Makefile │ │ │ ├── bcopy.S │ │ │ ├── bzero.S │ │ │ ├── memccpy.S │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── softpipe.h │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ ├── strncpy.S │ │ │ └── sysdep.h │ │ ├── memccpy.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmem.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr.c │ │ ├── memset.c │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ └── sysdep.h │ │ ├── powerpc │ │ │ ├── Makefile │ │ │ ├── memcpy.c │ │ │ ├── memmove.c │ │ │ └── memset.c │ │ ├── psignal.c │ │ ├── rawmemchr.c │ │ ├── sh64 │ │ │ ├── Makefile │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── strcpy.S │ │ │ └── strlen.S │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── _glibc_inc.h │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.c │ │ │ ├── memset.S │ │ │ ├── sparc32 │ │ │ │ ├── memchr.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── sparcv9b │ │ │ │ │ ├── memchr.S │ │ │ │ │ ├── memcpy.S │ │ │ │ │ ├── memset.S │ │ │ │ │ ├── stpcpy.S │ │ │ │ │ ├── strcat.S │ │ │ │ │ ├── strchr.S │ │ │ │ │ ├── strcmp.S │ │ │ │ │ ├── strcpy.S │ │ │ │ │ └── strlen.S │ │ │ │ ├── stpcpy.S │ │ │ │ ├── strcat.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ └── strlen.S │ │ │ ├── sparc64 │ │ │ │ ├── memchr.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── sparcv9b │ │ │ │ │ └── memcpy.S │ │ │ │ ├── stpcpy.S │ │ │ │ ├── strcat.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ └── strlen.S │ │ │ ├── stpcpy.S │ │ │ ├── strcat.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ └── strrchr.c │ │ ├── stpcpy.c │ │ ├── stpncpy.c │ │ ├── strcasecmp.c │ │ ├── strcasecmp_l.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strerror.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strncasecmp.c │ │ ├── strncasecmp_l.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strsep.c │ │ ├── strsignal.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strxfrm.c │ │ ├── strxfrm_l.c │ │ ├── sys_errlist.c │ │ ├── sys_siglist.c │ │ ├── wcpcpy.c │ │ ├── wcpncpy.c │ │ ├── wcscasecmp.c │ │ ├── wcscasecmp_l.c │ │ ├── wcscat.c │ │ ├── wcschr.c │ │ ├── wcschrnul.c │ │ ├── wcscmp.c │ │ ├── wcscpy.c │ │ ├── wcscspn.c │ │ ├── wcsdup.c │ │ ├── wcslcpy.c │ │ ├── wcslen.c │ │ ├── wcsncasecmp.c │ │ ├── wcsncasecmp_l.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcsnlen.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstok.c │ │ ├── wcsxfrm.c │ │ ├── wcsxfrm_l.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ ├── wmempcpy.c │ │ ├── wmemset.c │ │ └── x86_64 │ │ │ ├── Makefile │ │ │ ├── _glibc_inc.h │ │ │ ├── bzero.S │ │ │ ├── memcpy.S │ │ │ ├── mempcpy.S │ │ │ ├── memset.S │ │ │ ├── stpcpy.S │ │ │ ├── strcat.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strcspn.S │ │ │ ├── strlen.S │ │ │ ├── strpbrk.S │ │ │ └── strspn.S │ ├── sysdeps │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── README │ │ └── linux │ │ │ ├── Makefile │ │ │ ├── Makefile.commonarch │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── __syscall_rt_sigaction.S │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── dirent.h │ │ │ │ ├── elfclass.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno_values.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── netdb.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signum.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── termios.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_clk_tck.h │ │ │ │ ├── uClibc_page.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.S │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── divl.S │ │ │ ├── divq.S │ │ │ ├── divrem.h │ │ │ ├── fpu_control.h │ │ │ ├── pipe.S │ │ │ ├── reml.S │ │ │ ├── remq.S │ │ │ ├── setjmp.S │ │ │ ├── sigprocmask.c │ │ │ ├── sys │ │ │ │ ├── acct.h │ │ │ │ ├── io.h │ │ │ │ ├── procfs.h │ │ │ │ ├── regdef.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ └── syscall.S │ │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── aeabi_assert.c │ │ │ ├── aeabi_atexit.c │ │ │ ├── aeabi_errno_addr.c │ │ │ ├── aeabi_lcsts.c │ │ │ ├── aeabi_localeconv.c │ │ │ ├── aeabi_math.c │ │ │ ├── aeabi_mb_cur_max.c │ │ │ ├── aeabi_memclr.c │ │ │ ├── aeabi_memcpy.c │ │ │ ├── aeabi_memmove.c │ │ │ ├── aeabi_memset.c │ │ │ ├── aeabi_sighandlers.S │ │ │ ├── aeabi_unwind_cpp_pr1.c │ │ │ ├── bits │ │ │ │ ├── armsigctx.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── huge_val.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── find_exidx.c │ │ │ ├── fpu_control.h │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── mmap.c │ │ │ ├── mmap64.S │ │ │ ├── posix_fadvise.c │ │ │ ├── posix_fadvise64.c │ │ │ ├── setjmp.S │ │ │ ├── sigaction.c │ │ │ ├── sigrestorer.S │ │ │ ├── sys │ │ │ │ ├── elf.h │ │ │ │ ├── io.h │ │ │ │ ├── procfs.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall-eabi.S │ │ │ ├── syscall.c │ │ │ └── vfork.S │ │ │ ├── bfin │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── bfin_sram.h │ │ │ │ ├── elf-fdpic.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── huge_val.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsdsetjmp.c │ │ │ ├── clone.c │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── crtreloc.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── elf.h │ │ │ │ ├── io.h │ │ │ │ ├── procfs.h │ │ │ │ ├── reg.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ └── vfork.S │ │ │ ├── common │ │ │ ├── .indent.pro │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── __rt_sigtimedwait.c │ │ │ ├── __socketcall.c │ │ │ ├── __syscall_fcntl.c │ │ │ ├── __syscall_fcntl64.c │ │ │ ├── __syscall_ipc.c │ │ │ ├── __syscall_rt_sigaction.c │ │ │ ├── __syscall_sigaction.c │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── acct.c │ │ │ ├── adjtimex.c │ │ │ ├── alarm.c │ │ │ ├── arch_prctl.c │ │ │ ├── bdflush.c │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── cmathcalls.h │ │ │ │ ├── confname.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── elfclass.h │ │ │ │ ├── endian.h │ │ │ │ ├── environments.h │ │ │ │ ├── errno.h │ │ │ │ ├── errno_values.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── fenvinline.h │ │ │ │ ├── getopt.h │ │ │ │ ├── huge_val.h │ │ │ │ ├── huge_valf.h │ │ │ │ ├── huge_vall.h │ │ │ │ ├── in.h │ │ │ │ ├── inf.h │ │ │ │ ├── initspin.h │ │ │ │ ├── ioctl-types.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── local_lim.h │ │ │ │ ├── locale.h │ │ │ │ ├── mathcalls.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── msq.h │ │ │ │ ├── nan.h │ │ │ │ ├── netdb.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix1_lim.h │ │ │ │ ├── posix2_lim.h │ │ │ │ ├── posix_opt.h │ │ │ │ ├── resource.h │ │ │ │ ├── sched.h │ │ │ │ ├── select.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signum.h │ │ │ │ ├── sigset.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── sigthread.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socket.h │ │ │ │ ├── stab.def │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdio_lim.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── types.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_clk_tck.h │ │ │ │ ├── uClibc_ctype.h │ │ │ │ ├── uClibc_errno.h │ │ │ │ ├── uClibc_fpmax.h │ │ │ │ ├── uClibc_local_lim.h │ │ │ │ ├── uClibc_locale.h │ │ │ │ ├── uClibc_mutex.h │ │ │ │ ├── uClibc_page.h │ │ │ │ ├── uClibc_pthread.h │ │ │ │ ├── uClibc_stdio.h │ │ │ │ ├── uClibc_touplow.h │ │ │ │ ├── uClibc_uintmaxtostr.h │ │ │ │ ├── uClibc_uwchar.h │ │ │ │ ├── uClibc_va_copy.h │ │ │ │ ├── uio.h │ │ │ │ ├── ustat.h │ │ │ │ ├── utmp.h │ │ │ │ ├── utmpx.h │ │ │ │ ├── utsname.h │ │ │ │ ├── waitflags.h │ │ │ │ ├── waitstatus.h │ │ │ │ ├── wchar.h │ │ │ │ ├── wordsize.h │ │ │ │ └── xopen_lim.h │ │ │ ├── capget.c │ │ │ ├── capset.c │ │ │ ├── chdir.c │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── chroot.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_settime.c │ │ │ ├── close.c │ │ │ ├── cmsg_nxthdr.c │ │ │ ├── creat64.c │ │ │ ├── create_module.c │ │ │ ├── delete_module.c │ │ │ ├── dl-osinfo.h │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── epoll.c │ │ │ ├── execve.c │ │ │ ├── fchdir.c │ │ │ ├── fchmod.c │ │ │ ├── fchown.c │ │ │ ├── fdatasync.c │ │ │ ├── flock.c │ │ │ ├── fork.c │ │ │ ├── fpu_control.h │ │ │ ├── fstat.c │ │ │ ├── fstat64.c │ │ │ ├── fstatfs.c │ │ │ ├── fsync.c │ │ │ ├── ftruncate.c │ │ │ ├── ftruncate64.c │ │ │ ├── get_kernel_syms.c │ │ │ ├── getcwd.c │ │ │ ├── getdents.c │ │ │ ├── getdents64.c │ │ │ ├── getdirname.c │ │ │ ├── getdnnm.c │ │ │ ├── getdtablesize.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── gethstnm.c │ │ │ ├── getitimer.c │ │ │ ├── getpagesize.c │ │ │ ├── getpgid.c │ │ │ ├── getpgrp.c │ │ │ ├── getpid.c │ │ │ ├── getppid.c │ │ │ ├── getpriority.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit.c │ │ │ ├── getrlimit64.c │ │ │ ├── getrusage.c │ │ │ ├── getsid.c │ │ │ ├── gettimeofday.c │ │ │ ├── getuid.c │ │ │ ├── hp-timing.h │ │ │ ├── init_module.c │ │ │ ├── inotify.c │ │ │ ├── ioctl.c │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── kill.c │ │ │ ├── klogctl.c │ │ │ ├── lchown.c │ │ │ ├── link.c │ │ │ ├── llseek.c │ │ │ ├── longjmp.c │ │ │ ├── lseek.c │ │ │ ├── lstat.c │ │ │ ├── lstat64.c │ │ │ ├── madvise.c │ │ │ ├── mincore.c │ │ │ ├── mkdir.c │ │ │ ├── mkfifo.c │ │ │ ├── mknod.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── mmap.c │ │ │ ├── mmap64.c │ │ │ ├── modify_ldt.c │ │ │ ├── mount.c │ │ │ ├── mprotect.c │ │ │ ├── mremap.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── munmap.c │ │ │ ├── nanosleep.c │ │ │ ├── nice.c │ │ │ ├── noophooks.c │ │ │ ├── ntp_gettime.c │ │ │ ├── open.c │ │ │ ├── open64.c │ │ │ ├── pause.c │ │ │ ├── personality.c │ │ │ ├── pipe.c │ │ │ ├── pivot_root.c │ │ │ ├── poll.c │ │ │ ├── posix_fadvise.c │ │ │ ├── posix_fadvise64.c │ │ │ ├── ppoll.c │ │ │ ├── prctl.c │ │ │ ├── pread_write.c │ │ │ ├── pselect.c │ │ │ ├── ptrace.c │ │ │ ├── query_module.c │ │ │ ├── quotactl.c │ │ │ ├── read.c │ │ │ ├── readahead.c │ │ │ ├── readlink.c │ │ │ ├── readv.c │ │ │ ├── reboot.c │ │ │ ├── rename.c │ │ │ ├── rmdir.c │ │ │ ├── sbrk.c │ │ │ ├── sched_get_priority_max.c │ │ │ ├── sched_get_priority_min.c │ │ │ ├── sched_getaffinity.c │ │ │ ├── sched_getparam.c │ │ │ ├── sched_getscheduler.c │ │ │ ├── sched_rr_get_interval.c │ │ │ ├── sched_setaffinity.c │ │ │ ├── sched_setparam.c │ │ │ ├── sched_setscheduler.c │ │ │ ├── sched_yield.c │ │ │ ├── select.c │ │ │ ├── sendfile.c │ │ │ ├── sendfile64.c │ │ │ ├── setdomainname.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostname.c │ │ │ ├── setitimer.c │ │ │ ├── setpgid.c │ │ │ ├── setpgrp.c │ │ │ ├── setpriority.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setrlimit.c │ │ │ ├── setrlimit64.c │ │ │ ├── setsid.c │ │ │ ├── settimeofday.c │ │ │ ├── setuid.c │ │ │ ├── sigaltstack.c │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigqueue.c │ │ │ ├── sigsuspend.c │ │ │ ├── ssp-local.c │ │ │ ├── ssp.c │ │ │ ├── stat.c │ │ │ ├── stat64.c │ │ │ ├── statfs.c │ │ │ ├── stime.c │ │ │ ├── swapoff.c │ │ │ ├── swapon.c │ │ │ ├── symlink.c │ │ │ ├── sync.c │ │ │ ├── sys │ │ │ │ ├── acct.h │ │ │ │ ├── epoll.h │ │ │ │ ├── inotify.h │ │ │ │ ├── prctl.h │ │ │ │ ├── ptrace.h │ │ │ │ └── user.h │ │ │ ├── syscalls.h │ │ │ ├── sysctl.c │ │ │ ├── sysfs.c │ │ │ ├── sysinfo.c │ │ │ ├── time.c │ │ │ ├── times.c │ │ │ ├── truncate.c │ │ │ ├── truncate64.c │ │ │ ├── ulimit.c │ │ │ ├── umask.c │ │ │ ├── umount.c │ │ │ ├── umount2.c │ │ │ ├── uname.c │ │ │ ├── unlink.c │ │ │ ├── uselib.c │ │ │ ├── ustat.c │ │ │ ├── utime.c │ │ │ ├── utimes.c │ │ │ ├── vfork.c │ │ │ ├── vhangup.c │ │ │ ├── wait.c │ │ │ ├── wait3.c │ │ │ ├── wait4.c │ │ │ ├── waitid.c │ │ │ ├── waitpid.c │ │ │ ├── write.c │ │ │ ├── writev.c │ │ │ ├── xattr.c │ │ │ ├── xstatconv.c │ │ │ └── xstatconv.h │ │ │ ├── cris │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __init_brk.c │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathcalls.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── termios.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_page.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fork.c │ │ │ ├── libc.map │ │ │ ├── sbrk.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.S │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ │ │ ├── e1 │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── fenvinline.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── proto.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── unistd.h │ │ │ │ └── wordsize.h │ │ │ ├── crt0.S │ │ │ ├── crt1.c │ │ │ ├── longjmp.c │ │ │ ├── setjmp.c │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── reg.h │ │ │ │ └── ucontext.h │ │ │ ├── syscalls.c │ │ │ └── vfork.c │ │ │ ├── frv │ │ │ ├── Makefile │ │ │ ├── __init_brk.c │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── elf-fdpic.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_page.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── clone.S │ │ │ ├── crt0.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── crtreloc.c │ │ │ ├── dl-iterate-phdr.c │ │ │ ├── fstat.c │ │ │ ├── fstat64.c │ │ │ ├── lstat.c │ │ │ ├── lstat64.c │ │ │ ├── mmap.c │ │ │ ├── sbrk.c │ │ │ ├── setjmp.S │ │ │ ├── stat.c │ │ │ ├── stat64.c │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ ├── sysdep.c │ │ │ ├── vfork.S │ │ │ └── xstatconv.c │ │ │ ├── h8300 │ │ │ ├── Makefile │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt0.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── float.h │ │ │ ├── ptrace.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ └── vfork.S │ │ │ ├── hppa │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── add_n.s │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── signum.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── lshift.s │ │ │ ├── mmap.c │ │ │ ├── rshift.s │ │ │ ├── setjmp.S │ │ │ ├── sub_n.s │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ └── udiv_qrnnd.s │ │ │ ├── i386 │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── select.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── wchar.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fpu_control.h │ │ │ ├── mmap.S │ │ │ ├── mmap64.S │ │ │ ├── setjmp.S │ │ │ ├── sigaction.c │ │ │ ├── sys │ │ │ │ ├── debugreg.h │ │ │ │ ├── elf.h │ │ │ │ ├── io.h │ │ │ │ ├── perm.h │ │ │ │ ├── procfs.h │ │ │ │ ├── reg.h │ │ │ │ ├── ucontext.h │ │ │ │ ├── user.h │ │ │ │ └── vm86.h │ │ │ ├── syscall.S │ │ │ └── vfork.S │ │ │ ├── i960 │ │ │ ├── AUTHORS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── clone.S │ │ │ ├── crt0.S │ │ │ ├── mmap.S │ │ │ ├── setjmp.S │ │ │ ├── specs.uclinux.gcc-2.95.i960-intel-coff │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ └── vfork.S │ │ │ ├── ia64 │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.S │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone2.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fork.S │ │ │ ├── pipe.S │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── io.h │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── sysdep.h │ │ │ └── vfork.S │ │ │ ├── m68k │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── README.m68k │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── poll.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_page.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── float.h │ │ │ ├── fpu_control.h │ │ │ ├── m68k_pic.S │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── reg.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ └── vfork.S │ │ │ ├── microblaze │ │ │ ├── Makefile │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── poll.h │ │ │ │ ├── select.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── clinkage.h │ │ │ ├── clone.c │ │ │ ├── crt0.S │ │ │ ├── mmap.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── ptrace.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ └── vfork.S │ │ │ ├── mips │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.c │ │ │ ├── __syscall_error.c │ │ │ ├── _test_and_set.c │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno_values.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── ioctl-types.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── poll.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signum.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── termios.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_page.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── cacheflush.c │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fpu_control.h │ │ │ ├── mmap.c │ │ │ ├── pipe.S │ │ │ ├── pread_write.c │ │ │ ├── setjmp.S │ │ │ ├── setjmp_aux.c │ │ │ ├── sgidefs.h │ │ │ ├── sigaction.c │ │ │ ├── sys │ │ │ │ ├── asm.h │ │ │ │ ├── cachectl.h │ │ │ │ ├── fpregdef.h │ │ │ │ ├── procfs.h │ │ │ │ ├── regdef.h │ │ │ │ ├── sysmips.h │ │ │ │ ├── tas.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ └── sysmips.c │ │ │ ├── nios │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── NM_Macros.S │ │ │ ├── NR_Math1.S │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crtbegin.c │ │ │ ├── crtend.c │ │ │ ├── fpu_control.h │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ └── vfork.S │ │ │ ├── nios2 │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ ├── uClibc_page.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── clone.c │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fpu_control.h │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ └── vfork.S │ │ │ ├── powerpc │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── README.bits │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── __uClibc_syscall.S │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── fenvinline.h │ │ │ │ ├── ioctl-types.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── sysdep.h │ │ │ │ ├── termios.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.S │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fenv.h │ │ │ ├── fpu_control.h │ │ │ ├── ioctl.c │ │ │ ├── mmap.c │ │ │ ├── ppc_asm.h │ │ │ ├── pread_write.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ └── vfork.S │ │ │ ├── sh │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── ___fpscr_values.S │ │ │ ├── __init_brk.c │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── atomic.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── huge_val.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fpu_control.h │ │ │ ├── mmap.c │ │ │ ├── pipe.c │ │ │ ├── pread_write.c │ │ │ ├── sbrk.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── io.h │ │ │ │ ├── procfs.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.c │ │ │ ├── syscall_error.S │ │ │ └── vfork.S │ │ │ ├── sh64 │ │ │ ├── Makefile │ │ │ ├── __init_brk.c │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── crt0.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── longjmp.S │ │ │ ├── sbrk.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ └── ucontext.h │ │ │ └── syscall.c │ │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── _math_inc.h │ │ │ ├── bits │ │ │ │ ├── endian.h │ │ │ │ ├── errno_values.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── mathinline.h │ │ │ │ ├── mman.h │ │ │ │ ├── msq.h │ │ │ │ ├── poll.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── stat.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── termios.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fork.S │ │ │ ├── fpu_control.h │ │ │ ├── rem.S │ │ │ ├── sdiv.S │ │ │ ├── setjmp.S │ │ │ ├── sparcv7 │ │ │ │ ├── rem.S │ │ │ │ ├── sdiv.S │ │ │ │ ├── udiv.S │ │ │ │ ├── umul.S │ │ │ │ └── urem.S │ │ │ ├── sparcv8 │ │ │ │ ├── rem.S │ │ │ │ ├── sdiv.S │ │ │ │ ├── udiv.S │ │ │ │ ├── umul.S │ │ │ │ └── urem.S │ │ │ ├── sparcv9 │ │ │ │ ├── rem.S │ │ │ │ ├── sdiv.S │ │ │ │ ├── udiv.S │ │ │ │ ├── umul.S │ │ │ │ └── urem.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ ├── urem.S │ │ │ └── vfork.S │ │ │ ├── v850 │ │ │ ├── Makefile │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── mman.h │ │ │ │ ├── poll.h │ │ │ │ ├── select.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── clinkage.h │ │ │ ├── clone.c │ │ │ ├── crt0.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── mmap.c │ │ │ ├── setjmp.S │ │ │ ├── sys │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace.h │ │ │ │ └── ucontext.h │ │ │ ├── syscall.c │ │ │ └── vfork.S │ │ │ ├── vax │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── _setjmp.S │ │ │ ├── bits │ │ │ │ ├── byteswap.h │ │ │ │ ├── endian.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_types.h │ │ │ │ ├── machine-gmon.h │ │ │ │ ├── mman.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── stackinfo.h │ │ │ │ ├── statfs.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── uClibc_arch_features.h │ │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── mmap.c │ │ │ ├── setjmp.S │ │ │ └── sys │ │ │ │ ├── procfs.h │ │ │ │ └── ucontext.h │ │ │ └── x86_64 │ │ │ ├── Makefile │ │ │ ├── Makefile.arch │ │ │ ├── __longjmp.S │ │ │ ├── __syscall_error.c │ │ │ ├── bits │ │ │ ├── atomic.h │ │ │ ├── byteswap.h │ │ │ ├── endian.h │ │ │ ├── environments.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_types.h │ │ │ ├── mathdef.h │ │ │ ├── mathinline.h │ │ │ ├── mman.h │ │ │ ├── msq.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── stackinfo.h │ │ │ ├── stat.h │ │ │ ├── syscalls.h │ │ │ ├── uClibc_arch_features.h │ │ │ └── wordsize.h │ │ │ ├── brk.c │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── clone.S │ │ │ ├── crt1.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fpu_control.h │ │ │ ├── mmap.c │ │ │ ├── setjmp.S │ │ │ ├── sigaction.c │ │ │ ├── sys │ │ │ ├── debugreg.h │ │ │ ├── epoll.h │ │ │ ├── io.h │ │ │ ├── perm.h │ │ │ ├── procfs.h │ │ │ ├── reg.h │ │ │ ├── ucontext.h │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ └── vfork.S │ ├── termios │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── cfmakeraw.c │ │ ├── cfsetspeed.c │ │ ├── isatty.c │ │ ├── kernel_termios.h │ │ ├── speed.c │ │ ├── tcdrain.c │ │ ├── tcflow.c │ │ ├── tcflush.c │ │ ├── tcgetattr.c │ │ ├── tcgetpgrp.c │ │ ├── tcgetsid.c │ │ ├── tcsendbrk.c │ │ ├── tcsetattr.c │ │ ├── tcsetpgrp.c │ │ └── ttyname.c │ └── unistd │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefrag │ │ ├── __exec_alloc.c │ │ ├── confstr.c │ │ ├── daemon.c │ │ ├── exec.c │ │ ├── execl.c │ │ ├── execle.c │ │ ├── execlp.c │ │ ├── execv.c │ │ ├── execvp.c │ │ ├── fpathconf.c │ │ ├── getlogin.c │ │ ├── getopt-susv3.c │ │ ├── getopt.c │ │ ├── getopt_int.h │ │ ├── getopt_long-simple.c │ │ ├── getpass.c │ │ ├── getsubopt-susv3.c │ │ ├── getsubopt.c │ │ ├── pathconf.c │ │ ├── sleep.c │ │ ├── swab.c │ │ ├── sysconf.c │ │ ├── ualarm.c │ │ ├── usershell.c │ │ └── usleep.c │ ├── libcrypt │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ ├── crypt.c │ ├── des.c │ ├── libcrypt.h │ └── md5.c │ ├── libintl │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ └── intl.c │ ├── libm │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ ├── README │ ├── carg.c │ ├── e_acos.c │ ├── e_acosh.c │ ├── e_asin.c │ ├── e_atan2.c │ ├── e_atanh.c │ ├── e_cosh.c │ ├── e_exp.c │ ├── e_fmod.c │ ├── e_gamma.c │ ├── e_gamma_r.c │ ├── e_hypot.c │ ├── e_j0.c │ ├── e_j1.c │ ├── e_jn.c │ ├── e_lgamma.c │ ├── e_lgamma_r.c │ ├── e_log.c │ ├── e_log10.c │ ├── e_pow.c │ ├── e_rem_pio2.c │ ├── e_remainder.c │ ├── e_scalb.c │ ├── e_sinh.c │ ├── e_sqrt.c │ ├── fenv.c │ ├── float_wrappers.c │ ├── fp_private.h │ ├── fpmacros.c │ ├── k_cos.c │ ├── k_rem_pio2.c │ ├── k_sin.c │ ├── k_standard.c │ ├── k_tan.c │ ├── libm_stubs.c │ ├── math_private.h │ ├── nan.c │ ├── powerpc │ │ ├── classic │ │ │ ├── Makefile.arch │ │ │ ├── s_ceil.c │ │ │ ├── s_copysign.c │ │ │ ├── s_floor.c │ │ │ ├── s_frexp.c │ │ │ ├── s_ldexp.c │ │ │ ├── s_logb.c │ │ │ ├── s_modf.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_trunc.c │ │ │ └── w_scalb.c │ │ └── e500 │ │ │ ├── Makefile.arch │ │ │ ├── README.txt │ │ │ ├── fpu │ │ │ ├── Makefile.arch │ │ │ ├── fclrexcpt.c │ │ │ ├── fe_nomask.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_const.c │ │ │ ├── fenv_libc.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ └── ftestexcept.c │ │ │ └── spe-raise.c │ ├── s_asinh.c │ ├── s_atan.c │ ├── s_cbrt.c │ ├── s_ceil.c │ ├── s_copysign.c │ ├── s_cos.c │ ├── s_erf.c │ ├── s_expm1.c │ ├── s_fabs.c │ ├── s_finite.c │ ├── s_floor.c │ ├── s_frexp.c │ ├── s_ilogb.c │ ├── s_ldexp.c │ ├── s_lib_version.c │ ├── s_llrint.c │ ├── s_llround.c │ ├── s_log1p.c │ ├── s_logb.c │ ├── s_lrint.c │ ├── s_lround.c │ ├── s_matherr.c │ ├── s_modf.c │ ├── s_nextafter.c │ ├── s_rint.c │ ├── s_round.c │ ├── s_scalbn.c │ ├── s_signgam.c │ ├── s_significand.c │ ├── s_sin.c │ ├── s_tan.c │ ├── s_tanh.c │ ├── s_trunc.c │ ├── sincos.c │ ├── w_acos.c │ ├── w_acosh.c │ ├── w_asin.c │ ├── w_atan2.c │ ├── w_atanh.c │ ├── w_cabs.c │ ├── w_cosh.c │ ├── w_drem.c │ ├── w_exp.c │ ├── w_fmod.c │ ├── w_gamma.c │ ├── w_gamma_r.c │ ├── w_hypot.c │ ├── w_j0.c │ ├── w_j1.c │ ├── w_jn.c │ ├── w_lgamma.c │ ├── w_lgamma_r.c │ ├── w_log.c │ ├── w_log10.c │ ├── w_pow.c │ ├── w_remainder.c │ ├── w_scalb.c │ ├── w_sinh.c │ └── w_sqrt.c │ ├── libnsl │ ├── Makefile │ ├── Makefile.in │ └── nsl.c │ ├── libpthread │ ├── Makefile │ ├── Makefile.in │ ├── linuxthreads.old │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── attr.c │ │ ├── cancel.c │ │ ├── condvar.c │ │ ├── debug.h │ │ ├── errno.c │ │ ├── events.c │ │ ├── forward.c │ │ ├── internals.h │ │ ├── join.c │ │ ├── libc_pthread_init.c │ │ ├── linuxthreads.texi │ │ ├── locale.c │ │ ├── lockfile.c │ │ ├── manager.c │ │ ├── mutex.c │ │ ├── oldsemaphore.c │ │ ├── pt-machine.c │ │ ├── ptfork.c │ │ ├── pthread.c │ │ ├── ptlongjmp.c │ │ ├── queue.h │ │ ├── restart.h │ │ ├── rwlock.c │ │ ├── semaphore.c │ │ ├── semaphore.h │ │ ├── signals.c │ │ ├── specific.c │ │ ├── spinlock.c │ │ ├── spinlock.h │ │ ├── sysdeps │ │ │ ├── alpha │ │ │ │ └── pt-machine.h │ │ │ ├── arm │ │ │ │ └── pt-machine.h │ │ │ ├── bfin │ │ │ │ └── pt-machine.h │ │ │ ├── cris │ │ │ │ └── pt-machine.h │ │ │ ├── frv │ │ │ │ └── pt-machine.h │ │ │ ├── h8300 │ │ │ │ └── pt-machine.h │ │ │ ├── i386 │ │ │ │ ├── pt-machine.h │ │ │ │ ├── tls.h │ │ │ │ └── useldt.h │ │ │ ├── ia64 │ │ │ │ ├── pt-machine.h │ │ │ │ └── tls.h │ │ │ ├── m68k │ │ │ │ └── pt-machine.h │ │ │ ├── mips │ │ │ │ └── pt-machine.h │ │ │ ├── nios │ │ │ │ └── pt-machine.h │ │ │ ├── nios2 │ │ │ │ └── pt-machine.h │ │ │ ├── powerpc │ │ │ │ └── pt-machine.h │ │ │ ├── pthread │ │ │ │ ├── bits │ │ │ │ │ ├── libc-lock.h │ │ │ │ │ ├── libc-tsd.h │ │ │ │ │ └── pthreadtypes.h │ │ │ │ ├── pthread-functions.h │ │ │ │ ├── pthread.h │ │ │ │ └── tls.h │ │ │ ├── sh │ │ │ │ ├── pt-machine.h │ │ │ │ └── tls.h │ │ │ ├── sh64 │ │ │ │ ├── Makefile.arch │ │ │ │ ├── pt-machine.c │ │ │ │ └── pt-machine.h │ │ │ ├── sparc │ │ │ │ ├── pt-machine.h │ │ │ │ ├── sparc32 │ │ │ │ │ └── pt-machine.h │ │ │ │ └── sparc64 │ │ │ │ │ └── pt-machine.h │ │ │ ├── v850 │ │ │ │ └── pt-machine.h │ │ │ └── x86_64 │ │ │ │ ├── pt-machine.h │ │ │ │ └── tls.h │ │ └── wrapsyscall.c │ ├── linuxthreads.old_db │ │ ├── Banner │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Versions │ │ ├── proc_service.h │ │ ├── td_init.c │ │ ├── td_log.c │ │ ├── td_symbol_list.c │ │ ├── td_ta_clear_event.c │ │ ├── td_ta_delete.c │ │ ├── td_ta_enable_stats.c │ │ ├── td_ta_event_addr.c │ │ ├── td_ta_event_getmsg.c │ │ ├── td_ta_get_nthreads.c │ │ ├── td_ta_get_ph.c │ │ ├── td_ta_get_stats.c │ │ ├── td_ta_map_id2thr.c │ │ ├── td_ta_map_lwp2thr.c │ │ ├── td_ta_new.c │ │ ├── td_ta_reset_stats.c │ │ ├── td_ta_set_event.c │ │ ├── td_ta_setconcurrency.c │ │ ├── td_ta_thr_iter.c │ │ ├── td_ta_tsd_iter.c │ │ ├── td_thr_clear_event.c │ │ ├── td_thr_dbresume.c │ │ ├── td_thr_dbsuspend.c │ │ ├── td_thr_event_enable.c │ │ ├── td_thr_event_getmsg.c │ │ ├── td_thr_get_info.c │ │ ├── td_thr_getfpregs.c │ │ ├── td_thr_getgregs.c │ │ ├── td_thr_getxregs.c │ │ ├── td_thr_getxregsize.c │ │ ├── td_thr_set_event.c │ │ ├── td_thr_setfpregs.c │ │ ├── td_thr_setgregs.c │ │ ├── td_thr_setprio.c │ │ ├── td_thr_setsigpending.c │ │ ├── td_thr_setxregs.c │ │ ├── td_thr_sigsetmask.c │ │ ├── td_thr_tls_get_addr.c │ │ ├── td_thr_tsd.c │ │ ├── td_thr_validate.c │ │ ├── thread_db.h │ │ └── thread_dbP.h │ ├── linuxthreads │ │ ├── .cvsignore │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── alloca_cutoff.c │ │ ├── attr.c │ │ ├── barrier.c │ │ ├── cancel.c │ │ ├── condvar.c │ │ ├── descr.h │ │ ├── errno.c │ │ ├── events.c │ │ ├── forward.c │ │ ├── internals.h │ │ ├── join.c │ │ ├── libc-cancellation.c │ │ ├── libc_pthread_init.c │ │ ├── lockfile.c │ │ ├── manager.c │ │ ├── mutex.c │ │ ├── pt-machine.c │ │ ├── ptcleanup.c │ │ ├── ptclock_gettime.c │ │ ├── ptclock_settime.c │ │ ├── ptfork.c │ │ ├── pthandles.c │ │ ├── pthread.c │ │ ├── pthread_atfork.c │ │ ├── pthread_setegid.c │ │ ├── pthread_seteuid.c │ │ ├── pthread_setgid.c │ │ ├── pthread_setregid.c │ │ ├── pthread_setresgid.c │ │ ├── pthread_setresuid.c │ │ ├── pthread_setreuid.c │ │ ├── pthread_setuid.c │ │ ├── queue.h │ │ ├── restart.h │ │ ├── rwlock.c │ │ ├── semaphore.c │ │ ├── semaphore.h │ │ ├── sighandler.c │ │ ├── signals.c │ │ ├── specific.c │ │ ├── spinlock.c │ │ ├── spinlock.h │ │ └── sysdeps │ │ │ ├── alpha │ │ │ ├── elf │ │ │ │ └── pt-initfini.c │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ └── tls.h │ │ │ ├── arm │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ └── tls.h │ │ │ ├── cris │ │ │ ├── pspinlock.c │ │ │ └── pt-machine.h │ │ │ ├── hppa │ │ │ ├── pspinlock.c │ │ │ └── pt-machine.h │ │ │ ├── i386 │ │ │ ├── i686 │ │ │ │ └── pt-machine.h │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ ├── tls.h │ │ │ └── useldt.h │ │ │ ├── ia64 │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ │ ├── m68k │ │ │ ├── pspinlock.c │ │ │ └── pt-machine.h │ │ │ ├── mips │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ └── tls.h │ │ │ ├── powerpc │ │ │ ├── powerpc32 │ │ │ │ ├── pspinlock.c │ │ │ │ └── pt-machine.h │ │ │ ├── powerpc64 │ │ │ │ ├── pspinlock.c │ │ │ │ └── pt-machine.h │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ │ ├── pthread │ │ │ ├── .cvsignore │ │ │ ├── bits │ │ │ │ ├── initspin.h │ │ │ │ ├── libc-lock.h │ │ │ │ ├── libc-tsd.h │ │ │ │ ├── pthreadtypes.h │ │ │ │ └── typesizes.h │ │ │ ├── errno-loc.c │ │ │ ├── flockfile.c │ │ │ ├── ftrylockfile.c │ │ │ ├── funlockfile.c │ │ │ ├── getcpuclockid.c │ │ │ ├── herrno-loc.c │ │ │ ├── kernel-features.h │ │ │ ├── list.h │ │ │ ├── malloc-machine.h │ │ │ ├── not-cancel.h │ │ │ ├── posix-timer.h │ │ │ ├── pt-initfini.c │ │ │ ├── pthread-functions.h │ │ │ ├── pthread.h │ │ │ ├── ptlongjmp.c │ │ │ ├── res-state.c │ │ │ ├── semaphore.h │ │ │ ├── sigaction.c │ │ │ ├── tcb-offsets.h │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverr.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_routines.c │ │ │ ├── timer_settime.c │ │ │ ├── tst-timer.c │ │ │ └── uClibc-glue.h │ │ │ ├── s390 │ │ │ ├── pspinlock.c │ │ │ ├── s390-32 │ │ │ │ └── pt-machine.h │ │ │ ├── s390-64 │ │ │ │ └── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ │ ├── sh │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ │ ├── sparc │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ ├── sparc32 │ │ │ │ ├── pspinlock.c │ │ │ │ ├── pt-machine.h │ │ │ │ └── sparcv9 │ │ │ │ │ └── pspinlock.c │ │ │ ├── sparc64 │ │ │ │ ├── pspinlock.c │ │ │ │ └── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ │ ├── unix │ │ │ └── sysv │ │ │ │ └── linux │ │ │ │ ├── .cvsignore │ │ │ │ ├── allocalim.h │ │ │ │ ├── allocrtsig.c │ │ │ │ ├── alpha │ │ │ │ ├── aio_cancel.c │ │ │ │ ├── bits │ │ │ │ │ ├── local_lim.h │ │ │ │ │ └── typesizes.h │ │ │ │ ├── pt-sigsuspend.S │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── execve.c │ │ │ │ ├── fork.c │ │ │ │ ├── fork.h │ │ │ │ ├── hppa │ │ │ │ ├── aio_cancel.c │ │ │ │ ├── bits │ │ │ │ │ └── initspin.h │ │ │ │ ├── malloc-machine.h │ │ │ │ ├── pt-initfini.c │ │ │ │ └── sysdep-cancel.h │ │ │ │ ├── i386 │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── ia64 │ │ │ │ ├── bits │ │ │ │ │ └── local_lim.h │ │ │ │ ├── fork.h │ │ │ │ ├── pt-initfini.c │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── jmp-unwind.c │ │ │ │ ├── m68k │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── mips │ │ │ │ ├── mips64 │ │ │ │ │ └── sysdep-cancel.h │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── mq_notify.c │ │ │ │ ├── powerpc │ │ │ │ ├── powerpc32 │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ ├── powerpc64 │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ └── ptlongjmp.c │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ ├── raise.c │ │ │ │ ├── register-atfork.c │ │ │ │ ├── s390 │ │ │ │ ├── bits │ │ │ │ │ └── typesizes.h │ │ │ │ ├── s390-32 │ │ │ │ │ ├── pt-initfini.c │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ └── s390-64 │ │ │ │ │ ├── pt-initfini.c │ │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ ├── sh │ │ │ │ ├── pt-initfini.c │ │ │ │ ├── smp.h │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ │ ├── sigwait.c │ │ │ │ ├── smp.h │ │ │ │ ├── sparc │ │ │ │ ├── aio_cancel.c │ │ │ │ ├── bits │ │ │ │ │ ├── local_lim.h │ │ │ │ │ └── typesizes.h │ │ │ │ ├── fork.h │ │ │ │ ├── sparc32 │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ └── sparc64 │ │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ │ ├── sysdep-cancel.h │ │ │ │ │ └── vfork.S │ │ │ │ ├── unregister-atfork.c │ │ │ │ └── x86_64 │ │ │ │ ├── pt-sigsuspend.c │ │ │ │ ├── sysdep-cancel.h │ │ │ │ └── vfork.S │ │ │ └── x86_64 │ │ │ ├── pspinlock.c │ │ │ ├── pt-machine.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ └── linuxthreads_db │ │ ├── .cvsignore │ │ ├── Banner │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefile.old │ │ ├── Versions │ │ ├── proc_service.h │ │ ├── shlib-versions │ │ ├── td_init.c │ │ ├── td_log.c │ │ ├── td_symbol_list.c │ │ ├── td_ta_clear_event.c │ │ ├── td_ta_delete.c │ │ ├── td_ta_enable_stats.c │ │ ├── td_ta_event_addr.c │ │ ├── td_ta_event_getmsg.c │ │ ├── td_ta_get_nthreads.c │ │ ├── td_ta_get_ph.c │ │ ├── td_ta_get_stats.c │ │ ├── td_ta_map_id2thr.c │ │ ├── td_ta_map_lwp2thr.c │ │ ├── td_ta_new.c │ │ ├── td_ta_reset_stats.c │ │ ├── td_ta_set_event.c │ │ ├── td_ta_setconcurrency.c │ │ ├── td_ta_thr_iter.c │ │ ├── td_ta_tsd_iter.c │ │ ├── td_thr_clear_event.c │ │ ├── td_thr_dbresume.c │ │ ├── td_thr_dbsuspend.c │ │ ├── td_thr_event_enable.c │ │ ├── td_thr_event_getmsg.c │ │ ├── td_thr_get_info.c │ │ ├── td_thr_getfpregs.c │ │ ├── td_thr_getgregs.c │ │ ├── td_thr_getxregs.c │ │ ├── td_thr_getxregsize.c │ │ ├── td_thr_set_event.c │ │ ├── td_thr_setfpregs.c │ │ ├── td_thr_setgregs.c │ │ ├── td_thr_setprio.c │ │ ├── td_thr_setsigpending.c │ │ ├── td_thr_setxregs.c │ │ ├── td_thr_sigsetmask.c │ │ ├── td_thr_tls_get_addr.c │ │ ├── td_thr_tlsbase.c │ │ ├── td_thr_tsd.c │ │ ├── td_thr_validate.c │ │ ├── thread_db.h │ │ └── thread_dbP.h │ ├── libresolv │ ├── Makefile │ ├── Makefile.in │ └── resolv.c │ ├── librt │ ├── Makefile │ ├── Makefile.in │ ├── kernel-posix-timers.h │ ├── mq_close.c │ ├── mq_getsetattr.c │ ├── mq_notify.c │ ├── mq_open.c │ ├── mq_receive.c │ ├── mq_send.c │ ├── mq_unlink.c │ ├── timer_create.c │ ├── timer_delete.c │ ├── timer_getoverr.c │ ├── timer_gettime.c │ └── timer_settime.c │ ├── libutil │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ ├── forkpty.c │ ├── login.c │ ├── login_tty.c │ ├── logout.c │ ├── logwtmp.c │ └── openpty.c │ ├── test │ ├── Makefile │ ├── README │ ├── Rules.mak │ ├── Test.mak │ ├── args │ │ ├── Makefile │ │ ├── arg_test.c │ │ ├── arg_test.out.good │ │ └── arg_test_glibc.out.good │ ├── assert │ │ ├── Makefile │ │ └── assert.c │ ├── build │ │ ├── Makefile │ │ └── check_config_options.sh │ ├── crypt │ │ ├── Makefile │ │ ├── crypt.c │ │ ├── crypt.input │ │ ├── crypt.out.good │ │ └── md5c-test.c │ ├── ctype │ │ ├── Makefile │ │ └── ctype.c │ ├── dlopen │ │ ├── Makefile │ │ ├── dlafk.c │ │ ├── dlstatic.c │ │ ├── dltest.c │ │ ├── dltest2.c │ │ ├── dlundef.c │ │ ├── libafk-temp.c │ │ ├── libafk.c │ │ ├── libstatic.c │ │ ├── libtest.c │ │ ├── libtest1.c │ │ ├── libtest2.c │ │ ├── libtest3.c │ │ ├── libundef.c │ │ ├── test1.c │ │ ├── test2.c │ │ └── test3.c │ ├── inet │ │ ├── Makefile │ │ ├── bug-if1.c │ │ ├── if_nameindex.c │ │ ├── tst-aton.c │ │ ├── tst-network.c │ │ └── tst-ntoa.c │ ├── malloc │ │ ├── Makefile │ │ ├── malloc-standard-alignment.c │ │ ├── malloc.c │ │ ├── mallocbug.c │ │ ├── realloc-can-shrink.c │ │ ├── realloc0.c │ │ ├── testmalloc.c │ │ ├── time_malloc.c │ │ ├── tst-calloc.c │ │ ├── tst-malloc.c │ │ ├── tst-mallocfork.c │ │ ├── tst-mcheck.c │ │ ├── tst-obstack.c │ │ └── tst-valloc.c │ ├── math │ │ ├── Makefile │ │ ├── basic-test.c │ │ ├── fenv.h │ │ ├── gen-libm-test.pl │ │ ├── libm-test.inc │ │ ├── rint.c │ │ ├── test-double.c │ │ ├── test-float.c │ │ ├── test-fpucw.c │ │ ├── test-idouble.c │ │ ├── test-ifloat.c │ │ ├── test-ildoubl.c │ │ ├── test-ldouble.c │ │ └── tst-definitions.c │ ├── misc │ │ ├── Makefile │ │ ├── bug-glob1.c │ │ ├── bug-glob2.c │ │ ├── bug-readdir1.c │ │ ├── dirent.c │ │ ├── dirent64.c │ │ ├── fdopen.c │ │ ├── opendir-tst1.c │ │ ├── outb.c │ │ ├── popen.c │ │ ├── seek.c │ │ ├── sem.c │ │ ├── stdarg.c │ │ ├── tst-fnmatch.c │ │ ├── tst-fnmatch.input │ │ ├── tst-gnuglob.c │ │ ├── tst-seekdir.c │ │ └── tst-utmp.c │ ├── mmap │ │ ├── Makefile │ │ ├── mmap.c │ │ └── mmap64.c │ ├── pthread │ │ ├── Makefile │ │ ├── ex1.c │ │ ├── ex2.c │ │ ├── ex3.c │ │ ├── ex4.c │ │ ├── ex5.c │ │ ├── ex6.c │ │ ├── ex7.c │ │ └── tst-too-many-cleanups.c │ ├── pwd_grp │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── getgroups.c │ │ ├── grcat.c │ │ ├── pwcat.c │ │ ├── test_grp.c │ │ └── test_pwd.c │ ├── regex │ │ ├── .regex.ChangeLog.14 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── basic.dat │ │ ├── categorize.dat │ │ ├── forcedassoc.dat │ │ ├── interpretation.dat │ │ ├── leftassoc.dat │ │ ├── nullsubexpr.dat │ │ ├── repetition.dat │ │ ├── rightassoc.dat │ │ ├── testregex.c │ │ ├── testregexc.c │ │ ├── testregexf.c │ │ ├── testregexi.c │ │ ├── testregexl.c │ │ ├── testregexn.c │ │ ├── testregexp.c │ │ ├── testregexr.c │ │ ├── tst-regex2.c │ │ └── tst-regexloc.c │ ├── rpc │ │ ├── Makefile │ │ ├── getrpcent.c │ │ └── getrpcent_r.c │ ├── setjmp │ │ ├── Makefile │ │ ├── bug269-setjmp.c │ │ ├── jmpbug.c │ │ ├── sigjmpbug.c │ │ ├── tst-setjmp.c │ │ └── tst-vfork-longjmp.c │ ├── signal │ │ ├── .indent.pro │ │ ├── Makefile │ │ ├── sigchld.c │ │ ├── signal.c │ │ ├── tst-raise.c │ │ ├── tst-signal.c │ │ ├── tst-sigset.c │ │ └── tst-sigsimple.c │ ├── silly │ │ ├── Makefile │ │ ├── hello.c │ │ └── tiny.c │ ├── stat │ │ ├── Makefile │ │ ├── memcmp-stat.c │ │ ├── stat.c │ │ └── stat64.c │ ├── stdio │ │ ├── 64bit.c │ │ ├── Makefile │ │ └── fclose-loop.c │ ├── stdlib │ │ ├── Makefile │ │ ├── ptytest.c │ │ ├── qsort.c │ │ ├── test-canon.c │ │ ├── testatexit.c │ │ ├── teston_exit.c │ │ └── teststrtol.c │ ├── string │ │ ├── Makefile │ │ ├── bug-strcoll1.c │ │ ├── bug-strncat1.c │ │ ├── bug-strpbrk1.c │ │ ├── bug-strspn1.c │ │ ├── stratcliff.c │ │ ├── test-ffs.c │ │ ├── testcopy.c │ │ ├── tester.c │ │ ├── tst-bswap.c │ │ ├── tst-inlcall.c │ │ ├── tst-strlen.c │ │ ├── tst-strtok.c │ │ └── tst-strxfrm.c │ ├── termios │ │ ├── Makefile │ │ └── termios.c │ ├── test-skeleton.c │ ├── testsuite.h │ ├── time │ │ ├── Makefile │ │ ├── bug-asctime.c │ │ ├── bug-asctime_r.c │ │ ├── clocktest.c │ │ ├── test_time.c │ │ ├── time.c │ │ ├── tst-ftime_l.c │ │ ├── tst-mktime.c │ │ ├── tst-mktime2.c │ │ ├── tst-mktime3.c │ │ ├── tst-posixtz.c │ │ ├── tst-strftime.c │ │ ├── tst-strptime.c │ │ ├── tst-strptime2.c │ │ ├── tst-timezone.c │ │ └── tst_wcsftime.c │ └── unistd │ │ ├── Makefile │ │ ├── clone.c │ │ ├── clone_cruft.h │ │ ├── errno.c │ │ ├── fork.c │ │ ├── getcwd.c │ │ ├── getopt.c │ │ ├── getopt_long.c │ │ ├── tst-preadwrite.c │ │ ├── tst-preadwrite64.c │ │ ├── tstgetopt.c │ │ └── vfork.c │ └── utils │ ├── Makefile │ ├── Makefile.in │ ├── Makefrag │ ├── bswap.h │ ├── chroot_realpath.c │ ├── ldconfig.c │ ├── ldd.c │ ├── readelf.c │ └── readsoname2.c ├── test ├── Makefrag ├── btree │ ├── Makefrag │ ├── biter.c │ ├── biter.h │ ├── bnode.c │ ├── bnode.h │ ├── btree.c │ ├── btree.h │ ├── bxutil.c │ ├── bxutil.h │ ├── delete.c │ ├── desc.c │ ├── desc.h │ ├── error.h │ ├── insert.c │ ├── search.c │ ├── sys.h │ └── verify.c ├── btree2-sys.c ├── btree2-test.cc ├── disk-test.cc ├── disk.cc ├── disk.hh ├── fileclient-test.cc ├── fileserver-test.cc ├── flume-hello.c ├── flume-hellorun.c ├── httpd-test.cc ├── josenv.hh ├── lock.cc ├── mem.cc ├── misc.cc ├── rand.cc ├── rand.hh ├── sock_client.cc └── ssl-bench.cc ├── tools ├── dj-bench.sh ├── dj-httpd-setup.sh ├── dj-max-average.pl ├── ipmi_restart.batch ├── ipmicli.x86_64 └── profile-process.pl ├── uinc ├── asm │ ├── errno.h │ ├── ioctl.h │ ├── ioctls.h │ ├── param.h │ ├── socket.h │ └── types.h ├── bits │ ├── initspin.h │ ├── libc-tsd.h │ ├── local_lim.h │ ├── pthreadtypes.h │ ├── setjmp.h │ ├── sigcontext.h │ ├── signalgate.h │ ├── signum.h │ ├── stropts.h │ ├── types.h │ ├── uClibc_arch_features.h │ ├── uClibc_config.h │ ├── uClibc_local_lim.h │ ├── uClibc_locale_data.h │ ├── uClibc_pthread.h │ └── unimpl.h ├── execinfo.h ├── fenv.h ├── ldso │ └── dl-syscall.h ├── linux │ ├── agpgart.h │ ├── fb.h │ ├── if.h │ ├── if_ether.h │ ├── if_tun.h │ ├── kd.h │ ├── netlink.h │ ├── param.h │ ├── parport.h │ ├── ppdev.h │ ├── rtc.h │ ├── rtnetlink.h │ ├── usbdevice_fs.h │ ├── version.h │ └── vt.h ├── login_cap.h ├── sys │ ├── param.h │ ├── stropts.h │ └── syscall.h ├── syslimits.h ├── termios │ └── kernel_termios.h └── tls.h └── user ├── Makefrag ├── a2psbench.cc ├── adduser.cc ├── admctl.cc ├── admind.cc ├── asprint.c ├── asynct0.cc ├── asynct1.cc ├── auth_dir.cc ├── auth_log.cc ├── auth_user.cc ├── chatter1.c ├── chatter2.c ├── chroot.cc ├── clamwrap.cc ├── coopclnt.cc ├── coopserv.cc ├── cpphello.cc ├── db.cc ├── dbc.cc ├── dirbase-test.c ├── dnstest.c ├── execbench.c ├── fa.x ├── fa_clnt.cc ├── fa_srv.cc ├── fbconsd.cc ├── fdtest.cc ├── fetch.cc ├── forktest.c ├── fptest.c ├── freelist_test.c ├── fsmerge.cc ├── gl.c ├── gsbench.cc ├── hello.c ├── idle.c ├── init.cc ├── init.sh ├── ipcbench.c ├── jcp.c ├── jdate.c ├── jenv.c ├── jls.c ├── jmkdir.c ├── jmptest.c ├── jmv.c ├── jntpd.c ├── jrm.c ├── jshell.cc ├── jsync.c ├── jtrace.c ├── jtrue.c ├── lfs_large.c ├── lfs_small.c ├── login.cc ├── mkmlt.c ├── mlt.c ├── mount.c ├── moused.cc ├── netd.cc ├── netd_mom.cc ├── netd_vpn.cc ├── netwatch.c ├── newpty.c ├── passwd.cc ├── pftest.c ├── privtest.cc ├── proxyd.cc ├── proxytest.cc ├── ps.c ├── rbac_role.cc ├── rbac_trans0.cc ├── readtest.c ├── reboot.c ├── rolemod.cc ├── runas.cc ├── sock_bench.cc ├── socktest.c ├── spawn.cc ├── spawnbench.cc ├── spin.c ├── sshdi.cc ├── stacktest.c ├── syscallbench.c ├── taintcat.c ├── tclnt.c ├── tcpserv.c ├── tcpsink.cc ├── telnetd.cc ├── thread_test.c ├── tserv.c ├── uadm.cc ├── umount.c ├── ureboot.cc ├── uregtest.S ├── vesatest.cc ├── vpn_start.cc ├── wallbang.cc ├── wrap.cc └── xorg.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/COPYING -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/GNUmakefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/README -------------------------------------------------------------------------------- /README.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/README.arm -------------------------------------------------------------------------------- /README.fpga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/README.fpga -------------------------------------------------------------------------------- /README.sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/README.sparc -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/TODO -------------------------------------------------------------------------------- /acpkg/.gitignore: -------------------------------------------------------------------------------- 1 | distcache 2 | -------------------------------------------------------------------------------- /acpkg/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/acpkg/Makefrag -------------------------------------------------------------------------------- /acpkg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/acpkg/config.guess -------------------------------------------------------------------------------- /acpkg/patches/empty.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/Makefrag -------------------------------------------------------------------------------- /boot/bootother.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/bootother.S -------------------------------------------------------------------------------- /boot/bsdata.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/bsdata.S -------------------------------------------------------------------------------- /boot/code16gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/code16gcc.h -------------------------------------------------------------------------------- /boot/csetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/csetup.c -------------------------------------------------------------------------------- /boot/isolinux.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/isolinux.bin -------------------------------------------------------------------------------- /boot/pad.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/pad.pl -------------------------------------------------------------------------------- /boot/partinit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/partinit.pl -------------------------------------------------------------------------------- /boot/setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/setup.S -------------------------------------------------------------------------------- /boot/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/boot/syslinux.cfg -------------------------------------------------------------------------------- /conf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/.gitignore -------------------------------------------------------------------------------- /conf/Makefrag.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/Makefrag.amd64 -------------------------------------------------------------------------------- /conf/Makefrag.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/Makefrag.arm -------------------------------------------------------------------------------- /conf/Makefrag.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/Makefrag.i386 -------------------------------------------------------------------------------- /conf/Makefrag.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/Makefrag.llvm -------------------------------------------------------------------------------- /conf/Makefrag.sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/Makefrag.sparc -------------------------------------------------------------------------------- /conf/Makefrag.um: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/Makefrag.um -------------------------------------------------------------------------------- /conf/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/config.mk -------------------------------------------------------------------------------- /conf/embedbin/dj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/embedbin/dj.mk -------------------------------------------------------------------------------- /conf/embedbin/empty.mk: -------------------------------------------------------------------------------- 1 | KERN_BINFILES := 2 | INITTAB_ENTRIES := 3 | -------------------------------------------------------------------------------- /conf/embedbin/tiny.mk: -------------------------------------------------------------------------------- 1 | KERN_BINFILES := user/init 2 | INITTAB_ENTRIES := 3 | -------------------------------------------------------------------------------- /conf/gcc-flags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/gcc-flags.sh -------------------------------------------------------------------------------- /conf/gcc.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/gcc.specs -------------------------------------------------------------------------------- /conf/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/gpl-2.0.txt -------------------------------------------------------------------------------- /conf/ldso.dynlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/ldso.dynlist -------------------------------------------------------------------------------- /conf/qemu-movd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/qemu-movd.patch -------------------------------------------------------------------------------- /conf/sample-bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/sample-bochsrc -------------------------------------------------------------------------------- /conf/sample-gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/sample-gdbinit -------------------------------------------------------------------------------- /conf/sample-qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/conf/sample-qemu.sh -------------------------------------------------------------------------------- /conf/sample.gdbinit: -------------------------------------------------------------------------------- 1 | target remote localhost:9699 2 | -------------------------------------------------------------------------------- /dj/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/Makefrag -------------------------------------------------------------------------------- /dj/aperlclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/aperlclient.cc -------------------------------------------------------------------------------- /dj/attic/catdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/attic/catdir.c -------------------------------------------------------------------------------- /dj/attic/catdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/attic/catdir.h -------------------------------------------------------------------------------- /dj/attic/globalcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/attic/globalcat.h -------------------------------------------------------------------------------- /dj/attic/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/attic/share.h -------------------------------------------------------------------------------- /dj/bcast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/bcast.cc -------------------------------------------------------------------------------- /dj/bcast.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/bcast.hh -------------------------------------------------------------------------------- /dj/catmgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/catmgr.cc -------------------------------------------------------------------------------- /dj/catmgr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/catmgr.hh -------------------------------------------------------------------------------- /dj/checkpoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/checkpoint.cc -------------------------------------------------------------------------------- /dj/checkpoint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/checkpoint.hh -------------------------------------------------------------------------------- /dj/cryptconn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/cryptconn.cc -------------------------------------------------------------------------------- /dj/cryptconn.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/cryptconn.hh -------------------------------------------------------------------------------- /dj/ctallocd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/ctallocd.cc -------------------------------------------------------------------------------- /dj/delegator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/delegator.cc -------------------------------------------------------------------------------- /dj/delegator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/delegator.hh -------------------------------------------------------------------------------- /dj/directexec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/directexec.cc -------------------------------------------------------------------------------- /dj/directexec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/directexec.hh -------------------------------------------------------------------------------- /dj/djarpc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djarpc.cc -------------------------------------------------------------------------------- /dj/djarpc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djarpc.hh -------------------------------------------------------------------------------- /dj/djauthproxy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djauthproxy.cc -------------------------------------------------------------------------------- /dj/djautorpc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djautorpc.hh -------------------------------------------------------------------------------- /dj/djc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djc.cc -------------------------------------------------------------------------------- /dj/djcache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djcache.cc -------------------------------------------------------------------------------- /dj/djcache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djcache.hh -------------------------------------------------------------------------------- /dj/djd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djd.cc -------------------------------------------------------------------------------- /dj/djdebug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djdebug.cc -------------------------------------------------------------------------------- /dj/djdebug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djdebug.hh -------------------------------------------------------------------------------- /dj/djdumpd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djdumpd.cc -------------------------------------------------------------------------------- /dj/djechod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djechod.cc -------------------------------------------------------------------------------- /dj/djflume.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djflume.cc -------------------------------------------------------------------------------- /dj/djflume.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djflume.hh -------------------------------------------------------------------------------- /dj/djfs.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djfs.x -------------------------------------------------------------------------------- /dj/djfs_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djfs_posix.cc -------------------------------------------------------------------------------- /dj/djfs_posix.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djfs_posix.hh -------------------------------------------------------------------------------- /dj/djfsd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djfsd.cc -------------------------------------------------------------------------------- /dj/djgate.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djgate.x -------------------------------------------------------------------------------- /dj/djgatesrv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djgatesrv.cc -------------------------------------------------------------------------------- /dj/djgatesrv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djgatesrv.hh -------------------------------------------------------------------------------- /dj/djguardcall.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djguardcall.cc -------------------------------------------------------------------------------- /dj/djkey.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djkey.cc -------------------------------------------------------------------------------- /dj/djkey.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djkey.hh -------------------------------------------------------------------------------- /dj/djlabel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djlabel.cc -------------------------------------------------------------------------------- /dj/djlabel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djlabel.hh -------------------------------------------------------------------------------- /dj/djlogin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djlogin.cc -------------------------------------------------------------------------------- /dj/djmeasure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djmeasure.cc -------------------------------------------------------------------------------- /dj/djops.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djops.hh -------------------------------------------------------------------------------- /dj/djperld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djperld.cc -------------------------------------------------------------------------------- /dj/djprot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djprot.cc -------------------------------------------------------------------------------- /dj/djprot.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djprot.hh -------------------------------------------------------------------------------- /dj/djprotx.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djprotx.x -------------------------------------------------------------------------------- /dj/djrpc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djrpc.hh -------------------------------------------------------------------------------- /dj/djrpcx.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djrpcx.x -------------------------------------------------------------------------------- /dj/djsrpc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djsrpc.hh -------------------------------------------------------------------------------- /dj/djsrpcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djsrpcc.cc -------------------------------------------------------------------------------- /dj/djsrpcs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djsrpcs.cc -------------------------------------------------------------------------------- /dj/djutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djutil.cc -------------------------------------------------------------------------------- /dj/djutil.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/djutil.hh -------------------------------------------------------------------------------- /dj/execmux.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/execmux.hh -------------------------------------------------------------------------------- /dj/gatecallstatus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gatecallstatus.cc -------------------------------------------------------------------------------- /dj/gatecallstatus.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gatecallstatus.hh -------------------------------------------------------------------------------- /dj/gateexec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gateexec.cc -------------------------------------------------------------------------------- /dj/gateexec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gateexec.hh -------------------------------------------------------------------------------- /dj/gateincoming.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gateincoming.cc -------------------------------------------------------------------------------- /dj/gateincoming.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gateincoming.hh -------------------------------------------------------------------------------- /dj/gatesender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gatesender.cc -------------------------------------------------------------------------------- /dj/gatesender.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/gatesender.hh -------------------------------------------------------------------------------- /dj/hsutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/hsutil.cc -------------------------------------------------------------------------------- /dj/hsutil.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/hsutil.hh -------------------------------------------------------------------------------- /dj/internalx.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/internalx.x -------------------------------------------------------------------------------- /dj/mapcreate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/mapcreate.cc -------------------------------------------------------------------------------- /dj/mapcreate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/mapcreate.hh -------------------------------------------------------------------------------- /dj/miscx.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/miscx.x -------------------------------------------------------------------------------- /dj/perf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/perf.hh -------------------------------------------------------------------------------- /dj/remote-run.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/remote-run.cc -------------------------------------------------------------------------------- /dj/reqcontext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/reqcontext.cc -------------------------------------------------------------------------------- /dj/reqcontext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/reqcontext.hh -------------------------------------------------------------------------------- /dj/stuff.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/dj/stuff.hh -------------------------------------------------------------------------------- /inc/admind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/admind.h -------------------------------------------------------------------------------- /inc/alignmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/alignmacro.h -------------------------------------------------------------------------------- /inc/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/arc4.h -------------------------------------------------------------------------------- /inc/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/arch.h -------------------------------------------------------------------------------- /inc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/assert.h -------------------------------------------------------------------------------- /inc/atomic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /inc/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/auth.h -------------------------------------------------------------------------------- /inc/authclnt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/authclnt.hh -------------------------------------------------------------------------------- /inc/authd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/authd.h -------------------------------------------------------------------------------- /inc/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/backtrace.h -------------------------------------------------------------------------------- /inc/backtracer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/backtracer.hh -------------------------------------------------------------------------------- /inc/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/base64.h -------------------------------------------------------------------------------- /inc/bf60.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/bf60.h -------------------------------------------------------------------------------- /inc/bipipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/bipipe.h -------------------------------------------------------------------------------- /inc/blowfish_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/blowfish_data.h -------------------------------------------------------------------------------- /inc/chardevs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/chardevs.h -------------------------------------------------------------------------------- /inc/cksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/cksum.h -------------------------------------------------------------------------------- /inc/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/container.h -------------------------------------------------------------------------------- /inc/cooperate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/cooperate.h -------------------------------------------------------------------------------- /inc/cooperate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/cooperate.hh -------------------------------------------------------------------------------- /inc/cpplabel.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/cpplabel.hh -------------------------------------------------------------------------------- /inc/db_schema.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/db_schema.hh -------------------------------------------------------------------------------- /inc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/debug.h -------------------------------------------------------------------------------- /inc/debug_gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/debug_gate.h -------------------------------------------------------------------------------- /inc/declassify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/declassify.h -------------------------------------------------------------------------------- /inc/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/device.h -------------------------------------------------------------------------------- /inc/devpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/devpt.h -------------------------------------------------------------------------------- /inc/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/elf.h -------------------------------------------------------------------------------- /inc/elf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/elf32.h -------------------------------------------------------------------------------- /inc/elf64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/elf64.h -------------------------------------------------------------------------------- /inc/errno.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/errno.hh -------------------------------------------------------------------------------- /inc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/error.h -------------------------------------------------------------------------------- /inc/error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/error.hh -------------------------------------------------------------------------------- /inc/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/fb.h -------------------------------------------------------------------------------- /inc/fbcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/fbcons.h -------------------------------------------------------------------------------- /inc/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/fd.h -------------------------------------------------------------------------------- /inc/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/features.h -------------------------------------------------------------------------------- /inc/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/fs.h -------------------------------------------------------------------------------- /inc/fs_dir.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/fs_dir.hh -------------------------------------------------------------------------------- /inc/gateclnt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/gateclnt.hh -------------------------------------------------------------------------------- /inc/gatefilesrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/gatefilesrv.h -------------------------------------------------------------------------------- /inc/gateinvoke.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/gateinvoke.hh -------------------------------------------------------------------------------- /inc/gateparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/gateparam.h -------------------------------------------------------------------------------- /inc/gatesrv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/gatesrv.hh -------------------------------------------------------------------------------- /inc/gccwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/gccwrap.h -------------------------------------------------------------------------------- /inc/groupclnt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/groupclnt.hh -------------------------------------------------------------------------------- /inc/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/hashtable.h -------------------------------------------------------------------------------- /inc/intmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/intmacro.h -------------------------------------------------------------------------------- /inc/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/ioctl.h -------------------------------------------------------------------------------- /inc/jcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/jcomm.h -------------------------------------------------------------------------------- /inc/jthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/jthread.h -------------------------------------------------------------------------------- /inc/jthread.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/jthread.hh -------------------------------------------------------------------------------- /inc/kbdcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/kbdcodes.h -------------------------------------------------------------------------------- /inc/kobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/kobj.h -------------------------------------------------------------------------------- /inc/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/label.h -------------------------------------------------------------------------------- /inc/labelutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/labelutil.h -------------------------------------------------------------------------------- /inc/labelutil.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/labelutil.hh -------------------------------------------------------------------------------- /inc/lfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/lfs.h -------------------------------------------------------------------------------- /inc/lfsimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/lfsimpl.h -------------------------------------------------------------------------------- /inc/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/lib.h -------------------------------------------------------------------------------- /inc/memlayout.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /inc/multisync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/multisync.h -------------------------------------------------------------------------------- /inc/netbench.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/netbench.hh -------------------------------------------------------------------------------- /inc/netd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/netd.h -------------------------------------------------------------------------------- /inc/netd_opnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/netd_opnum.h -------------------------------------------------------------------------------- /inc/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/netdev.h -------------------------------------------------------------------------------- /inc/nethelper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/nethelper.hh -------------------------------------------------------------------------------- /inc/ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/ntp.h -------------------------------------------------------------------------------- /inc/privstore.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/privstore.hh -------------------------------------------------------------------------------- /inc/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/process.h -------------------------------------------------------------------------------- /inc/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/prof.h -------------------------------------------------------------------------------- /inc/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/profiler.h -------------------------------------------------------------------------------- /inc/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/pty.h -------------------------------------------------------------------------------- /inc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/queue.h -------------------------------------------------------------------------------- /inc/rbac.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/rbac.hh -------------------------------------------------------------------------------- /inc/remfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/remfile.h -------------------------------------------------------------------------------- /inc/resalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/resalloc.h -------------------------------------------------------------------------------- /inc/safeint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/safeint.h -------------------------------------------------------------------------------- /inc/safetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/safetype.h -------------------------------------------------------------------------------- /inc/scopedprof.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/scopedprof.hh -------------------------------------------------------------------------------- /inc/scopeguard.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/scopeguard.hh -------------------------------------------------------------------------------- /inc/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/segment.h -------------------------------------------------------------------------------- /inc/segmentutil.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/segmentutil.hh -------------------------------------------------------------------------------- /inc/selftaint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/selftaint.hh -------------------------------------------------------------------------------- /inc/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/semaphore.h -------------------------------------------------------------------------------- /inc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/setjmp.h -------------------------------------------------------------------------------- /inc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/sha1.h -------------------------------------------------------------------------------- /inc/sigio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/sigio.h -------------------------------------------------------------------------------- /inc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/signal.h -------------------------------------------------------------------------------- /inc/sockfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/sockfd.h -------------------------------------------------------------------------------- /inc/spawn.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/spawn.hh -------------------------------------------------------------------------------- /inc/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/stack.h -------------------------------------------------------------------------------- /inc/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/stat.h -------------------------------------------------------------------------------- /inc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/stdio.h -------------------------------------------------------------------------------- /inc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/string.h -------------------------------------------------------------------------------- /inc/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/syscall.h -------------------------------------------------------------------------------- /inc/syscall_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/syscall_asm.h -------------------------------------------------------------------------------- /inc/syscall_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/syscall_num.h -------------------------------------------------------------------------------- /inc/taint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/taint.h -------------------------------------------------------------------------------- /inc/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/thread.h -------------------------------------------------------------------------------- /inc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/time.h -------------------------------------------------------------------------------- /inc/tun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/tun.h -------------------------------------------------------------------------------- /inc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/types.h -------------------------------------------------------------------------------- /inc/uds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/uds.h -------------------------------------------------------------------------------- /inc/udsimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/udsimpl.h -------------------------------------------------------------------------------- /inc/utrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/utrap.h -------------------------------------------------------------------------------- /inc/vt220iso8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/vt220iso8x16.h -------------------------------------------------------------------------------- /inc/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/wait.h -------------------------------------------------------------------------------- /inc/wrap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/inc/wrap.hh -------------------------------------------------------------------------------- /indent.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/indent.opts -------------------------------------------------------------------------------- /kern/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/Makefrag -------------------------------------------------------------------------------- /kern/arch/amd64/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/amd64/mp.c -------------------------------------------------------------------------------- /kern/arch/amd64/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/amd64/mp.h -------------------------------------------------------------------------------- /kern/arch/amd64/pmap-x86.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kern/arch/arm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/asm.h -------------------------------------------------------------------------------- /kern/arch/arm/init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | char boot_cmdline[256]; 4 | 5 | -------------------------------------------------------------------------------- /kern/arch/arm/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/misc.c -------------------------------------------------------------------------------- /kern/arch/arm/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/mmu.h -------------------------------------------------------------------------------- /kern/arch/arm/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/page.c -------------------------------------------------------------------------------- /kern/arch/arm/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/pmap.c -------------------------------------------------------------------------------- /kern/arch/arm/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/pmap.h -------------------------------------------------------------------------------- /kern/arch/arm/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/arm/trap.c -------------------------------------------------------------------------------- /kern/arch/arm/utrap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kern/arch/i386/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/i386/asm.h -------------------------------------------------------------------------------- /kern/arch/i386/boot.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /kern/arch/i386/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/i386/mmu.h -------------------------------------------------------------------------------- /kern/arch/i386/multiboot.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /kern/arch/i386/trapcodes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /kern/arch/i386/tsctimer.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /kern/arch/llvm/setjmp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /kern/arch/llvm/x86.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /kern/arch/um/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/um/mmu.h -------------------------------------------------------------------------------- /kern/arch/um/um.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/arch/um/um.h -------------------------------------------------------------------------------- /kern/btree/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/btree/btree.c -------------------------------------------------------------------------------- /kern/btree/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/btree/btree.h -------------------------------------------------------------------------------- /kern/btree/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/btree/cache.c -------------------------------------------------------------------------------- /kern/btree/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/btree/cache.h -------------------------------------------------------------------------------- /kern/btree/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/btree/todo -------------------------------------------------------------------------------- /kern/dev/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/acpi.c -------------------------------------------------------------------------------- /kern/dev/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/acpi.h -------------------------------------------------------------------------------- /kern/dev/acpireg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/acpireg.h -------------------------------------------------------------------------------- /kern/dev/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ahci.c -------------------------------------------------------------------------------- /kern/dev/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ahci.h -------------------------------------------------------------------------------- /kern/dev/ahcireg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ahcireg.h -------------------------------------------------------------------------------- /kern/dev/amba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/amba.c -------------------------------------------------------------------------------- /kern/dev/amba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/amba.h -------------------------------------------------------------------------------- /kern/dev/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ambapp.h -------------------------------------------------------------------------------- /kern/dev/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/apic.c -------------------------------------------------------------------------------- /kern/dev/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/apic.h -------------------------------------------------------------------------------- /kern/dev/apicreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/apicreg.h -------------------------------------------------------------------------------- /kern/dev/cgacons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/cgacons.c -------------------------------------------------------------------------------- /kern/dev/cgacons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/cgacons.h -------------------------------------------------------------------------------- /kern/dev/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/e1000.c -------------------------------------------------------------------------------- /kern/dev/e1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/e1000.h -------------------------------------------------------------------------------- /kern/dev/fxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/fxp.c -------------------------------------------------------------------------------- /kern/dev/fxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/fxp.h -------------------------------------------------------------------------------- /kern/dev/fxpreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/fxpreg.h -------------------------------------------------------------------------------- /kern/dev/gptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/gptimer.c -------------------------------------------------------------------------------- /kern/dev/gptimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/gptimer.h -------------------------------------------------------------------------------- /kern/dev/grata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/grata.c -------------------------------------------------------------------------------- /kern/dev/grata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/grata.h -------------------------------------------------------------------------------- /kern/dev/greth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/greth.c -------------------------------------------------------------------------------- /kern/dev/greth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/greth.h -------------------------------------------------------------------------------- /kern/dev/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/hpet.c -------------------------------------------------------------------------------- /kern/dev/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/hpet.h -------------------------------------------------------------------------------- /kern/dev/hpetreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/hpetreg.h -------------------------------------------------------------------------------- /kern/dev/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ide.c -------------------------------------------------------------------------------- /kern/dev/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ide.h -------------------------------------------------------------------------------- /kern/dev/idereg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/idereg.h -------------------------------------------------------------------------------- /kern/dev/irqmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/irqmp.c -------------------------------------------------------------------------------- /kern/dev/irqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/irqmp.h -------------------------------------------------------------------------------- /kern/dev/isareg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/isareg.h -------------------------------------------------------------------------------- /kern/dev/kbdreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/kbdreg.h -------------------------------------------------------------------------------- /kern/dev/kclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/kclock.c -------------------------------------------------------------------------------- /kern/dev/kclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/kclock.h -------------------------------------------------------------------------------- /kern/dev/lptcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/lptcons.c -------------------------------------------------------------------------------- /kern/dev/lptcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/lptcons.h -------------------------------------------------------------------------------- /kern/dev/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/mii.h -------------------------------------------------------------------------------- /kern/dev/ne2kpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ne2kpci.c -------------------------------------------------------------------------------- /kern/dev/ne2kpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/ne2kpci.h -------------------------------------------------------------------------------- /kern/dev/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/nvram.h -------------------------------------------------------------------------------- /kern/dev/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/pci.c -------------------------------------------------------------------------------- /kern/dev/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/pci.h -------------------------------------------------------------------------------- /kern/dev/pcireg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/pcireg.h -------------------------------------------------------------------------------- /kern/dev/picirq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/picirq.c -------------------------------------------------------------------------------- /kern/dev/picirq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/picirq.h -------------------------------------------------------------------------------- /kern/dev/pnic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/pnic.c -------------------------------------------------------------------------------- /kern/dev/pnic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/pnic.h -------------------------------------------------------------------------------- /kern/dev/pnicreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/pnicreg.h -------------------------------------------------------------------------------- /kern/dev/psmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/psmouse.c -------------------------------------------------------------------------------- /kern/dev/psmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/psmouse.h -------------------------------------------------------------------------------- /kern/dev/satareg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/satareg.h -------------------------------------------------------------------------------- /kern/dev/sercons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/sercons.c -------------------------------------------------------------------------------- /kern/dev/sercons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/sercons.h -------------------------------------------------------------------------------- /kern/dev/vesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/vesa.h -------------------------------------------------------------------------------- /kern/dev/vesafb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/vesafb.c -------------------------------------------------------------------------------- /kern/dev/vesafb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/dev/vesafb.h -------------------------------------------------------------------------------- /kern/kern/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/arch.h -------------------------------------------------------------------------------- /kern/kern/as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/as.c -------------------------------------------------------------------------------- /kern/kern/as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/as.h -------------------------------------------------------------------------------- /kern/kern/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/btree.h -------------------------------------------------------------------------------- /kern/kern/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/device.c -------------------------------------------------------------------------------- /kern/kern/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/device.h -------------------------------------------------------------------------------- /kern/kern/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/disk.c -------------------------------------------------------------------------------- /kern/kern/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/disk.h -------------------------------------------------------------------------------- /kern/kern/dstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/dstack.c -------------------------------------------------------------------------------- /kern/kern/dstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/dstack.h -------------------------------------------------------------------------------- /kern/kern/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/fb.c -------------------------------------------------------------------------------- /kern/kern/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/fb.h -------------------------------------------------------------------------------- /kern/kern/gate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/gate.c -------------------------------------------------------------------------------- /kern/kern/gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/gate.h -------------------------------------------------------------------------------- /kern/kern/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/handle.c -------------------------------------------------------------------------------- /kern/kern/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/handle.h -------------------------------------------------------------------------------- /kern/kern/ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/ht.h -------------------------------------------------------------------------------- /kern/kern/intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/intr.c -------------------------------------------------------------------------------- /kern/kern/intr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/intr.h -------------------------------------------------------------------------------- /kern/kern/kobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/kobj.c -------------------------------------------------------------------------------- /kern/kern/kobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/kobj.h -------------------------------------------------------------------------------- /kern/kern/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/label.c -------------------------------------------------------------------------------- /kern/kern/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/label.h -------------------------------------------------------------------------------- /kern/kern/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/lib.h -------------------------------------------------------------------------------- /kern/kern/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/log.c -------------------------------------------------------------------------------- /kern/kern/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/log.h -------------------------------------------------------------------------------- /kern/kern/netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/netdev.c -------------------------------------------------------------------------------- /kern/kern/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/netdev.h -------------------------------------------------------------------------------- /kern/kern/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/panic.c -------------------------------------------------------------------------------- /kern/kern/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/param.h -------------------------------------------------------------------------------- /kern/kern/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/part.c -------------------------------------------------------------------------------- /kern/kern/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/part.h -------------------------------------------------------------------------------- /kern/kern/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/printf.c -------------------------------------------------------------------------------- /kern/kern/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/prof.c -------------------------------------------------------------------------------- /kern/kern/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/prof.h -------------------------------------------------------------------------------- /kern/kern/pstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/pstate.c -------------------------------------------------------------------------------- /kern/kern/pstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/pstate.h -------------------------------------------------------------------------------- /kern/kern/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/sched.c -------------------------------------------------------------------------------- /kern/kern/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/sched.h -------------------------------------------------------------------------------- /kern/kern/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/string.c -------------------------------------------------------------------------------- /kern/kern/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/sync.c -------------------------------------------------------------------------------- /kern/kern/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/sync.h -------------------------------------------------------------------------------- /kern/kern/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/thread.c -------------------------------------------------------------------------------- /kern/kern/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/thread.h -------------------------------------------------------------------------------- /kern/kern/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/timer.c -------------------------------------------------------------------------------- /kern/kern/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/timer.h -------------------------------------------------------------------------------- /kern/kern/uinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/uinit.c -------------------------------------------------------------------------------- /kern/kern/uinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/uinit.h -------------------------------------------------------------------------------- /kern/kern/utrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/kern/kern/utrap.h -------------------------------------------------------------------------------- /lib/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/Makefrag -------------------------------------------------------------------------------- /lib/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/alarm.c -------------------------------------------------------------------------------- /lib/amd64/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/amd64/crt1.S -------------------------------------------------------------------------------- /lib/amd64/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/amd64/crti.S -------------------------------------------------------------------------------- /lib/amd64/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/amd64/crtn.S -------------------------------------------------------------------------------- /lib/amd64/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/amd64/misc.c -------------------------------------------------------------------------------- /lib/amd64/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/amd64/stack.S -------------------------------------------------------------------------------- /lib/amd64/strlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/amd64/strlen.S -------------------------------------------------------------------------------- /lib/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/arc4.c -------------------------------------------------------------------------------- /lib/arm/longjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/arm/longjmp.S -------------------------------------------------------------------------------- /lib/authclnt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/authclnt.cc -------------------------------------------------------------------------------- /lib/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/backtrace.c -------------------------------------------------------------------------------- /lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/base64.c -------------------------------------------------------------------------------- /lib/bf60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/bf60.c -------------------------------------------------------------------------------- /lib/bipipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/bipipe.c -------------------------------------------------------------------------------- /lib/chardevs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/chardevs.c -------------------------------------------------------------------------------- /lib/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cksum.c -------------------------------------------------------------------------------- /lib/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/console.c -------------------------------------------------------------------------------- /lib/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/container.c -------------------------------------------------------------------------------- /lib/cooperate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cooperate.cc -------------------------------------------------------------------------------- /lib/cpplabel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cpplabel.cc -------------------------------------------------------------------------------- /lib/cppsup/bits/os_defines.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/cppsup/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/cctype -------------------------------------------------------------------------------- /lib/cppsup/climits: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/cppsup/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/clocale -------------------------------------------------------------------------------- /lib/cppsup/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/cstddef -------------------------------------------------------------------------------- /lib/cppsup/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/cstdio -------------------------------------------------------------------------------- /lib/cppsup/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/cstdlib -------------------------------------------------------------------------------- /lib/cppsup/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/cstring -------------------------------------------------------------------------------- /lib/cppsup/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/ctime -------------------------------------------------------------------------------- /lib/cppsup/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/cwchar -------------------------------------------------------------------------------- /lib/cppsup/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/iosfwd -------------------------------------------------------------------------------- /lib/cppsup/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/new -------------------------------------------------------------------------------- /lib/cppsup/pure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/pure.cc -------------------------------------------------------------------------------- /lib/cppsup/tinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/tinfo.h -------------------------------------------------------------------------------- /lib/cppsup/vec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cppsup/vec.cc -------------------------------------------------------------------------------- /lib/cstrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cstrlen.c -------------------------------------------------------------------------------- /lib/cyg_prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/cyg_prof.c -------------------------------------------------------------------------------- /lib/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/debug.cc -------------------------------------------------------------------------------- /lib/declassify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/declassify.cc -------------------------------------------------------------------------------- /lib/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/elf.c -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/errno.c -------------------------------------------------------------------------------- /lib/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/error.cc -------------------------------------------------------------------------------- /lib/exec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/exec.cc -------------------------------------------------------------------------------- /lib/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/exit.c -------------------------------------------------------------------------------- /lib/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fb.c -------------------------------------------------------------------------------- /lib/fd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fd.cc -------------------------------------------------------------------------------- /lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/file.c -------------------------------------------------------------------------------- /lib/file_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/file_fd.c -------------------------------------------------------------------------------- /lib/fork.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fork.cc -------------------------------------------------------------------------------- /lib/fs_dir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fs_dir.cc -------------------------------------------------------------------------------- /lib/fs_dir_ct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fs_dir_ct.cc -------------------------------------------------------------------------------- /lib/fs_dir_dseg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fs_dir_dseg.cc -------------------------------------------------------------------------------- /lib/fs_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fs_file.cc -------------------------------------------------------------------------------- /lib/fs_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fs_mount.c -------------------------------------------------------------------------------- /lib/fs_taint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/fs_taint.cc -------------------------------------------------------------------------------- /lib/gateclnt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/gateclnt.cc -------------------------------------------------------------------------------- /lib/gatefile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/gatefile.cc -------------------------------------------------------------------------------- /lib/gateinvoke.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/gateinvoke.cc -------------------------------------------------------------------------------- /lib/gatesrv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/gatesrv.cc -------------------------------------------------------------------------------- /lib/getdnnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/getdnnm.c -------------------------------------------------------------------------------- /lib/groupclnt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/groupclnt.cc -------------------------------------------------------------------------------- /lib/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/hashtable.c -------------------------------------------------------------------------------- /lib/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/host.c -------------------------------------------------------------------------------- /lib/i386/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/i386/crt1.S -------------------------------------------------------------------------------- /lib/i386/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/i386/crti.S -------------------------------------------------------------------------------- /lib/i386/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/i386/crtn.S -------------------------------------------------------------------------------- /lib/i386/longjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/i386/longjmp.S -------------------------------------------------------------------------------- /lib/i386/misc.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/i386/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/i386/stack.S -------------------------------------------------------------------------------- /lib/i386/strlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/i386/strlen.S -------------------------------------------------------------------------------- /lib/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/ioctl.c -------------------------------------------------------------------------------- /lib/jcomm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/jcomm.cc -------------------------------------------------------------------------------- /lib/jsession.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/jsession.c -------------------------------------------------------------------------------- /lib/jthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/jthread.c -------------------------------------------------------------------------------- /lib/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/label.c -------------------------------------------------------------------------------- /lib/labelutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/labelutil.cc -------------------------------------------------------------------------------- /lib/lfsdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/lfsdev.c -------------------------------------------------------------------------------- /lib/lfsimpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/lfsimpl.cc -------------------------------------------------------------------------------- /lib/libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/libmain.c -------------------------------------------------------------------------------- /lib/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/memcmp.c -------------------------------------------------------------------------------- /lib/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/memcpy.c -------------------------------------------------------------------------------- /lib/memlayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/memlayout.c -------------------------------------------------------------------------------- /lib/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/memmove.c -------------------------------------------------------------------------------- /lib/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/memset.c -------------------------------------------------------------------------------- /lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/misc.c -------------------------------------------------------------------------------- /lib/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/mmap.c -------------------------------------------------------------------------------- /lib/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/mouse.c -------------------------------------------------------------------------------- /lib/multisync.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/multisync.cc -------------------------------------------------------------------------------- /lib/netbench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/netbench.cc -------------------------------------------------------------------------------- /lib/nethelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/nethelper.cc -------------------------------------------------------------------------------- /lib/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/panic.c -------------------------------------------------------------------------------- /lib/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/pipe.c -------------------------------------------------------------------------------- /lib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/printf.c -------------------------------------------------------------------------------- /lib/printfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/printfmt.c -------------------------------------------------------------------------------- /lib/privstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/privstore.cc -------------------------------------------------------------------------------- /lib/proc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/proc.cc -------------------------------------------------------------------------------- /lib/prof.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/prof.cc -------------------------------------------------------------------------------- /lib/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/profiler.c -------------------------------------------------------------------------------- /lib/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/pthread.c -------------------------------------------------------------------------------- /lib/ptrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/ptrace.cc -------------------------------------------------------------------------------- /lib/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/pty.c -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rbac.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/rbac.cc -------------------------------------------------------------------------------- /lib/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/readline.c -------------------------------------------------------------------------------- /lib/resalloc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/resalloc.cc -------------------------------------------------------------------------------- /lib/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/resolv.c -------------------------------------------------------------------------------- /lib/rlim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/rlim.c -------------------------------------------------------------------------------- /lib/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sbrk.c -------------------------------------------------------------------------------- /lib/segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/segment.c -------------------------------------------------------------------------------- /lib/segvhelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/segvhelper.cc -------------------------------------------------------------------------------- /lib/selftaint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/selftaint.cc -------------------------------------------------------------------------------- /lib/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/semaphore.c -------------------------------------------------------------------------------- /lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sha1.c -------------------------------------------------------------------------------- /lib/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/shm.c -------------------------------------------------------------------------------- /lib/sigio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sigio.c -------------------------------------------------------------------------------- /lib/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/signal.c -------------------------------------------------------------------------------- /lib/signalgate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/signalgate.cc -------------------------------------------------------------------------------- /lib/sock_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sock_fd.c -------------------------------------------------------------------------------- /lib/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/socket.c -------------------------------------------------------------------------------- /lib/sparc/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/Makefrag -------------------------------------------------------------------------------- /lib/sparc/crt1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/crt1.S -------------------------------------------------------------------------------- /lib/sparc/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/crti.S -------------------------------------------------------------------------------- /lib/sparc/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/crtn.S -------------------------------------------------------------------------------- /lib/sparc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/misc.c -------------------------------------------------------------------------------- /lib/sparc/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/stack.S -------------------------------------------------------------------------------- /lib/sparc/strlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/strlen.S -------------------------------------------------------------------------------- /lib/sparc/win.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sparc/win.S -------------------------------------------------------------------------------- /lib/spawn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/spawn.cc -------------------------------------------------------------------------------- /lib/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/stat.c -------------------------------------------------------------------------------- /lib/strtou64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/strtou64.c -------------------------------------------------------------------------------- /lib/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/syscall.c -------------------------------------------------------------------------------- /lib/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sysinfo.c -------------------------------------------------------------------------------- /lib/sysstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/sysstring.c -------------------------------------------------------------------------------- /lib/taint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/taint.c -------------------------------------------------------------------------------- /lib/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/thread.c -------------------------------------------------------------------------------- /lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/time.c -------------------------------------------------------------------------------- /lib/tun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/tun.c -------------------------------------------------------------------------------- /lib/udsdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/udsdev.c -------------------------------------------------------------------------------- /lib/udsimpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/udsimpl.cc -------------------------------------------------------------------------------- /lib/uidgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/uidgid.c -------------------------------------------------------------------------------- /lib/utrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/utrap.c -------------------------------------------------------------------------------- /lib/utrapasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/utrapasm.c -------------------------------------------------------------------------------- /lib/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/wait.c -------------------------------------------------------------------------------- /lib/wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lib/wrap.cc -------------------------------------------------------------------------------- /lind/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/Kconfig -------------------------------------------------------------------------------- /lind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/Makefile -------------------------------------------------------------------------------- /lind/asm-lind/cpu.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/div64.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/ide.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/asm-lind/io.h -------------------------------------------------------------------------------- /lind/asm-lind/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/irq_regs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/k8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/asm-lind/k8.h -------------------------------------------------------------------------------- /lind/asm-lind/node.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/asm-lind/therm_throt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lind/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/defconfig -------------------------------------------------------------------------------- /lind/fs/Makefile: -------------------------------------------------------------------------------- 1 | obj-y := binfmt_lind.o 2 | -------------------------------------------------------------------------------- /lind/kernel/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/kernel/irq.c -------------------------------------------------------------------------------- /lind/kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/kernel/time.c -------------------------------------------------------------------------------- /lind/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/Makefile -------------------------------------------------------------------------------- /lind/lib/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/bitops.c -------------------------------------------------------------------------------- /lind/lib/bitstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/bitstr.c -------------------------------------------------------------------------------- /lind/lib/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/delay.c -------------------------------------------------------------------------------- /lind/lib/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/io.c -------------------------------------------------------------------------------- /lind/lib/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/net.c -------------------------------------------------------------------------------- /lind/lib/rwlock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/rwlock.S -------------------------------------------------------------------------------- /lind/lib/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/thread.c -------------------------------------------------------------------------------- /lind/lib/thunk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/thunk.S -------------------------------------------------------------------------------- /lind/lib/wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/lib/wrap.c -------------------------------------------------------------------------------- /lind/mm/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += init.o 2 | -------------------------------------------------------------------------------- /lind/mm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/lind/mm/init.c -------------------------------------------------------------------------------- /mergedep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/mergedep.pl -------------------------------------------------------------------------------- /netd/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/Makefrag -------------------------------------------------------------------------------- /netd/netd_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netd_linux.cc -------------------------------------------------------------------------------- /netd/netd_lwip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netd_lwip.c -------------------------------------------------------------------------------- /netd/netd_lwipif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netd_lwipif.c -------------------------------------------------------------------------------- /netd/netdclnt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netdclnt.hh -------------------------------------------------------------------------------- /netd/netdipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netdipc.h -------------------------------------------------------------------------------- /netd/netdlinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netdlinux.h -------------------------------------------------------------------------------- /netd/netdlwip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netdlwip.h -------------------------------------------------------------------------------- /netd/netdsrv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/netd/netdsrv.hh -------------------------------------------------------------------------------- /notes/apps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/apps.txt -------------------------------------------------------------------------------- /notes/bootusb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/bootusb.txt -------------------------------------------------------------------------------- /notes/code-split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/code-split -------------------------------------------------------------------------------- /notes/dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/dis -------------------------------------------------------------------------------- /notes/djos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/djos.txt -------------------------------------------------------------------------------- /notes/finding-bugs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/finding-bugs -------------------------------------------------------------------------------- /notes/flume.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/flume.txt -------------------------------------------------------------------------------- /notes/ft-bug-fixes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/ft-bug-fixes -------------------------------------------------------------------------------- /notes/gate-notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/gate-notes -------------------------------------------------------------------------------- /notes/hw-virt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/hw-virt -------------------------------------------------------------------------------- /notes/ide-notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/ide-notes -------------------------------------------------------------------------------- /notes/jos32-qs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/jos32-qs.txt -------------------------------------------------------------------------------- /notes/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/tags.txt -------------------------------------------------------------------------------- /notes/tcb-size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/tcb-size.txt -------------------------------------------------------------------------------- /notes/vm-threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/vm-threads -------------------------------------------------------------------------------- /notes/why-db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/notes/why-db.txt -------------------------------------------------------------------------------- /pkg/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/Makefrag -------------------------------------------------------------------------------- /pkg/cat/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/cat/Makefrag -------------------------------------------------------------------------------- /pkg/cat/cat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/cat/cat.1 -------------------------------------------------------------------------------- /pkg/cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/cat/cat.c -------------------------------------------------------------------------------- /pkg/echo/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/echo/Makefrag -------------------------------------------------------------------------------- /pkg/echo/echo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/echo/echo.1 -------------------------------------------------------------------------------- /pkg/echo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/echo/echo.c -------------------------------------------------------------------------------- /pkg/ftpd/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/Makefrag -------------------------------------------------------------------------------- /pkg/ftpd/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/extern.h -------------------------------------------------------------------------------- /pkg/ftpd/ftpcmd.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/ftpcmd.y -------------------------------------------------------------------------------- /pkg/ftpd/ftpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/ftpd.c -------------------------------------------------------------------------------- /pkg/ftpd/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/popen.c -------------------------------------------------------------------------------- /pkg/ftpd/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/vis.c -------------------------------------------------------------------------------- /pkg/ftpd/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ftpd/vis.h -------------------------------------------------------------------------------- /pkg/gdb-gl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/gdb-gl/README -------------------------------------------------------------------------------- /pkg/gdb-gl/jos64-nat.c: -------------------------------------------------------------------------------- 1 | // code for native debugging... 2 | 3 | -------------------------------------------------------------------------------- /pkg/httpd/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/httpd/Makefrag -------------------------------------------------------------------------------- /pkg/ksh/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/ChangeLog -------------------------------------------------------------------------------- /pkg/ksh/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/INSTALL -------------------------------------------------------------------------------- /pkg/ksh/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/LEGAL -------------------------------------------------------------------------------- /pkg/ksh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/Makefile -------------------------------------------------------------------------------- /pkg/ksh/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/Makefrag -------------------------------------------------------------------------------- /pkg/ksh/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/NEWS -------------------------------------------------------------------------------- /pkg/ksh/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/NOTES -------------------------------------------------------------------------------- /pkg/ksh/PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/PROJECTS -------------------------------------------------------------------------------- /pkg/ksh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/README -------------------------------------------------------------------------------- /pkg/ksh/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/alloc.c -------------------------------------------------------------------------------- /pkg/ksh/c_ksh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/c_ksh.c -------------------------------------------------------------------------------- /pkg/ksh/c_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/c_sh.c -------------------------------------------------------------------------------- /pkg/ksh/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/c_test.c -------------------------------------------------------------------------------- /pkg/ksh/c_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/c_test.h -------------------------------------------------------------------------------- /pkg/ksh/c_ulimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/c_ulimit.c -------------------------------------------------------------------------------- /pkg/ksh/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/config.h -------------------------------------------------------------------------------- /pkg/ksh/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/edit.c -------------------------------------------------------------------------------- /pkg/ksh/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/edit.h -------------------------------------------------------------------------------- /pkg/ksh/emacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/emacs.c -------------------------------------------------------------------------------- /pkg/ksh/emacs.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/emacs.out -------------------------------------------------------------------------------- /pkg/ksh/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/eval.c -------------------------------------------------------------------------------- /pkg/ksh/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/exec.c -------------------------------------------------------------------------------- /pkg/ksh/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/expand.h -------------------------------------------------------------------------------- /pkg/ksh/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/expr.c -------------------------------------------------------------------------------- /pkg/ksh/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/history.c -------------------------------------------------------------------------------- /pkg/ksh/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/io.c -------------------------------------------------------------------------------- /pkg/ksh/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/jobs.c -------------------------------------------------------------------------------- /pkg/ksh/ksh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/ksh.1 -------------------------------------------------------------------------------- /pkg/ksh/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/lex.c -------------------------------------------------------------------------------- /pkg/ksh/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/lex.h -------------------------------------------------------------------------------- /pkg/ksh/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/mail.c -------------------------------------------------------------------------------- /pkg/ksh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/main.c -------------------------------------------------------------------------------- /pkg/ksh/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/misc.c -------------------------------------------------------------------------------- /pkg/ksh/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/path.c -------------------------------------------------------------------------------- /pkg/ksh/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/proto.h -------------------------------------------------------------------------------- /pkg/ksh/sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/sh.1 -------------------------------------------------------------------------------- /pkg/ksh/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/sh.h -------------------------------------------------------------------------------- /pkg/ksh/shf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/shf.c -------------------------------------------------------------------------------- /pkg/ksh/shf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/shf.h -------------------------------------------------------------------------------- /pkg/ksh/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/syn.c -------------------------------------------------------------------------------- /pkg/ksh/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/table.c -------------------------------------------------------------------------------- /pkg/ksh/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/table.h -------------------------------------------------------------------------------- /pkg/ksh/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/trap.c -------------------------------------------------------------------------------- /pkg/ksh/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/tree.c -------------------------------------------------------------------------------- /pkg/ksh/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/tree.h -------------------------------------------------------------------------------- /pkg/ksh/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/tty.c -------------------------------------------------------------------------------- /pkg/ksh/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/tty.h -------------------------------------------------------------------------------- /pkg/ksh/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/var.c -------------------------------------------------------------------------------- /pkg/ksh/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/version.c -------------------------------------------------------------------------------- /pkg/ksh/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/ksh/vi.c -------------------------------------------------------------------------------- /pkg/links/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/AUTHORS -------------------------------------------------------------------------------- /pkg/links/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/BUGS -------------------------------------------------------------------------------- /pkg/links/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/COPYING -------------------------------------------------------------------------------- /pkg/links/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/INSTALL -------------------------------------------------------------------------------- /pkg/links/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/Makefile -------------------------------------------------------------------------------- /pkg/links/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/Makefrag -------------------------------------------------------------------------------- /pkg/links/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/NEWS -------------------------------------------------------------------------------- /pkg/links/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/README -------------------------------------------------------------------------------- /pkg/links/SITES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/SITES -------------------------------------------------------------------------------- /pkg/links/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/TODO -------------------------------------------------------------------------------- /pkg/links/bfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/bfu.c -------------------------------------------------------------------------------- /pkg/links/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/cache.c -------------------------------------------------------------------------------- /pkg/links/codepage.h: -------------------------------------------------------------------------------- 1 | #define N_CODEPAGES 27 2 | -------------------------------------------------------------------------------- /pkg/links/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/config.h -------------------------------------------------------------------------------- /pkg/links/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/dns.c -------------------------------------------------------------------------------- /pkg/links/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/error.c -------------------------------------------------------------------------------- /pkg/links/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/file.c -------------------------------------------------------------------------------- /pkg/links/finger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/finger.c -------------------------------------------------------------------------------- /pkg/links/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/ftp.c -------------------------------------------------------------------------------- /pkg/links/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/html.c -------------------------------------------------------------------------------- /pkg/links/html_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/html_r.c -------------------------------------------------------------------------------- /pkg/links/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/http.c -------------------------------------------------------------------------------- /pkg/links/https.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/https.c -------------------------------------------------------------------------------- /pkg/links/intl/index.txt: -------------------------------------------------------------------------------- 1 | english -------------------------------------------------------------------------------- /pkg/links/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/kbd.c -------------------------------------------------------------------------------- /pkg/links/links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/links.h -------------------------------------------------------------------------------- /pkg/links/mailto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/mailto.c -------------------------------------------------------------------------------- /pkg/links/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/main.c -------------------------------------------------------------------------------- /pkg/links/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/menu.c -------------------------------------------------------------------------------- /pkg/links/os_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/os_dep.c -------------------------------------------------------------------------------- /pkg/links/os_dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/os_dep.h -------------------------------------------------------------------------------- /pkg/links/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/sched.c -------------------------------------------------------------------------------- /pkg/links/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/select.c -------------------------------------------------------------------------------- /pkg/links/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/setup.h -------------------------------------------------------------------------------- /pkg/links/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/smb.c -------------------------------------------------------------------------------- /pkg/links/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/types.c -------------------------------------------------------------------------------- /pkg/links/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/url.c -------------------------------------------------------------------------------- /pkg/links/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/links/view.c -------------------------------------------------------------------------------- /pkg/lwip/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/lwip/FILES -------------------------------------------------------------------------------- /pkg/lwip/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/lwip/Makefrag -------------------------------------------------------------------------------- /pkg/lwip/api/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/lwip/api/err.c -------------------------------------------------------------------------------- /pkg/lwip/core/ipv6/README: -------------------------------------------------------------------------------- 1 | IPv6 support in lwIP is very experimental. 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/Makefrag: -------------------------------------------------------------------------------- 1 | include pkg/uclibc++/src/Makefrag -------------------------------------------------------------------------------- /pkg/uclibc++/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/uclibc++/TODO -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/af_ZA: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/de_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/de_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/de_LU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/el_GR: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_AU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_BW: -------------------------------------------------------------------------------- 1 | copy "en_ZA" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_DK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_HK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_IE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_NZ: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_ZA: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/en_ZW: -------------------------------------------------------------------------------- 1 | copy "en_ZA" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/eu_ES: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/fo_FO: -------------------------------------------------------------------------------- 1 | copy "da_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/fr_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/fr_CA: -------------------------------------------------------------------------------- 1 | copy "en_CA" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/fr_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/fr_LU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/ga_IE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/gd_GB: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/gl_ES: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/gv_GB: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/he_IL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/id_ID: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/it_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/it_IT: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/iw_IL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/ka_GE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/kl_GL: -------------------------------------------------------------------------------- 1 | copy "da_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/kw_GB: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/mk_MK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/nl_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/nl_NL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/oc_FR: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/pt_BR: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/pt_PT: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/sk_SK: -------------------------------------------------------------------------------- 1 | copy "cs_CZ" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/sv_FI: -------------------------------------------------------------------------------- 1 | copy "fi_FI" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/ti_ER: -------------------------------------------------------------------------------- 1 | copy "am_ET" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/ti_ET: -------------------------------------------------------------------------------- 1 | copy "am_ET" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/ur_PK: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/extra/locale/collation/wa_BE: -------------------------------------------------------------------------------- 1 | copy "fr_BE" 2 | -------------------------------------------------------------------------------- /pkg/uclibc++/tests/testoutput/streambuftest.input: -------------------------------------------------------------------------------- 1 | This is a test string 2 | -------------------------------------------------------------------------------- /pkg/uclibc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/uclibc/INSTALL -------------------------------------------------------------------------------- /pkg/uclibc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/uclibc/README -------------------------------------------------------------------------------- /pkg/uclibc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/pkg/uclibc/TODO -------------------------------------------------------------------------------- /pkg/uclibc/docs/uclibc.org/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/alpha: -------------------------------------------------------------------------------- 1 | TARGET_alpha=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/arm: -------------------------------------------------------------------------------- 1 | TARGET_arm=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/bfin: -------------------------------------------------------------------------------- 1 | TARGET_bfin=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/cris: -------------------------------------------------------------------------------- 1 | TARGET_cris=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/e1: -------------------------------------------------------------------------------- 1 | TARGET_e1=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/frv: -------------------------------------------------------------------------------- 1 | TARGET_frv=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/h8300: -------------------------------------------------------------------------------- 1 | TARGET_h8300=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/hppa: -------------------------------------------------------------------------------- 1 | TARGET_hppa=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/i386: -------------------------------------------------------------------------------- 1 | TARGET_i386=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/i960: -------------------------------------------------------------------------------- 1 | TARGET_i960=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/ia64: -------------------------------------------------------------------------------- 1 | TARGET_ia64=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/m68k: -------------------------------------------------------------------------------- 1 | TARGET_m68k=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/microblaze: -------------------------------------------------------------------------------- 1 | TARGET_microblaze=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/mips: -------------------------------------------------------------------------------- 1 | TARGET_mips=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/nios: -------------------------------------------------------------------------------- 1 | TARGET_nios=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/nios2: -------------------------------------------------------------------------------- 1 | TARGET_nios2=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/powerpc: -------------------------------------------------------------------------------- 1 | TARGET_powerpc=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/sh: -------------------------------------------------------------------------------- 1 | TARGET_sh=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/sh64: -------------------------------------------------------------------------------- 1 | TARGET_sh64=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/sparc: -------------------------------------------------------------------------------- 1 | TARGET_sparc=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/v850: -------------------------------------------------------------------------------- 1 | TARGET_v850=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/vax: -------------------------------------------------------------------------------- 1 | TARGET_vax=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/Configs/defconfigs/x86_64: -------------------------------------------------------------------------------- 1 | TARGET_x86_64=y 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/af_ZA: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/de_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/de_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/de_LU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/el_GR: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_AU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_BW: -------------------------------------------------------------------------------- 1 | copy "en_ZA" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_DK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_HK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_IE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_NZ: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_ZA: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/en_ZW: -------------------------------------------------------------------------------- 1 | copy "en_ZA" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_AR: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_BO: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_CL: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_CO: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_CR: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_DO: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_EC: -------------------------------------------------------------------------------- 1 | copy "es_US" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_GT: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_HN: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_MX: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_NI: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_PA: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_PE: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_PR: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_PY: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_SV: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_UY: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/es_VE: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/eu_ES: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/fo_FO: -------------------------------------------------------------------------------- 1 | copy "da_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/fr_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/fr_CA: -------------------------------------------------------------------------------- 1 | copy "en_CA" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/fr_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/fr_LU: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/ga_IE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/gd_GB: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/gl_ES: -------------------------------------------------------------------------------- 1 | copy "es_ES" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/gv_GB: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/he_IL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/id_ID: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/it_CH: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/it_IT: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/iw_IL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/ka_GE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/kl_GL: -------------------------------------------------------------------------------- 1 | copy "da_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/kw_GB: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/mk_MK: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/nl_BE: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/nl_NL: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/oc_FR: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/pt_BR: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/pt_PT: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/sk_SK: -------------------------------------------------------------------------------- 1 | copy "cs_CZ" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/sv_FI: -------------------------------------------------------------------------------- 1 | copy "fi_FI" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/ti_ER: -------------------------------------------------------------------------------- 1 | copy "am_ET" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/ti_ET: -------------------------------------------------------------------------------- 1 | copy "am_ET" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/ur_PK: -------------------------------------------------------------------------------- 1 | copy "en_DK" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/wa_BE: -------------------------------------------------------------------------------- 1 | copy "fr_BE" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/zh_CN: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/extra/locale/collation/zh_TW: -------------------------------------------------------------------------------- 1 | copy "iso14651_t1" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/net/ppp-comp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/netinet/ip_fw.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/netinet/ip_udp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/ustat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/include/wait.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/libc/string/sparc/bcopy.c: -------------------------------------------------------------------------------- 1 | /* bcopy is in memcpy.S */ 2 | -------------------------------------------------------------------------------- /pkg/uclibc/libc/string/sparc/bzero.c: -------------------------------------------------------------------------------- 1 | /* bzero is in memset.S */ 2 | -------------------------------------------------------------------------------- /pkg/uclibc/libc/sysdeps/linux/common/sys/user.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/uclibc/libc/sysdeps/linux/cris/libc.map: -------------------------------------------------------------------------------- 1 | U { 2 | local: __sigjmp_save; 3 | }; 4 | -------------------------------------------------------------------------------- /pkg/uclibc/libc/sysdeps/linux/frv/xstatconv.c: -------------------------------------------------------------------------------- 1 | /* We don't need any of this. */ 2 | -------------------------------------------------------------------------------- /pkg/uclibc/libc/sysdeps/linux/h8300/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #define __WORDSIZE 32 2 | -------------------------------------------------------------------------------- /pkg/uclibc/libpthread/linuxthreads/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.os 3 | Makefile.in 4 | -------------------------------------------------------------------------------- /pkg/uclibc/libpthread/linuxthreads/sysdeps/pthread/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.os 3 | -------------------------------------------------------------------------------- /pkg/uclibc/test/dlopen/dltest2.c: -------------------------------------------------------------------------------- 1 | #include "dltest.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/dlopen/libafk-temp.c: -------------------------------------------------------------------------------- 1 | /* the actual contents doesnt matter */ 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/dlopen/libafk.c: -------------------------------------------------------------------------------- 1 | /* the actual contents doesnt matter */ 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/dlopen/libtest3.c: -------------------------------------------------------------------------------- 1 | #include "libtest.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/dlopen/libundef.c: -------------------------------------------------------------------------------- 1 | /* the actual contents doesnt matter */ 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/misc/dirent64.c: -------------------------------------------------------------------------------- 1 | #include "dirent.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexc.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexf.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexi.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexl.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexn.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexp.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/regex/testregexr.c: -------------------------------------------------------------------------------- 1 | #include "testregex.c" 2 | -------------------------------------------------------------------------------- /pkg/uclibc/test/stat/stat64.c: -------------------------------------------------------------------------------- 1 | #include "stat.c" 2 | -------------------------------------------------------------------------------- /test/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/Makefrag -------------------------------------------------------------------------------- /test/btree/biter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/biter.c -------------------------------------------------------------------------------- /test/btree/biter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/biter.h -------------------------------------------------------------------------------- /test/btree/bnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/bnode.c -------------------------------------------------------------------------------- /test/btree/bnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/bnode.h -------------------------------------------------------------------------------- /test/btree/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/btree.c -------------------------------------------------------------------------------- /test/btree/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/btree.h -------------------------------------------------------------------------------- /test/btree/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/desc.c -------------------------------------------------------------------------------- /test/btree/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/desc.h -------------------------------------------------------------------------------- /test/btree/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/error.h -------------------------------------------------------------------------------- /test/btree/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree/sys.h -------------------------------------------------------------------------------- /test/btree2-sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/btree2-sys.c -------------------------------------------------------------------------------- /test/disk-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/disk-test.cc -------------------------------------------------------------------------------- /test/disk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/disk.cc -------------------------------------------------------------------------------- /test/disk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/disk.hh -------------------------------------------------------------------------------- /test/flume-hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/flume-hello.c -------------------------------------------------------------------------------- /test/httpd-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/httpd-test.cc -------------------------------------------------------------------------------- /test/josenv.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/josenv.hh -------------------------------------------------------------------------------- /test/lock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/lock.cc -------------------------------------------------------------------------------- /test/mem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/mem.cc -------------------------------------------------------------------------------- /test/misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/misc.cc -------------------------------------------------------------------------------- /test/rand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/rand.cc -------------------------------------------------------------------------------- /test/rand.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/rand.hh -------------------------------------------------------------------------------- /test/ssl-bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/test/ssl-bench.cc -------------------------------------------------------------------------------- /tools/dj-bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/tools/dj-bench.sh -------------------------------------------------------------------------------- /tools/ipmi_restart.batch: -------------------------------------------------------------------------------- 1 | powerup 2 | reset 3 | -------------------------------------------------------------------------------- /uinc/asm/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/asm/errno.h -------------------------------------------------------------------------------- /uinc/asm/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/asm/ioctl.h -------------------------------------------------------------------------------- /uinc/asm/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/asm/ioctls.h -------------------------------------------------------------------------------- /uinc/asm/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/asm/param.h -------------------------------------------------------------------------------- /uinc/asm/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/asm/socket.h -------------------------------------------------------------------------------- /uinc/asm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/asm/types.h -------------------------------------------------------------------------------- /uinc/bits/initspin.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uinc/bits/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/bits/setjmp.h -------------------------------------------------------------------------------- /uinc/bits/signum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/bits/signum.h -------------------------------------------------------------------------------- /uinc/bits/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/bits/types.h -------------------------------------------------------------------------------- /uinc/bits/uClibc_pthread.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uinc/bits/unimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/bits/unimpl.h -------------------------------------------------------------------------------- /uinc/execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/execinfo.h -------------------------------------------------------------------------------- /uinc/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/fenv.h -------------------------------------------------------------------------------- /uinc/linux/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/linux/fb.h -------------------------------------------------------------------------------- /uinc/linux/if.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uinc/linux/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/linux/kd.h -------------------------------------------------------------------------------- /uinc/linux/netlink.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uinc/linux/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /uinc/linux/ppdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/linux/ppdev.h -------------------------------------------------------------------------------- /uinc/linux/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/linux/rtc.h -------------------------------------------------------------------------------- /uinc/linux/rtnetlink.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uinc/linux/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/linux/vt.h -------------------------------------------------------------------------------- /uinc/login_cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/login_cap.h -------------------------------------------------------------------------------- /uinc/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/sys/param.h -------------------------------------------------------------------------------- /uinc/sys/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/sys/stropts.h -------------------------------------------------------------------------------- /uinc/sys/syscall.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uinc/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/uinc/syslimits.h -------------------------------------------------------------------------------- /uinc/tls.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user/Makefrag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/Makefrag -------------------------------------------------------------------------------- /user/a2psbench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/a2psbench.cc -------------------------------------------------------------------------------- /user/adduser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/adduser.cc -------------------------------------------------------------------------------- /user/admctl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/admctl.cc -------------------------------------------------------------------------------- /user/admind.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/admind.cc -------------------------------------------------------------------------------- /user/asprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/asprint.c -------------------------------------------------------------------------------- /user/asynct0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/asynct0.cc -------------------------------------------------------------------------------- /user/asynct1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/asynct1.cc -------------------------------------------------------------------------------- /user/auth_dir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/auth_dir.cc -------------------------------------------------------------------------------- /user/auth_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/auth_log.cc -------------------------------------------------------------------------------- /user/auth_user.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/auth_user.cc -------------------------------------------------------------------------------- /user/chatter1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/chatter1.c -------------------------------------------------------------------------------- /user/chatter2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/chatter2.c -------------------------------------------------------------------------------- /user/chroot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/chroot.cc -------------------------------------------------------------------------------- /user/clamwrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/clamwrap.cc -------------------------------------------------------------------------------- /user/coopclnt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/coopclnt.cc -------------------------------------------------------------------------------- /user/coopserv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/coopserv.cc -------------------------------------------------------------------------------- /user/cpphello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/cpphello.cc -------------------------------------------------------------------------------- /user/db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/db.cc -------------------------------------------------------------------------------- /user/dbc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/dbc.cc -------------------------------------------------------------------------------- /user/dnstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/dnstest.c -------------------------------------------------------------------------------- /user/execbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/execbench.c -------------------------------------------------------------------------------- /user/fa.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fa.x -------------------------------------------------------------------------------- /user/fa_clnt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fa_clnt.cc -------------------------------------------------------------------------------- /user/fa_srv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fa_srv.cc -------------------------------------------------------------------------------- /user/fbconsd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fbconsd.cc -------------------------------------------------------------------------------- /user/fdtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fdtest.cc -------------------------------------------------------------------------------- /user/fetch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fetch.cc -------------------------------------------------------------------------------- /user/forktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/forktest.c -------------------------------------------------------------------------------- /user/fptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fptest.c -------------------------------------------------------------------------------- /user/fsmerge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/fsmerge.cc -------------------------------------------------------------------------------- /user/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/gl.c -------------------------------------------------------------------------------- /user/gsbench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/gsbench.cc -------------------------------------------------------------------------------- /user/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/hello.c -------------------------------------------------------------------------------- /user/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/idle.c -------------------------------------------------------------------------------- /user/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/init.cc -------------------------------------------------------------------------------- /user/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/init.sh -------------------------------------------------------------------------------- /user/ipcbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/ipcbench.c -------------------------------------------------------------------------------- /user/jcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jcp.c -------------------------------------------------------------------------------- /user/jdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jdate.c -------------------------------------------------------------------------------- /user/jenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jenv.c -------------------------------------------------------------------------------- /user/jls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jls.c -------------------------------------------------------------------------------- /user/jmkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jmkdir.c -------------------------------------------------------------------------------- /user/jmptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jmptest.c -------------------------------------------------------------------------------- /user/jmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jmv.c -------------------------------------------------------------------------------- /user/jntpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jntpd.c -------------------------------------------------------------------------------- /user/jrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jrm.c -------------------------------------------------------------------------------- /user/jshell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jshell.cc -------------------------------------------------------------------------------- /user/jsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jsync.c -------------------------------------------------------------------------------- /user/jtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jtrace.c -------------------------------------------------------------------------------- /user/jtrue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/jtrue.c -------------------------------------------------------------------------------- /user/lfs_large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/lfs_large.c -------------------------------------------------------------------------------- /user/lfs_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/lfs_small.c -------------------------------------------------------------------------------- /user/login.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/login.cc -------------------------------------------------------------------------------- /user/mkmlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/mkmlt.c -------------------------------------------------------------------------------- /user/mlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/mlt.c -------------------------------------------------------------------------------- /user/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/mount.c -------------------------------------------------------------------------------- /user/moused.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/moused.cc -------------------------------------------------------------------------------- /user/netd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/netd.cc -------------------------------------------------------------------------------- /user/netd_mom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/netd_mom.cc -------------------------------------------------------------------------------- /user/netd_vpn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/netd_vpn.cc -------------------------------------------------------------------------------- /user/netwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/netwatch.c -------------------------------------------------------------------------------- /user/newpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/newpty.c -------------------------------------------------------------------------------- /user/passwd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/passwd.cc -------------------------------------------------------------------------------- /user/pftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/pftest.c -------------------------------------------------------------------------------- /user/privtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/privtest.cc -------------------------------------------------------------------------------- /user/proxyd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/proxyd.cc -------------------------------------------------------------------------------- /user/proxytest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/proxytest.cc -------------------------------------------------------------------------------- /user/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/ps.c -------------------------------------------------------------------------------- /user/rbac_role.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/rbac_role.cc -------------------------------------------------------------------------------- /user/readtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/readtest.c -------------------------------------------------------------------------------- /user/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/reboot.c -------------------------------------------------------------------------------- /user/rolemod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/rolemod.cc -------------------------------------------------------------------------------- /user/runas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/runas.cc -------------------------------------------------------------------------------- /user/sock_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/sock_bench.cc -------------------------------------------------------------------------------- /user/socktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/socktest.c -------------------------------------------------------------------------------- /user/spawn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/spawn.cc -------------------------------------------------------------------------------- /user/spawnbench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/spawnbench.cc -------------------------------------------------------------------------------- /user/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/spin.c -------------------------------------------------------------------------------- /user/sshdi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/sshdi.cc -------------------------------------------------------------------------------- /user/stacktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/stacktest.c -------------------------------------------------------------------------------- /user/taintcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/taintcat.c -------------------------------------------------------------------------------- /user/tclnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/tclnt.c -------------------------------------------------------------------------------- /user/tcpserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/tcpserv.c -------------------------------------------------------------------------------- /user/tcpsink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/tcpsink.cc -------------------------------------------------------------------------------- /user/telnetd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/telnetd.cc -------------------------------------------------------------------------------- /user/thread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/thread_test.c -------------------------------------------------------------------------------- /user/tserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/tserv.c -------------------------------------------------------------------------------- /user/uadm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/uadm.cc -------------------------------------------------------------------------------- /user/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/umount.c -------------------------------------------------------------------------------- /user/ureboot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/ureboot.cc -------------------------------------------------------------------------------- /user/uregtest.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/uregtest.S -------------------------------------------------------------------------------- /user/vesatest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/vesatest.cc -------------------------------------------------------------------------------- /user/vpn_start.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/vpn_start.cc -------------------------------------------------------------------------------- /user/wallbang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/wallbang.cc -------------------------------------------------------------------------------- /user/wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/wrap.cc -------------------------------------------------------------------------------- /user/xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeldovich/histar/HEAD/user/xorg.conf --------------------------------------------------------------------------------