├── .gitignore ├── .gitmodules ├── DIRS ├── LICENSE ├── Makefile ├── README.md ├── SEC ├── TODO ├── VERSION ├── arch ├── riscv64 │ ├── ctx.S │ ├── include.mk │ ├── include │ │ └── arch │ │ │ ├── interrupt.h │ │ │ ├── processor.h │ │ │ └── thread.h │ ├── init.c │ ├── interrupt.c │ ├── link.ld.in │ ├── memory.c │ ├── processor.c │ ├── start.S │ └── thread.c └── x86_64 │ ├── acpi.c │ ├── apic.c │ ├── crti.S │ ├── crtn.S │ ├── ctx.S │ ├── debug.c │ ├── entry.c │ ├── gate.S │ ├── hpet.c │ ├── idt.c │ ├── include.mk │ ├── include │ └── arch │ │ ├── interrupt.h │ │ ├── memory.h │ │ ├── object.h │ │ ├── processor.h │ │ ├── secctx.h │ │ ├── syscall.h │ │ ├── thread.h │ │ ├── x86_64-acpi.h │ │ ├── x86_64-io.h │ │ ├── x86_64-madt.h │ │ ├── x86_64-msr.h │ │ ├── x86_64-vmx.h │ │ └── x86_64.h │ ├── init.c │ ├── intel_iommu.c │ ├── interrupt.S │ ├── ioapic.c │ ├── kconf.c │ ├── link.ld.in │ ├── madt.c │ ├── memory.c │ ├── nfit.c │ ├── object.c │ ├── pit.c │ ├── processor.c │ ├── rdrand.c │ ├── start.S │ ├── thread.c │ ├── trampoline.S │ ├── virtmem.c │ ├── vmx.c │ └── x2apic.c ├── core ├── asan │ └── asan.c ├── clksrc.c ├── csprng.c ├── debug.c ├── include.mk ├── instrument.c ├── interrupt.c ├── kc.c ├── ksymbol.c ├── ksymbol_weak.c ├── main.c ├── mm │ ├── dlmalloc.c │ ├── include.mk │ ├── memory.c │ ├── page.c │ ├── pm_buddy.c │ ├── pmap.c │ ├── slab2.c │ ├── tmpmap.c │ └── vmap.c ├── nvdimm.c ├── obj │ ├── device.c │ ├── fault.c │ ├── include.mk │ ├── kso.c │ ├── object.c │ ├── objpage.c │ ├── pager.c │ ├── queue.c │ ├── rw.c │ ├── secctx.c │ ├── slots.c │ └── tie.c ├── panic.c ├── processor.c ├── rand.c ├── schedule.c ├── spinlock.c ├── sys │ ├── include.mk │ ├── kconf.c │ ├── object.c │ ├── thread.c │ └── thread_sync.c ├── syscall.c ├── timer.c ├── ubsan.c └── unwind.c ├── doc ├── README.md ├── building.txt ├── core │ ├── blocking.txt │ └── kso.md ├── device_example ├── include.mk ├── layout.txt ├── overview.md ├── style.css ├── syscalls.md ├── template.tex ├── us │ ├── abi.md │ ├── consistency.md │ ├── events.md │ ├── faults.md │ ├── io.md │ ├── libraries.md │ ├── mutex.md │ ├── names.md │ ├── object_ids.md │ ├── objects.md │ ├── pointers.md │ ├── security.md │ ├── structured_objects.md │ └── threads.md └── vars.yaml ├── include ├── arena.h ├── assert.h ├── clksrc.h ├── debug.h ├── device.h ├── err.h ├── guard.h ├── init.h ├── instrument.h ├── interrupt.h ├── kalloc.h ├── kc.h ├── krc.h ├── ksymbol.h ├── lib │ ├── bitmap.h │ ├── blake2.h │ ├── inthash.h │ ├── iter.h │ ├── lib.h │ ├── list.h │ ├── rb.h │ └── ubsan.h ├── memory.h ├── mutex.h ├── nvdimm.h ├── object.h ├── page.h ├── pager.h ├── panic.h ├── pmap.h ├── printk.h ├── processor.h ├── queue.h ├── rand.h ├── secctx.h ├── slab.h ├── slots.h ├── spinlock.h ├── string.h ├── syscall.h ├── system.h ├── thread-bits.h ├── thread.h ├── time.h ├── tmpmap.h ├── trace.h └── workqueue.h ├── lib ├── blake2.c ├── include.mk ├── memory.c ├── qsort.c ├── rb.c └── vsprintk.c ├── machine ├── pc │ ├── bochsrc.txt │ ├── grub.cfg │ ├── include.mk │ ├── include │ │ └── machine │ │ │ ├── isa.h │ │ │ ├── machine.h │ │ │ ├── memory.h │ │ │ ├── pc-multiboot.h │ │ │ ├── pc-multiboot2.h │ │ │ └── pc-pcie.h │ ├── isa.c │ ├── pcie.c │ ├── ps2kbd.c │ └── serial.c └── riscv │ ├── include.mk │ └── include │ └── machine │ └── memory.h ├── projects ├── .config.mk.template ├── riscv │ └── config.mk └── x86_64 │ └── config.mk ├── testing ├── netctl.cpp ├── qt.c └── queue.h ├── third-party ├── .gitignore ├── include.mk ├── include │ └── ctype.h ├── libtomcrypt │ ├── .ci │ │ ├── build.sh │ │ ├── check_source.sh │ │ ├── clang-tidy.sh │ │ ├── coverage.sh │ │ ├── coverage_more.sh │ │ ├── meta_builds.sh │ │ ├── printinfo.sh │ │ ├── run.sh │ │ ├── testbuild.sh │ │ └── valgrind.sh │ ├── .clang-format │ ├── LICENSE │ ├── README.md │ ├── makefile │ ├── makefile.shared │ ├── makefile.unix │ ├── makefile_include.mk │ └── src │ │ ├── ciphers │ │ ├── aes │ │ │ ├── aes.c │ │ │ └── aes_tab.c │ │ ├── anubis.c │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── cast5.c │ │ ├── des.c │ │ ├── idea.c │ │ ├── kasumi.c │ │ ├── khazad.c │ │ ├── kseed.c │ │ ├── multi2.c │ │ ├── noekeon.c │ │ ├── rc2.c │ │ ├── rc5.c │ │ ├── rc6.c │ │ ├── safer │ │ │ ├── safer.c │ │ │ ├── safer_tab.c │ │ │ └── saferp.c │ │ ├── serpent.c │ │ ├── skipjack.c │ │ ├── twofish │ │ │ ├── twofish.c │ │ │ └── twofish_tab.c │ │ └── xtea.c │ │ ├── encauth │ │ ├── ccm │ │ │ ├── ccm_add_aad.c │ │ │ ├── ccm_add_nonce.c │ │ │ ├── ccm_done.c │ │ │ ├── ccm_init.c │ │ │ ├── ccm_memory.c │ │ │ ├── ccm_process.c │ │ │ ├── ccm_reset.c │ │ │ └── ccm_test.c │ │ ├── chachapoly │ │ │ ├── chacha20poly1305_add_aad.c │ │ │ ├── chacha20poly1305_decrypt.c │ │ │ ├── chacha20poly1305_done.c │ │ │ ├── chacha20poly1305_encrypt.c │ │ │ ├── chacha20poly1305_init.c │ │ │ ├── chacha20poly1305_memory.c │ │ │ ├── chacha20poly1305_setiv.c │ │ │ ├── chacha20poly1305_setiv_rfc7905.c │ │ │ └── chacha20poly1305_test.c │ │ ├── eax │ │ │ ├── eax_addheader.c │ │ │ ├── eax_decrypt.c │ │ │ ├── eax_decrypt_verify_memory.c │ │ │ ├── eax_done.c │ │ │ ├── eax_encrypt.c │ │ │ ├── eax_encrypt_authenticate_memory.c │ │ │ ├── eax_init.c │ │ │ └── eax_test.c │ │ ├── gcm │ │ │ ├── gcm_add_aad.c │ │ │ ├── gcm_add_iv.c │ │ │ ├── gcm_done.c │ │ │ ├── gcm_gf_mult.c │ │ │ ├── gcm_init.c │ │ │ ├── gcm_memory.c │ │ │ ├── gcm_mult_h.c │ │ │ ├── gcm_process.c │ │ │ ├── gcm_reset.c │ │ │ └── gcm_test.c │ │ ├── ocb │ │ │ ├── ocb_decrypt.c │ │ │ ├── ocb_decrypt_verify_memory.c │ │ │ ├── ocb_done_decrypt.c │ │ │ ├── ocb_done_encrypt.c │ │ │ ├── ocb_encrypt.c │ │ │ ├── ocb_encrypt_authenticate_memory.c │ │ │ ├── ocb_init.c │ │ │ ├── ocb_ntz.c │ │ │ ├── ocb_shift_xor.c │ │ │ ├── ocb_test.c │ │ │ └── s_ocb_done.c │ │ └── ocb3 │ │ │ ├── ocb3_add_aad.c │ │ │ ├── ocb3_decrypt.c │ │ │ ├── ocb3_decrypt_last.c │ │ │ ├── ocb3_decrypt_verify_memory.c │ │ │ ├── ocb3_done.c │ │ │ ├── ocb3_encrypt.c │ │ │ ├── ocb3_encrypt_authenticate_memory.c │ │ │ ├── ocb3_encrypt_last.c │ │ │ ├── ocb3_init.c │ │ │ ├── ocb3_int_ntz.c │ │ │ ├── ocb3_int_xor_blocks.c │ │ │ └── ocb3_test.c │ │ ├── hashes │ │ ├── blake2b.c │ │ ├── blake2s.c │ │ ├── chc │ │ │ └── chc.c │ │ ├── helper │ │ │ ├── hash_file.c │ │ │ ├── hash_filehandle.c │ │ │ ├── hash_memory.c │ │ │ └── hash_memory_multi.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── rmd128.c │ │ ├── rmd160.c │ │ ├── rmd256.c │ │ ├── rmd320.c │ │ ├── sha1.c │ │ ├── sha2 │ │ │ ├── sha224.c │ │ │ ├── sha256.c │ │ │ ├── sha384.c │ │ │ ├── sha512.c │ │ │ ├── sha512_224.c │ │ │ └── sha512_256.c │ │ ├── sha3.c │ │ ├── sha3_test.c │ │ ├── tiger.c │ │ └── whirl │ │ │ ├── whirl.c │ │ │ └── whirltab.c │ │ ├── headers │ │ ├── tomcrypt.h │ │ ├── tomcrypt_argchk.h │ │ ├── tomcrypt_cfg.h │ │ ├── tomcrypt_cipher.h │ │ ├── tomcrypt_custom.h │ │ ├── tomcrypt_hash.h │ │ ├── tomcrypt_mac.h │ │ ├── tomcrypt_macros.h │ │ ├── tomcrypt_math.h │ │ ├── tomcrypt_misc.h │ │ ├── tomcrypt_pk.h │ │ ├── tomcrypt_pkcs.h │ │ ├── tomcrypt_private.h │ │ └── tomcrypt_prng.h │ │ ├── mac │ │ ├── blake2 │ │ │ ├── blake2bmac.c │ │ │ ├── blake2bmac_file.c │ │ │ ├── blake2bmac_memory.c │ │ │ ├── blake2bmac_memory_multi.c │ │ │ ├── blake2bmac_test.c │ │ │ ├── blake2smac.c │ │ │ ├── blake2smac_file.c │ │ │ ├── blake2smac_memory.c │ │ │ ├── blake2smac_memory_multi.c │ │ │ └── blake2smac_test.c │ │ ├── f9 │ │ │ ├── f9_done.c │ │ │ ├── f9_file.c │ │ │ ├── f9_init.c │ │ │ ├── f9_memory.c │ │ │ ├── f9_memory_multi.c │ │ │ ├── f9_process.c │ │ │ └── f9_test.c │ │ ├── hmac │ │ │ ├── hmac_done.c │ │ │ ├── hmac_file.c │ │ │ ├── hmac_init.c │ │ │ ├── hmac_memory.c │ │ │ ├── hmac_memory_multi.c │ │ │ ├── hmac_process.c │ │ │ └── hmac_test.c │ │ ├── omac │ │ │ ├── omac_done.c │ │ │ ├── omac_file.c │ │ │ ├── omac_init.c │ │ │ ├── omac_memory.c │ │ │ ├── omac_memory_multi.c │ │ │ ├── omac_process.c │ │ │ └── omac_test.c │ │ ├── pelican │ │ │ ├── pelican.c │ │ │ ├── pelican_memory.c │ │ │ └── pelican_test.c │ │ ├── pmac │ │ │ ├── pmac_done.c │ │ │ ├── pmac_file.c │ │ │ ├── pmac_init.c │ │ │ ├── pmac_memory.c │ │ │ ├── pmac_memory_multi.c │ │ │ ├── pmac_ntz.c │ │ │ ├── pmac_process.c │ │ │ ├── pmac_shift_xor.c │ │ │ └── pmac_test.c │ │ ├── poly1305 │ │ │ ├── poly1305.c │ │ │ ├── poly1305_file.c │ │ │ ├── poly1305_memory.c │ │ │ ├── poly1305_memory_multi.c │ │ │ └── poly1305_test.c │ │ └── xcbc │ │ │ ├── xcbc_done.c │ │ │ ├── xcbc_file.c │ │ │ ├── xcbc_init.c │ │ │ ├── xcbc_memory.c │ │ │ ├── xcbc_memory_multi.c │ │ │ ├── xcbc_process.c │ │ │ └── xcbc_test.c │ │ ├── math │ │ ├── fp │ │ │ └── ltc_ecc_fp_mulmod.c │ │ ├── gmp_desc.c │ │ ├── ltm_desc.c │ │ ├── multi.c │ │ ├── radix_to_bin.c │ │ ├── rand_bn.c │ │ ├── rand_prime.c │ │ └── tfm_desc.c │ │ ├── misc │ │ ├── adler32.c │ │ ├── base16 │ │ │ ├── base16_decode.c │ │ │ └── base16_encode.c │ │ ├── base32 │ │ │ ├── base32_decode.c │ │ │ └── base32_encode.c │ │ ├── base64 │ │ │ ├── base64_decode.c │ │ │ └── base64_encode.c │ │ ├── burn_stack.c │ │ ├── compare_testvector.c │ │ ├── copy_or_zeromem.c │ │ ├── crc32.c │ │ ├── crypt │ │ │ ├── crypt.c │ │ │ ├── crypt_argchk.c │ │ │ ├── crypt_cipher_descriptor.c │ │ │ ├── crypt_cipher_is_valid.c │ │ │ ├── crypt_constants.c │ │ │ ├── crypt_find_cipher.c │ │ │ ├── crypt_find_cipher_any.c │ │ │ ├── crypt_find_cipher_id.c │ │ │ ├── crypt_find_hash.c │ │ │ ├── crypt_find_hash_any.c │ │ │ ├── crypt_find_hash_id.c │ │ │ ├── crypt_find_hash_oid.c │ │ │ ├── crypt_find_prng.c │ │ │ ├── crypt_fsa.c │ │ │ ├── crypt_hash_descriptor.c │ │ │ ├── crypt_hash_is_valid.c │ │ │ ├── crypt_inits.c │ │ │ ├── crypt_ltc_mp_descriptor.c │ │ │ ├── crypt_prng_descriptor.c │ │ │ ├── crypt_prng_is_valid.c │ │ │ ├── crypt_prng_rng_descriptor.c │ │ │ ├── crypt_register_all_ciphers.c │ │ │ ├── crypt_register_all_hashes.c │ │ │ ├── crypt_register_all_prngs.c │ │ │ ├── crypt_register_cipher.c │ │ │ ├── crypt_register_hash.c │ │ │ ├── crypt_register_prng.c │ │ │ ├── crypt_sizes.c │ │ │ ├── crypt_unregister_cipher.c │ │ │ ├── crypt_unregister_hash.c │ │ │ └── crypt_unregister_prng.c │ │ ├── error_to_string.c │ │ ├── hkdf │ │ │ ├── hkdf.c │ │ │ └── hkdf_test.c │ │ ├── mem_neq.c │ │ ├── padding │ │ │ ├── padding_depad.c │ │ │ └── padding_pad.c │ │ ├── pbes │ │ │ ├── pbes.c │ │ │ ├── pbes1.c │ │ │ └── pbes2.c │ │ ├── pkcs12 │ │ │ ├── pkcs12_kdf.c │ │ │ └── pkcs12_utf8_to_utf16.c │ │ ├── pkcs5 │ │ │ ├── pkcs_5_1.c │ │ │ ├── pkcs_5_2.c │ │ │ └── pkcs_5_test.c │ │ ├── ssh │ │ │ ├── ssh_decode_sequence_multi.c │ │ │ └── ssh_encode_sequence_multi.c │ │ └── zeromem.c │ │ ├── modes │ │ ├── cbc │ │ │ ├── cbc_decrypt.c │ │ │ ├── cbc_done.c │ │ │ ├── cbc_encrypt.c │ │ │ ├── cbc_getiv.c │ │ │ ├── cbc_setiv.c │ │ │ └── cbc_start.c │ │ ├── cfb │ │ │ ├── cfb_decrypt.c │ │ │ ├── cfb_done.c │ │ │ ├── cfb_encrypt.c │ │ │ ├── cfb_getiv.c │ │ │ ├── cfb_setiv.c │ │ │ └── cfb_start.c │ │ ├── ctr │ │ │ ├── ctr_decrypt.c │ │ │ ├── ctr_done.c │ │ │ ├── ctr_encrypt.c │ │ │ ├── ctr_getiv.c │ │ │ ├── ctr_setiv.c │ │ │ ├── ctr_start.c │ │ │ └── ctr_test.c │ │ ├── ecb │ │ │ ├── ecb_decrypt.c │ │ │ ├── ecb_done.c │ │ │ ├── ecb_encrypt.c │ │ │ └── ecb_start.c │ │ ├── f8 │ │ │ ├── f8_decrypt.c │ │ │ ├── f8_done.c │ │ │ ├── f8_encrypt.c │ │ │ ├── f8_getiv.c │ │ │ ├── f8_setiv.c │ │ │ ├── f8_start.c │ │ │ └── f8_test_mode.c │ │ ├── lrw │ │ │ ├── lrw_decrypt.c │ │ │ ├── lrw_done.c │ │ │ ├── lrw_encrypt.c │ │ │ ├── lrw_getiv.c │ │ │ ├── lrw_process.c │ │ │ ├── lrw_setiv.c │ │ │ ├── lrw_start.c │ │ │ └── lrw_test.c │ │ ├── ofb │ │ │ ├── ofb_decrypt.c │ │ │ ├── ofb_done.c │ │ │ ├── ofb_encrypt.c │ │ │ ├── ofb_getiv.c │ │ │ ├── ofb_setiv.c │ │ │ └── ofb_start.c │ │ └── xts │ │ │ ├── xts_decrypt.c │ │ │ ├── xts_done.c │ │ │ ├── xts_encrypt.c │ │ │ ├── xts_init.c │ │ │ ├── xts_mult_x.c │ │ │ └── xts_test.c │ │ ├── pk │ │ ├── asn1 │ │ │ ├── der │ │ │ │ ├── bit │ │ │ │ │ ├── der_decode_bit_string.c │ │ │ │ │ ├── der_decode_raw_bit_string.c │ │ │ │ │ ├── der_encode_bit_string.c │ │ │ │ │ ├── der_encode_raw_bit_string.c │ │ │ │ │ └── der_length_bit_string.c │ │ │ │ ├── boolean │ │ │ │ │ ├── der_decode_boolean.c │ │ │ │ │ ├── der_encode_boolean.c │ │ │ │ │ └── der_length_boolean.c │ │ │ │ ├── choice │ │ │ │ │ └── der_decode_choice.c │ │ │ │ ├── custom_type │ │ │ │ │ ├── der_decode_custom_type.c │ │ │ │ │ ├── der_encode_custom_type.c │ │ │ │ │ └── der_length_custom_type.c │ │ │ │ ├── general │ │ │ │ │ ├── der_asn1_maps.c │ │ │ │ │ ├── der_decode_asn1_identifier.c │ │ │ │ │ ├── der_decode_asn1_length.c │ │ │ │ │ ├── der_encode_asn1_identifier.c │ │ │ │ │ ├── der_encode_asn1_length.c │ │ │ │ │ ├── der_length_asn1_identifier.c │ │ │ │ │ └── der_length_asn1_length.c │ │ │ │ ├── generalizedtime │ │ │ │ │ ├── der_decode_generalizedtime.c │ │ │ │ │ ├── der_encode_generalizedtime.c │ │ │ │ │ └── der_length_generalizedtime.c │ │ │ │ ├── ia5 │ │ │ │ │ ├── der_decode_ia5_string.c │ │ │ │ │ ├── der_encode_ia5_string.c │ │ │ │ │ └── der_length_ia5_string.c │ │ │ │ ├── integer │ │ │ │ │ ├── der_decode_integer.c │ │ │ │ │ ├── der_encode_integer.c │ │ │ │ │ └── der_length_integer.c │ │ │ │ ├── object_identifier │ │ │ │ │ ├── der_decode_object_identifier.c │ │ │ │ │ ├── der_encode_object_identifier.c │ │ │ │ │ └── der_length_object_identifier.c │ │ │ │ ├── octet │ │ │ │ │ ├── der_decode_octet_string.c │ │ │ │ │ ├── der_encode_octet_string.c │ │ │ │ │ └── der_length_octet_string.c │ │ │ │ ├── printable_string │ │ │ │ │ ├── der_decode_printable_string.c │ │ │ │ │ ├── der_encode_printable_string.c │ │ │ │ │ └── der_length_printable_string.c │ │ │ │ ├── sequence │ │ │ │ │ ├── der_decode_sequence_ex.c │ │ │ │ │ ├── der_decode_sequence_flexi.c │ │ │ │ │ ├── der_decode_sequence_multi.c │ │ │ │ │ ├── der_encode_sequence_ex.c │ │ │ │ │ ├── der_encode_sequence_multi.c │ │ │ │ │ ├── der_length_sequence.c │ │ │ │ │ ├── der_sequence_free.c │ │ │ │ │ └── der_sequence_shrink.c │ │ │ │ ├── set │ │ │ │ │ ├── der_encode_set.c │ │ │ │ │ └── der_encode_setof.c │ │ │ │ ├── short_integer │ │ │ │ │ ├── der_decode_short_integer.c │ │ │ │ │ ├── der_encode_short_integer.c │ │ │ │ │ └── der_length_short_integer.c │ │ │ │ ├── teletex_string │ │ │ │ │ ├── der_decode_teletex_string.c │ │ │ │ │ └── der_length_teletex_string.c │ │ │ │ ├── utctime │ │ │ │ │ ├── der_decode_utctime.c │ │ │ │ │ ├── der_encode_utctime.c │ │ │ │ │ └── der_length_utctime.c │ │ │ │ └── utf8 │ │ │ │ │ ├── der_decode_utf8_string.c │ │ │ │ │ ├── der_encode_utf8_string.c │ │ │ │ │ └── der_length_utf8_string.c │ │ │ ├── oid │ │ │ │ ├── pk_get_oid.c │ │ │ │ ├── pk_oid_cmp.c │ │ │ │ └── pk_oid_str.c │ │ │ ├── pkcs8 │ │ │ │ └── pkcs8_decode_flexi.c │ │ │ └── x509 │ │ │ │ ├── x509_decode_public_key_from_certificate.c │ │ │ │ ├── x509_decode_subject_public_key_info.c │ │ │ │ └── x509_encode_subject_public_key_info.c │ │ ├── dh │ │ │ ├── dh.c │ │ │ ├── dh_check_pubkey.c │ │ │ ├── dh_export.c │ │ │ ├── dh_export_key.c │ │ │ ├── dh_free.c │ │ │ ├── dh_generate_key.c │ │ │ ├── dh_import.c │ │ │ ├── dh_set.c │ │ │ ├── dh_set_pg_dhparam.c │ │ │ └── dh_shared_secret.c │ │ ├── dsa │ │ │ ├── dsa_decrypt_key.c │ │ │ ├── dsa_encrypt_key.c │ │ │ ├── dsa_export.c │ │ │ ├── dsa_free.c │ │ │ ├── dsa_generate_key.c │ │ │ ├── dsa_generate_pqg.c │ │ │ ├── dsa_import.c │ │ │ ├── dsa_make_key.c │ │ │ ├── dsa_set.c │ │ │ ├── dsa_set_pqg_dsaparam.c │ │ │ ├── dsa_shared_secret.c │ │ │ ├── dsa_sign_hash.c │ │ │ ├── dsa_verify_hash.c │ │ │ └── dsa_verify_key.c │ │ ├── ec25519 │ │ │ ├── ec25519_export.c │ │ │ ├── ec25519_import_pkcs8.c │ │ │ └── tweetnacl.c │ │ ├── ecc │ │ │ ├── ecc.c │ │ │ ├── ecc_ansi_x963_export.c │ │ │ ├── ecc_ansi_x963_import.c │ │ │ ├── ecc_decrypt_key.c │ │ │ ├── ecc_encrypt_key.c │ │ │ ├── ecc_export.c │ │ │ ├── ecc_export_openssl.c │ │ │ ├── ecc_find_curve.c │ │ │ ├── ecc_free.c │ │ │ ├── ecc_get_key.c │ │ │ ├── ecc_get_oid_str.c │ │ │ ├── ecc_get_size.c │ │ │ ├── ecc_import.c │ │ │ ├── ecc_import_openssl.c │ │ │ ├── ecc_import_pkcs8.c │ │ │ ├── ecc_import_x509.c │ │ │ ├── ecc_make_key.c │ │ │ ├── ecc_recover_key.c │ │ │ ├── ecc_set_curve.c │ │ │ ├── ecc_set_curve_internal.c │ │ │ ├── ecc_set_key.c │ │ │ ├── ecc_shared_secret.c │ │ │ ├── ecc_sign_hash.c │ │ │ ├── ecc_sizes.c │ │ │ ├── ecc_ssh_ecdsa_encode_name.c │ │ │ ├── ecc_verify_hash.c │ │ │ ├── ltc_ecc_export_point.c │ │ │ ├── ltc_ecc_import_point.c │ │ │ ├── ltc_ecc_is_point.c │ │ │ ├── ltc_ecc_is_point_at_infinity.c │ │ │ ├── ltc_ecc_map.c │ │ │ ├── ltc_ecc_mul2add.c │ │ │ ├── ltc_ecc_mulmod.c │ │ │ ├── ltc_ecc_mulmod_timing.c │ │ │ ├── ltc_ecc_points.c │ │ │ ├── ltc_ecc_projective_add_point.c │ │ │ ├── ltc_ecc_projective_dbl_point.c │ │ │ └── ltc_ecc_verify_key.c │ │ ├── ed25519 │ │ │ ├── ed25519_export.c │ │ │ ├── ed25519_import.c │ │ │ ├── ed25519_import_pkcs8.c │ │ │ ├── ed25519_import_x509.c │ │ │ ├── ed25519_make_key.c │ │ │ ├── ed25519_set_key.c │ │ │ ├── ed25519_sign.c │ │ │ └── ed25519_verify.c │ │ ├── pkcs1 │ │ │ ├── pkcs_1_i2osp.c │ │ │ ├── pkcs_1_mgf1.c │ │ │ ├── pkcs_1_oaep_decode.c │ │ │ ├── pkcs_1_oaep_encode.c │ │ │ ├── pkcs_1_os2ip.c │ │ │ ├── pkcs_1_pss_decode.c │ │ │ ├── pkcs_1_pss_encode.c │ │ │ ├── pkcs_1_v1_5_decode.c │ │ │ └── pkcs_1_v1_5_encode.c │ │ ├── rsa │ │ │ ├── rsa_decrypt_key.c │ │ │ ├── rsa_encrypt_key.c │ │ │ ├── rsa_export.c │ │ │ ├── rsa_exptmod.c │ │ │ ├── rsa_free.c │ │ │ ├── rsa_get_size.c │ │ │ ├── rsa_import.c │ │ │ ├── rsa_import_pkcs8.c │ │ │ ├── rsa_import_x509.c │ │ │ ├── rsa_make_key.c │ │ │ ├── rsa_set.c │ │ │ ├── rsa_sign_hash.c │ │ │ ├── rsa_sign_saltlen_get.c │ │ │ └── rsa_verify_hash.c │ │ └── x25519 │ │ │ ├── x25519_export.c │ │ │ ├── x25519_import.c │ │ │ ├── x25519_import_pkcs8.c │ │ │ ├── x25519_import_x509.c │ │ │ ├── x25519_make_key.c │ │ │ ├── x25519_set_key.c │ │ │ └── x25519_shared_secret.c │ │ ├── prngs │ │ ├── chacha20.c │ │ ├── fortuna.c │ │ ├── rc4.c │ │ ├── rng_get_bytes.c │ │ ├── rng_make_prng.c │ │ ├── sober128.c │ │ ├── sprng.c │ │ └── yarrow.c │ │ └── stream │ │ ├── chacha │ │ ├── chacha_crypt.c │ │ ├── chacha_done.c │ │ ├── chacha_ivctr32.c │ │ ├── chacha_ivctr64.c │ │ ├── chacha_keystream.c │ │ ├── chacha_memory.c │ │ ├── chacha_setup.c │ │ └── chacha_test.c │ │ ├── rabbit │ │ ├── rabbit.c │ │ └── rabbit_memory.c │ │ ├── rc4 │ │ ├── rc4_stream.c │ │ ├── rc4_stream_memory.c │ │ └── rc4_test.c │ │ ├── salsa20 │ │ ├── salsa20_crypt.c │ │ ├── salsa20_done.c │ │ ├── salsa20_ivctr64.c │ │ ├── salsa20_keystream.c │ │ ├── salsa20_memory.c │ │ ├── salsa20_setup.c │ │ ├── salsa20_test.c │ │ ├── xsalsa20_memory.c │ │ ├── xsalsa20_setup.c │ │ └── xsalsa20_test.c │ │ ├── sober128 │ │ ├── sober128_stream.c │ │ ├── sober128_stream_memory.c │ │ ├── sober128_test.c │ │ └── sober128tab.c │ │ └── sosemanuk │ │ ├── sosemanuk.c │ │ ├── sosemanuk_memory.c │ │ └── sosemanuk_test.c └── libtommath │ ├── LICENSE │ ├── README.md │ ├── bn_cutoffs.c │ ├── bn_deprecated.c │ ├── bn_mp_2expt.c │ ├── bn_mp_abs.c │ ├── bn_mp_add.c │ ├── bn_mp_add_d.c │ ├── bn_mp_addmod.c │ ├── bn_mp_and.c │ ├── bn_mp_clamp.c │ ├── bn_mp_clear.c │ ├── bn_mp_clear_multi.c │ ├── bn_mp_cmp.c │ ├── bn_mp_cmp_d.c │ ├── bn_mp_cmp_mag.c │ ├── bn_mp_cnt_lsb.c │ ├── bn_mp_complement.c │ ├── bn_mp_copy.c │ ├── bn_mp_count_bits.c │ ├── bn_mp_decr.c │ ├── bn_mp_div.c │ ├── bn_mp_div_2.c │ ├── bn_mp_div_2d.c │ ├── bn_mp_div_3.c │ ├── bn_mp_div_d.c │ ├── bn_mp_dr_is_modulus.c │ ├── bn_mp_dr_reduce.c │ ├── bn_mp_dr_setup.c │ ├── bn_mp_error_to_string.c │ ├── bn_mp_exch.c │ ├── bn_mp_export.c │ ├── bn_mp_expt_u32.c │ ├── bn_mp_exptmod.c │ ├── bn_mp_exteuclid.c │ ├── bn_mp_fread.c │ ├── bn_mp_fwrite.c │ ├── bn_mp_gcd.c │ ├── bn_mp_get_double.c │ ├── bn_mp_get_i32.c │ ├── bn_mp_get_i64.c │ ├── bn_mp_get_l.c │ ├── bn_mp_get_ll.c │ ├── bn_mp_get_mag_u32.c │ ├── bn_mp_get_mag_u64.c │ ├── bn_mp_get_mag_ul.c │ ├── bn_mp_get_mag_ull.c │ ├── bn_mp_grow.c │ ├── bn_mp_ilogb.c │ ├── bn_mp_import.c │ ├── bn_mp_incr.c │ ├── bn_mp_init.c │ ├── bn_mp_init_copy.c │ ├── bn_mp_init_i32.c │ ├── bn_mp_init_i64.c │ ├── bn_mp_init_l.c │ ├── bn_mp_init_ll.c │ ├── bn_mp_init_multi.c │ ├── bn_mp_init_set.c │ ├── bn_mp_init_size.c │ ├── bn_mp_init_u32.c │ ├── bn_mp_init_u64.c │ ├── bn_mp_init_ul.c │ ├── bn_mp_init_ull.c │ ├── bn_mp_invmod.c │ ├── bn_mp_is_square.c │ ├── bn_mp_iseven.c │ ├── bn_mp_isodd.c │ ├── bn_mp_kronecker.c │ ├── bn_mp_lcm.c │ ├── bn_mp_lshd.c │ ├── bn_mp_mod.c │ ├── bn_mp_mod_2d.c │ ├── bn_mp_mod_d.c │ ├── bn_mp_montgomery_calc_normalization.c │ ├── bn_mp_montgomery_reduce.c │ ├── bn_mp_montgomery_setup.c │ ├── bn_mp_mul.c │ ├── bn_mp_mul_2.c │ ├── bn_mp_mul_2d.c │ ├── bn_mp_mul_d.c │ ├── bn_mp_mulmod.c │ ├── bn_mp_neg.c │ ├── bn_mp_or.c │ ├── bn_mp_prime_fermat.c │ ├── bn_mp_prime_frobenius_underwood.c │ ├── bn_mp_prime_is_prime.c │ ├── bn_mp_prime_miller_rabin.c │ ├── bn_mp_prime_next_prime.c │ ├── bn_mp_prime_rabin_miller_trials.c │ ├── bn_mp_prime_rand.c │ ├── bn_mp_prime_strong_lucas_selfridge.c │ ├── bn_mp_radix_size.c │ ├── bn_mp_radix_smap.c │ ├── bn_mp_rand.c │ ├── bn_mp_read_radix.c │ ├── bn_mp_read_signed_bin.c │ ├── bn_mp_read_unsigned_bin.c │ ├── bn_mp_reduce.c │ ├── bn_mp_reduce_2k.c │ ├── bn_mp_reduce_2k_l.c │ ├── bn_mp_reduce_2k_setup.c │ ├── bn_mp_reduce_2k_setup_l.c │ ├── bn_mp_reduce_is_2k.c │ ├── bn_mp_reduce_is_2k_l.c │ ├── bn_mp_reduce_setup.c │ ├── bn_mp_root_u32.c │ ├── bn_mp_rshd.c │ ├── bn_mp_set.c │ ├── bn_mp_set_double.c │ ├── bn_mp_set_i32.c │ ├── bn_mp_set_i64.c │ ├── bn_mp_set_l.c │ ├── bn_mp_set_ll.c │ ├── bn_mp_set_u32.c │ ├── bn_mp_set_u64.c │ ├── bn_mp_set_ul.c │ ├── bn_mp_set_ull.c │ ├── bn_mp_shrink.c │ ├── bn_mp_signed_bin_size.c │ ├── bn_mp_signed_rsh.c │ ├── bn_mp_sqr.c │ ├── bn_mp_sqrmod.c │ ├── bn_mp_sqrt.c │ ├── bn_mp_sqrtmod_prime.c │ ├── bn_mp_sub.c │ ├── bn_mp_sub_d.c │ ├── bn_mp_submod.c │ ├── bn_mp_to_signed_bin.c │ ├── bn_mp_to_signed_bin_n.c │ ├── bn_mp_to_unsigned_bin.c │ ├── bn_mp_to_unsigned_bin_n.c │ ├── bn_mp_toradix.c │ ├── bn_mp_toradix_n.c │ ├── bn_mp_unsigned_bin_size.c │ ├── bn_mp_xor.c │ ├── bn_mp_zero.c │ ├── bn_prime_tab.c │ ├── bn_s_mp_add.c │ ├── bn_s_mp_balance_mul.c │ ├── bn_s_mp_exptmod.c │ ├── bn_s_mp_exptmod_fast.c │ ├── bn_s_mp_get_bit.c │ ├── bn_s_mp_invmod_fast.c │ ├── bn_s_mp_invmod_slow.c │ ├── bn_s_mp_karatsuba_mul.c │ ├── bn_s_mp_karatsuba_sqr.c │ ├── bn_s_mp_montgomery_reduce_fast.c │ ├── bn_s_mp_mul_digs.c │ ├── bn_s_mp_mul_digs_fast.c │ ├── bn_s_mp_mul_high_digs.c │ ├── bn_s_mp_mul_high_digs_fast.c │ ├── bn_s_mp_prime_is_divisible.c │ ├── bn_s_mp_rand_jenkins.c │ ├── bn_s_mp_rand_platform.c │ ├── bn_s_mp_reverse.c │ ├── bn_s_mp_sqr.c │ ├── bn_s_mp_sqr_fast.c │ ├── bn_s_mp_sub.c │ ├── bn_s_mp_toom_mul.c │ ├── bn_s_mp_toom_sqr.c │ ├── makefile │ ├── makefile.shared │ ├── makefile.unix │ ├── makefile_include.mk │ ├── tommath.def │ ├── tommath.h │ ├── tommath_class.h │ ├── tommath_cutoffs.h │ ├── tommath_private.h │ └── tommath_superclass.h ├── tools ├── binutils-2.32-twizzler-hosted.patch ├── gcc-9.2.0-twizzler-hosted.patch ├── perf.py ├── prep.sh ├── toolchain-userspace-libs.sh ├── toolchain-userspace-libs2.sh ├── toolchain-userspace.sh └── toolchain.sh ├── us ├── DIRS ├── append_ns.sh ├── append_ns_simple.sh ├── bin │ ├── include.mk │ ├── init │ │ ├── include.mk │ │ └── main.c │ ├── pager │ │ ├── include.mk │ │ ├── pager.cpp │ │ └── test.h │ ├── sectest │ │ ├── include.mk │ │ ├── main.c │ │ └── stlib.c │ ├── term │ │ ├── include.mk │ │ ├── kbd.c │ │ ├── ssfn.h │ │ ├── stb_image.h │ │ └── term.c │ ├── testbench │ │ ├── include.mk │ │ └── main.c │ ├── twzdev │ │ ├── include.mk │ │ ├── pcie.c │ │ ├── pcie.h │ │ └── twzdev.c │ └── twzutils │ │ ├── bench.c │ │ ├── bstream.c │ │ ├── dynlink.c │ │ ├── include.mk │ │ ├── init.c │ │ ├── init_bootstrap.c │ │ ├── init_test.c │ │ ├── kls.c │ │ ├── kv.c │ │ ├── kv.h │ │ ├── kvdr.c │ │ ├── login.c │ │ ├── lscpu.c │ │ ├── lsmem.c │ │ ├── nls.c │ │ ├── pty.c │ │ ├── shell.c │ │ ├── sqb.c │ │ └── tst.cpp ├── build_nvme.sh ├── drivers │ ├── e1000 │ │ ├── e1000.cpp │ │ ├── e1000.h │ │ └── include.mk │ ├── include.mk │ ├── keyboard │ │ ├── include.mk │ │ └── keyboard.c │ ├── nvme │ │ ├── include.mk │ │ ├── nvme.cpp │ │ └── nvme.h │ └── serial │ │ ├── include.mk │ │ └── serial.c ├── elf.ld ├── gen_root.py ├── gen_root.sh ├── gen_root_simple.sh ├── include.mk ├── include │ └── twz │ │ ├── __cpp_compat.h │ │ ├── __twz.h │ │ ├── _err.h │ │ ├── _fault.h │ │ ├── _key.h │ │ ├── _kso.h │ │ ├── _obj.h │ │ ├── _objid.h │ │ ├── _queue.h │ │ ├── _sctx.h │ │ ├── _slots.h │ │ ├── _sys.h │ │ ├── _thrd.h │ │ ├── _types.h │ │ ├── _view.h │ │ ├── alloc.h │ │ ├── bstream.h │ │ ├── btree.h │ │ ├── debug.h │ │ ├── driver │ │ ├── bus.h │ │ ├── device.h │ │ ├── memory.h │ │ ├── misc.h │ │ ├── msi.h │ │ ├── pcie.h │ │ ├── processor.h │ │ ├── queue.h │ │ └── system.h │ │ ├── event.h │ │ ├── fault.h │ │ ├── gate.h │ │ ├── hier.h │ │ ├── io.h │ │ ├── keyring.h │ │ ├── mutex.h │ │ ├── name.h │ │ ├── obj.h │ │ ├── objctl.h │ │ ├── persist.h │ │ ├── pty.h │ │ ├── queue.h │ │ ├── security.h │ │ ├── sys.h │ │ ├── thread.h │ │ ├── twztry.h │ │ ├── tx.h │ │ ├── user.h │ │ └── view.h ├── inconsolata.sfn ├── libtwz │ ├── bstream.c │ ├── driver.c │ ├── event.c │ ├── fault.c │ ├── hier.c │ ├── include.mk │ ├── include │ │ ├── internal │ │ │ └── alloc.h │ │ ├── libtwz.h │ │ └── twz.h │ ├── io.c │ ├── kso.c │ ├── libtwz.c │ ├── libtwz.so.flags │ ├── mutex.c │ ├── name.c │ ├── oa.c │ ├── object.c │ ├── pty.c │ ├── queue.c │ ├── thread.c │ └── view.c ├── mountains.jpeg ├── musl-1.1.16 │ ├── .gitignore │ ├── COPYRIGHT │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── VERSION │ ├── WHATSNEW │ ├── arch │ │ ├── generic │ │ │ └── bits │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipc.h │ │ │ │ ├── link.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── socket.h │ │ │ │ ├── statfs.h │ │ │ │ └── termios.h │ │ ├── i386 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── endian.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ └── x86_64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── endian.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── io.h │ │ │ ├── ipc.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ ├── configure │ ├── crt │ │ ├── Scrt1.c │ │ ├── aarch64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── arm │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── crt1.c │ │ ├── crti.c │ │ ├── crtn.c │ │ ├── i386 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── microblaze │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mips │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mips64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mipsn32 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── or1k │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── powerpc │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── powerpc64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── rcrt1.c │ │ ├── s390x │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── sh │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── x32 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ └── x86_64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ ├── elf_x86_64.xs │ ├── include │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── alltypes.h.in │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── byteswap.h │ │ ├── complex.h │ │ ├── cpio.h │ │ ├── crypt.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── elf.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── ftw.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── lastlog.h │ │ ├── libgen.h │ │ ├── libintl.h │ │ ├── limits.h │ │ ├── link.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── mntent.h │ │ ├── monetary.h │ │ ├── mqueue.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── ether.h │ │ │ ├── icmp6.h │ │ │ ├── if_ether.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── netpacket │ │ │ └── packet.h │ │ ├── nl_types.h │ │ ├── paths.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pty.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── resolv.h │ │ ├── sched.h │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── shadow.h │ │ ├── signal.h │ │ ├── spawn.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stdc-predef.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── stdnoreturn.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── auxv.h │ │ │ ├── cachectl.h │ │ │ ├── dir.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fanotify.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kd.h │ │ │ ├── klog.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── param.h │ │ │ ├── personality.h │ │ │ ├── poll.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── sendfile.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── syslog.h │ │ │ ├── sysmacros.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── user.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── vt.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── syscall.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── threads.h │ │ ├── time.h │ │ ├── uchar.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── values.h │ │ ├── wait.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wordexp.h │ ├── ldso │ │ ├── dlstart.c │ │ └── dynlink.c │ ├── src │ │ ├── aio │ │ │ ├── aio.c │ │ │ ├── aio_suspend.c │ │ │ └── lio_listio.c │ │ ├── complex │ │ │ ├── __cexp.c │ │ │ ├── __cexpf.c │ │ │ ├── cabs.c │ │ │ ├── cabsf.c │ │ │ ├── cabsl.c │ │ │ ├── cacos.c │ │ │ ├── cacosf.c │ │ │ ├── cacosh.c │ │ │ ├── cacoshf.c │ │ │ ├── cacoshl.c │ │ │ ├── cacosl.c │ │ │ ├── carg.c │ │ │ ├── cargf.c │ │ │ ├── cargl.c │ │ │ ├── casin.c │ │ │ ├── casinf.c │ │ │ ├── casinh.c │ │ │ ├── casinhf.c │ │ │ ├── casinhl.c │ │ │ ├── casinl.c │ │ │ ├── catan.c │ │ │ ├── catanf.c │ │ │ ├── catanh.c │ │ │ ├── catanhf.c │ │ │ ├── catanhl.c │ │ │ ├── catanl.c │ │ │ ├── ccos.c │ │ │ ├── ccosf.c │ │ │ ├── ccosh.c │ │ │ ├── ccoshf.c │ │ │ ├── ccoshl.c │ │ │ ├── ccosl.c │ │ │ ├── cexp.c │ │ │ ├── cexpf.c │ │ │ ├── cexpl.c │ │ │ ├── cimag.c │ │ │ ├── cimagf.c │ │ │ ├── cimagl.c │ │ │ ├── clog.c │ │ │ ├── clogf.c │ │ │ ├── clogl.c │ │ │ ├── conj.c │ │ │ ├── conjf.c │ │ │ ├── conjl.c │ │ │ ├── cpow.c │ │ │ ├── cpowf.c │ │ │ ├── cpowl.c │ │ │ ├── cproj.c │ │ │ ├── cprojf.c │ │ │ ├── cprojl.c │ │ │ ├── creal.c │ │ │ ├── crealf.c │ │ │ ├── creall.c │ │ │ ├── csin.c │ │ │ ├── csinf.c │ │ │ ├── csinh.c │ │ │ ├── csinhf.c │ │ │ ├── csinhl.c │ │ │ ├── csinl.c │ │ │ ├── csqrt.c │ │ │ ├── csqrtf.c │ │ │ ├── csqrtl.c │ │ │ ├── ctan.c │ │ │ ├── ctanf.c │ │ │ ├── ctanh.c │ │ │ ├── ctanhf.c │ │ │ ├── ctanhl.c │ │ │ └── ctanl.c │ │ ├── conf │ │ │ ├── confstr.c │ │ │ ├── fpathconf.c │ │ │ ├── legacy.c │ │ │ ├── pathconf.c │ │ │ └── sysconf.c │ │ ├── crypt │ │ │ ├── crypt.c │ │ │ ├── crypt_blowfish.c │ │ │ ├── crypt_des.c │ │ │ ├── crypt_md5.c │ │ │ ├── crypt_r.c │ │ │ ├── crypt_sha256.c │ │ │ ├── crypt_sha512.c │ │ │ └── encrypt.c │ │ ├── ctype │ │ │ ├── __ctype_b_loc.c │ │ │ ├── __ctype_get_mb_cur_max.c │ │ │ ├── __ctype_tolower_loc.c │ │ │ ├── __ctype_toupper_loc.c │ │ │ ├── alpha.h │ │ │ ├── isalnum.c │ │ │ ├── isalpha.c │ │ │ ├── isascii.c │ │ │ ├── isblank.c │ │ │ ├── iscntrl.c │ │ │ ├── isdigit.c │ │ │ ├── isgraph.c │ │ │ ├── islower.c │ │ │ ├── isprint.c │ │ │ ├── ispunct.c │ │ │ ├── isspace.c │ │ │ ├── isupper.c │ │ │ ├── iswalnum.c │ │ │ ├── iswalpha.c │ │ │ ├── iswblank.c │ │ │ ├── iswcntrl.c │ │ │ ├── iswctype.c │ │ │ ├── iswdigit.c │ │ │ ├── iswgraph.c │ │ │ ├── iswlower.c │ │ │ ├── iswprint.c │ │ │ ├── iswpunct.c │ │ │ ├── iswspace.c │ │ │ ├── iswupper.c │ │ │ ├── iswxdigit.c │ │ │ ├── isxdigit.c │ │ │ ├── nonspacing.h │ │ │ ├── punct.h │ │ │ ├── toascii.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ ├── towctrans.c │ │ │ ├── wcswidth.c │ │ │ ├── wctrans.c │ │ │ ├── wcwidth.c │ │ │ └── wide.h │ │ ├── dirent │ │ │ ├── __dirent.h │ │ │ ├── __getdents.c │ │ │ ├── alphasort.c │ │ │ ├── closedir.c │ │ │ ├── dirfd.c │ │ │ ├── fdopendir.c │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── readdir_r.c │ │ │ ├── rewinddir.c │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── telldir.c │ │ │ └── versionsort.c │ │ ├── env │ │ │ ├── __environ.c │ │ │ ├── __init_tls.c │ │ │ ├── __libc_start_main.c │ │ │ ├── __reset_tls.c │ │ │ ├── __stack_chk_fail.c │ │ │ ├── clearenv.c │ │ │ ├── getenv.c │ │ │ ├── putenv.c │ │ │ ├── setenv.c │ │ │ └── unsetenv.c │ │ ├── errno │ │ │ ├── __errno_location.c │ │ │ ├── __strerror.h │ │ │ └── strerror.c │ │ ├── exit │ │ │ ├── _Exit.c │ │ │ ├── abort.c │ │ │ ├── arm │ │ │ │ └── __aeabi_atexit.c │ │ │ ├── assert.c │ │ │ ├── at_quick_exit.c │ │ │ ├── atexit.c │ │ │ ├── exit.c │ │ │ └── quick_exit.c │ │ ├── fcntl │ │ │ ├── creat.c │ │ │ ├── fcntl.c │ │ │ ├── open.c │ │ │ ├── openat.c │ │ │ ├── posix_fadvise.c │ │ │ └── posix_fallocate.c │ │ ├── fenv │ │ │ ├── __flt_rounds.c │ │ │ ├── aarch64 │ │ │ │ └── fenv.s │ │ │ ├── arm │ │ │ │ ├── fenv-hf.S │ │ │ │ └── fenv.c │ │ │ ├── fegetexceptflag.c │ │ │ ├── feholdexcept.c │ │ │ ├── fenv.c │ │ │ ├── fesetexceptflag.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── i386 │ │ │ │ └── fenv.s │ │ │ ├── mips │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── mips64 │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── mipsn32 │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── powerpc │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── powerpc64 │ │ │ │ └── fenv.c │ │ │ ├── s390x │ │ │ │ └── fenv.c │ │ │ ├── sh │ │ │ │ ├── fenv-nofpu.c │ │ │ │ └── fenv.S │ │ │ ├── x32 │ │ │ │ └── fenv.s │ │ │ └── x86_64 │ │ │ │ └── fenv.s │ │ ├── internal │ │ │ ├── aarch64 │ │ │ │ └── syscall.s │ │ │ ├── arm │ │ │ │ └── syscall.s │ │ │ ├── atomic.h │ │ │ ├── dynlink.h │ │ │ ├── fdpic_crt.h │ │ │ ├── floatscan.c │ │ │ ├── floatscan.h │ │ │ ├── futex.h │ │ │ ├── i386 │ │ │ │ └── syscall.s │ │ │ ├── intscan.c │ │ │ ├── intscan.h │ │ │ ├── ksigaction.h │ │ │ ├── libc.c │ │ │ ├── libc.h │ │ │ ├── libm.h │ │ │ ├── locale_impl.h │ │ │ ├── microblaze │ │ │ │ └── syscall.s │ │ │ ├── mips │ │ │ │ └── syscall.s │ │ │ ├── mips64 │ │ │ │ └── syscall.s │ │ │ ├── mipsn32 │ │ │ │ └── syscall.s │ │ │ ├── or1k │ │ │ │ └── syscall.s │ │ │ ├── powerpc │ │ │ │ └── syscall.s │ │ │ ├── powerpc64 │ │ │ │ └── syscall.s │ │ │ ├── procfdname.c │ │ │ ├── pthread_impl.h │ │ │ ├── s390x │ │ │ │ └── syscall.s │ │ │ ├── sh │ │ │ │ ├── __shcall.c │ │ │ │ └── syscall.s │ │ │ ├── shgetc.c │ │ │ ├── shgetc.h │ │ │ ├── stdio_impl.h │ │ │ ├── syscall.c │ │ │ ├── syscall.h │ │ │ ├── syscall_ret.c │ │ │ ├── vdso.c │ │ │ ├── version.c │ │ │ ├── vis.h │ │ │ ├── x32 │ │ │ │ └── syscall.s │ │ │ └── x86_64 │ │ │ │ └── syscall.s │ │ ├── ipc │ │ │ ├── ftok.c │ │ │ ├── ipc.h │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── semtimedop.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ └── shmget.c │ │ ├── ldso │ │ │ ├── __dlsym.c │ │ │ ├── aarch64 │ │ │ │ ├── dlsym.s │ │ │ │ └── tlsdesc.s │ │ │ ├── arm │ │ │ │ ├── dlsym.s │ │ │ │ └── find_exidx.c │ │ │ ├── dl_iterate_phdr.c │ │ │ ├── dladdr.c │ │ │ ├── dlclose.c │ │ │ ├── dlerror.c │ │ │ ├── dlinfo.c │ │ │ ├── dlopen.c │ │ │ ├── dlsym.c │ │ │ ├── i386 │ │ │ │ ├── dlsym.s │ │ │ │ └── tlsdesc.s │ │ │ ├── microblaze │ │ │ │ └── dlsym.s │ │ │ ├── mips │ │ │ │ └── dlsym.s │ │ │ ├── mips64 │ │ │ │ └── dlsym.s │ │ │ ├── mipsn32 │ │ │ │ └── dlsym.s │ │ │ ├── or1k │ │ │ │ └── dlsym.s │ │ │ ├── powerpc │ │ │ │ └── dlsym.s │ │ │ ├── powerpc64 │ │ │ │ └── dlsym.s │ │ │ ├── sh │ │ │ │ └── dlsym.s │ │ │ ├── tlsdesc.c │ │ │ ├── x32 │ │ │ │ └── dlsym.s │ │ │ └── x86_64 │ │ │ │ ├── dlsym.s │ │ │ │ └── tlsdesc.s │ │ ├── legacy │ │ │ ├── cuserid.c │ │ │ ├── daemon.c │ │ │ ├── err.c │ │ │ ├── euidaccess.c │ │ │ ├── ftw.c │ │ │ ├── futimes.c │ │ │ ├── getdtablesize.c │ │ │ ├── getloadavg.c │ │ │ ├── getpagesize.c │ │ │ ├── getpass.c │ │ │ ├── getusershell.c │ │ │ ├── isastream.c │ │ │ ├── lutimes.c │ │ │ ├── ulimit.c │ │ │ ├── utmpx.c │ │ │ └── valloc.c │ │ ├── linux │ │ │ ├── adjtime.c │ │ │ ├── adjtimex.c │ │ │ ├── arch_prctl.c │ │ │ ├── brk.c │ │ │ ├── cache.c │ │ │ ├── cap.c │ │ │ ├── chroot.c │ │ │ ├── clock_adjtime.c │ │ │ ├── clone.c │ │ │ ├── epoll.c │ │ │ ├── eventfd.c │ │ │ ├── fallocate.c │ │ │ ├── fanotify.c │ │ │ ├── flock.c │ │ │ ├── inotify.c │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── klogctl.c │ │ │ ├── module.c │ │ │ ├── mount.c │ │ │ ├── personality.c │ │ │ ├── pivot_root.c │ │ │ ├── ppoll.c │ │ │ ├── prctl.c │ │ │ ├── prlimit.c │ │ │ ├── process_vm.c │ │ │ ├── ptrace.c │ │ │ ├── quotactl.c │ │ │ ├── readahead.c │ │ │ ├── reboot.c │ │ │ ├── remap_file_pages.c │ │ │ ├── sbrk.c │ │ │ ├── sendfile.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostname.c │ │ │ ├── setns.c │ │ │ ├── settimeofday.c │ │ │ ├── signalfd.c │ │ │ ├── splice.c │ │ │ ├── stime.c │ │ │ ├── swap.c │ │ │ ├── sync_file_range.c │ │ │ ├── syncfs.c │ │ │ ├── sysinfo.c │ │ │ ├── tee.c │ │ │ ├── timerfd.c │ │ │ ├── unshare.c │ │ │ ├── utimes.c │ │ │ ├── vhangup.c │ │ │ ├── vmsplice.c │ │ │ ├── wait3.c │ │ │ ├── wait4.c │ │ │ ├── x32 │ │ │ │ └── sysinfo.c │ │ │ └── xattr.c │ │ ├── locale │ │ │ ├── __lctrans.c │ │ │ ├── __mo_lookup.c │ │ │ ├── big5.h │ │ │ ├── bind_textdomain_codeset.c │ │ │ ├── c_locale.c │ │ │ ├── catclose.c │ │ │ ├── catgets.c │ │ │ ├── catopen.c │ │ │ ├── codepages.h │ │ │ ├── dcngettext.c │ │ │ ├── duplocale.c │ │ │ ├── freelocale.c │ │ │ ├── gb18030.h │ │ │ ├── hkscs.h │ │ │ ├── iconv.c │ │ │ ├── jis0208.h │ │ │ ├── ksc.h │ │ │ ├── langinfo.c │ │ │ ├── legacychars.h │ │ │ ├── locale_map.c │ │ │ ├── localeconv.c │ │ │ ├── newlocale.c │ │ │ ├── pleval.c │ │ │ ├── setlocale.c │ │ │ ├── strcoll.c │ │ │ ├── strfmon.c │ │ │ ├── strxfrm.c │ │ │ ├── textdomain.c │ │ │ ├── uselocale.c │ │ │ ├── wcscoll.c │ │ │ └── wcsxfrm.c │ │ ├── malloc │ │ │ ├── DESIGN │ │ │ ├── __brk.c │ │ │ ├── aligned_alloc.c │ │ │ ├── calloc.c │ │ │ ├── expand_heap.c │ │ │ ├── lite_malloc.c │ │ │ ├── malloc.c │ │ │ ├── malloc_usable_size.c │ │ │ ├── memalign.c │ │ │ └── posix_memalign.c │ │ ├── math │ │ │ ├── __cos.c │ │ │ ├── __cosdf.c │ │ │ ├── __cosl.c │ │ │ ├── __expo2.c │ │ │ ├── __expo2f.c │ │ │ ├── __fpclassify.c │ │ │ ├── __fpclassifyf.c │ │ │ ├── __fpclassifyl.c │ │ │ ├── __invtrigl.c │ │ │ ├── __invtrigl.h │ │ │ ├── __polevll.c │ │ │ ├── __rem_pio2.c │ │ │ ├── __rem_pio2_large.c │ │ │ ├── __rem_pio2f.c │ │ │ ├── __rem_pio2l.c │ │ │ ├── __signbit.c │ │ │ ├── __signbitf.c │ │ │ ├── __signbitl.c │ │ │ ├── __sin.c │ │ │ ├── __sindf.c │ │ │ ├── __sinl.c │ │ │ ├── __tan.c │ │ │ ├── __tandf.c │ │ │ ├── __tanl.c │ │ │ ├── aarch64 │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── sqrt.s │ │ │ │ └── sqrtf.s │ │ │ ├── acos.c │ │ │ ├── acosf.c │ │ │ ├── acosh.c │ │ │ ├── acoshf.c │ │ │ ├── acoshl.c │ │ │ ├── acosl.c │ │ │ ├── arm │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrtf.c │ │ │ ├── asin.c │ │ │ ├── asinf.c │ │ │ ├── asinh.c │ │ │ ├── asinhf.c │ │ │ ├── asinhl.c │ │ │ ├── asinl.c │ │ │ ├── atan.c │ │ │ ├── atan2.c │ │ │ ├── atan2f.c │ │ │ ├── atan2l.c │ │ │ ├── atanf.c │ │ │ ├── atanh.c │ │ │ ├── atanhf.c │ │ │ ├── atanhl.c │ │ │ ├── atanl.c │ │ │ ├── cbrt.c │ │ │ ├── cbrtf.c │ │ │ ├── cbrtl.c │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── ceill.c │ │ │ ├── copysign.c │ │ │ ├── copysignf.c │ │ │ ├── copysignl.c │ │ │ ├── cos.c │ │ │ ├── cosf.c │ │ │ ├── cosh.c │ │ │ ├── coshf.c │ │ │ ├── coshl.c │ │ │ ├── cosl.c │ │ │ ├── erf.c │ │ │ ├── erff.c │ │ │ ├── erfl.c │ │ │ ├── exp.c │ │ │ ├── exp10.c │ │ │ ├── exp10f.c │ │ │ ├── exp10l.c │ │ │ ├── exp2.c │ │ │ ├── exp2f.c │ │ │ ├── exp2l.c │ │ │ ├── expf.c │ │ │ ├── expl.c │ │ │ ├── expm1.c │ │ │ ├── expm1f.c │ │ │ ├── expm1l.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── fdim.c │ │ │ ├── fdimf.c │ │ │ ├── fdiml.c │ │ │ ├── finite.c │ │ │ ├── finitef.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── floorl.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmal.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmaxl.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── fminl.c │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fmodl.c │ │ │ ├── frexp.c │ │ │ ├── frexpf.c │ │ │ ├── frexpl.c │ │ │ ├── hypot.c │ │ │ ├── hypotf.c │ │ │ ├── hypotl.c │ │ │ ├── i386 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acos.s │ │ │ │ ├── acosf.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asin.s │ │ │ │ ├── asinf.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan.s │ │ │ │ ├── atan2.s │ │ │ │ ├── atan2f.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanf.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceil.s │ │ │ │ ├── ceilf.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp.s │ │ │ │ ├── exp2.s │ │ │ │ ├── exp2f.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expf.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1.s │ │ │ │ ├── expm1f.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floor.s │ │ │ │ ├── floorf.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmod.s │ │ │ │ ├── fmodf.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── hypot.s │ │ │ │ ├── hypotf.s │ │ │ │ ├── ldexp.s │ │ │ │ ├── ldexpf.s │ │ │ │ ├── ldexpl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log.s │ │ │ │ ├── log10.s │ │ │ │ ├── log10f.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1p.s │ │ │ │ ├── log1pf.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2.s │ │ │ │ ├── log2f.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logf.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainder.s │ │ │ │ ├── remainderf.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── remquo.s │ │ │ │ ├── remquof.s │ │ │ │ ├── remquol.s │ │ │ │ ├── rint.s │ │ │ │ ├── rintf.s │ │ │ │ ├── rintl.s │ │ │ │ ├── scalbln.s │ │ │ │ ├── scalblnf.s │ │ │ │ ├── scalblnl.s │ │ │ │ ├── scalbn.s │ │ │ │ ├── scalbnf.s │ │ │ │ ├── scalbnl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ ├── trunc.s │ │ │ │ ├── truncf.s │ │ │ │ └── truncl.s │ │ │ ├── ilogb.c │ │ │ ├── ilogbf.c │ │ │ ├── ilogbl.c │ │ │ ├── j0.c │ │ │ ├── j0f.c │ │ │ ├── j1.c │ │ │ ├── j1f.c │ │ │ ├── jn.c │ │ │ ├── jnf.c │ │ │ ├── ldexp.c │ │ │ ├── ldexpf.c │ │ │ ├── ldexpl.c │ │ │ ├── lgamma.c │ │ │ ├── lgamma_r.c │ │ │ ├── lgammaf.c │ │ │ ├── lgammaf_r.c │ │ │ ├── lgammal.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── llroundl.c │ │ │ ├── log.c │ │ │ ├── log10.c │ │ │ ├── log10f.c │ │ │ ├── log10l.c │ │ │ ├── log1p.c │ │ │ ├── log1pf.c │ │ │ ├── log1pl.c │ │ │ ├── log2.c │ │ │ ├── log2f.c │ │ │ ├── log2l.c │ │ │ ├── logb.c │ │ │ ├── logbf.c │ │ │ ├── logbl.c │ │ │ ├── logf.c │ │ │ ├── logl.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── lroundl.c │ │ │ ├── modf.c │ │ │ ├── modff.c │ │ │ ├── modfl.c │ │ │ ├── nan.c │ │ │ ├── nanf.c │ │ │ ├── nanl.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── nearbyintl.c │ │ │ ├── nextafter.c │ │ │ ├── nextafterf.c │ │ │ ├── nextafterl.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── nexttowardl.c │ │ │ ├── pow.c │ │ │ ├── powf.c │ │ │ ├── powl.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remainderl.c │ │ │ ├── remquo.c │ │ │ ├── remquof.c │ │ │ ├── remquol.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── roundl.c │ │ │ ├── scalb.c │ │ │ ├── scalbf.c │ │ │ ├── scalbln.c │ │ │ ├── scalblnf.c │ │ │ ├── scalblnl.c │ │ │ ├── scalbn.c │ │ │ ├── scalbnf.c │ │ │ ├── scalbnl.c │ │ │ ├── signgam.c │ │ │ ├── significand.c │ │ │ ├── significandf.c │ │ │ ├── sin.c │ │ │ ├── sincos.c │ │ │ ├── sincosf.c │ │ │ ├── sincosl.c │ │ │ ├── sinf.c │ │ │ ├── sinh.c │ │ │ ├── sinhf.c │ │ │ ├── sinhl.c │ │ │ ├── sinl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── tan.c │ │ │ ├── tanf.c │ │ │ ├── tanh.c │ │ │ ├── tanhf.c │ │ │ ├── tanhl.c │ │ │ ├── tanl.c │ │ │ ├── tgamma.c │ │ │ ├── tgammaf.c │ │ │ ├── tgammal.c │ │ │ ├── trunc.c │ │ │ ├── truncf.c │ │ │ ├── truncl.c │ │ │ ├── x32 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ │ └── x86_64 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ ├── misc │ │ │ ├── a64l.c │ │ │ ├── basename.c │ │ │ ├── dirname.c │ │ │ ├── ffs.c │ │ │ ├── ffsl.c │ │ │ ├── ffsll.c │ │ │ ├── fmtmsg.c │ │ │ ├── forkpty.c │ │ │ ├── get_current_dir_name.c │ │ │ ├── getauxval.c │ │ │ ├── getdomainname.c │ │ │ ├── gethostid.c │ │ │ ├── getopt.c │ │ │ ├── getopt_long.c │ │ │ ├── getpriority.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit.c │ │ │ ├── getrusage.c │ │ │ ├── getsubopt.c │ │ │ ├── initgroups.c │ │ │ ├── ioctl.c │ │ │ ├── issetugid.c │ │ │ ├── lockf.c │ │ │ ├── login_tty.c │ │ │ ├── mntent.c │ │ │ ├── nftw.c │ │ │ ├── openpty.c │ │ │ ├── ptsname.c │ │ │ ├── pty.c │ │ │ ├── realpath.c │ │ │ ├── setdomainname.c │ │ │ ├── setpriority.c │ │ │ ├── setrlimit.c │ │ │ ├── syscall.c │ │ │ ├── syslog.c │ │ │ ├── uname.c │ │ │ └── wordexp.c │ │ ├── mman │ │ │ ├── madvise.c │ │ │ ├── mincore.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── mmap.c │ │ │ ├── mprotect.c │ │ │ ├── mremap.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── munmap.c │ │ │ ├── posix_madvise.c │ │ │ └── shm_open.c │ │ ├── mq │ │ │ ├── mq_close.c │ │ │ ├── mq_getattr.c │ │ │ ├── mq_notify.c │ │ │ ├── mq_open.c │ │ │ ├── mq_receive.c │ │ │ ├── mq_send.c │ │ │ ├── mq_setattr.c │ │ │ ├── mq_timedreceive.c │ │ │ ├── mq_timedsend.c │ │ │ └── mq_unlink.c │ │ ├── multibyte │ │ │ ├── btowc.c │ │ │ ├── c16rtomb.c │ │ │ ├── c32rtomb.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── mblen.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtoc16.c │ │ │ ├── mbrtoc32.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbsnrtowcs.c │ │ │ ├── mbsrtowcs.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbtowc.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsnrtombs.c │ │ │ ├── wcsrtombs.c │ │ │ ├── wcstombs.c │ │ │ ├── wctob.c │ │ │ └── wctomb.c │ │ ├── network │ │ │ ├── accept.c │ │ │ ├── accept4.c │ │ │ ├── bind.c │ │ │ ├── connect.c │ │ │ ├── dn_comp.c │ │ │ ├── dn_expand.c │ │ │ ├── dn_skipname.c │ │ │ ├── dns_parse.c │ │ │ ├── ent.c │ │ │ ├── ether.c │ │ │ ├── freeaddrinfo.c │ │ │ ├── gai_strerror.c │ │ │ ├── getaddrinfo.c │ │ │ ├── gethostbyaddr.c │ │ │ ├── gethostbyaddr_r.c │ │ │ ├── gethostbyname.c │ │ │ ├── gethostbyname2.c │ │ │ ├── gethostbyname2_r.c │ │ │ ├── gethostbyname_r.c │ │ │ ├── getifaddrs.c │ │ │ ├── getnameinfo.c │ │ │ ├── getpeername.c │ │ │ ├── getservbyname.c │ │ │ ├── getservbyname_r.c │ │ │ ├── getservbyport.c │ │ │ ├── getservbyport_r.c │ │ │ ├── getsockname.c │ │ │ ├── getsockopt.c │ │ │ ├── h_errno.c │ │ │ ├── herror.c │ │ │ ├── hstrerror.c │ │ │ ├── htonl.c │ │ │ ├── htons.c │ │ │ ├── if_freenameindex.c │ │ │ ├── if_indextoname.c │ │ │ ├── if_nameindex.c │ │ │ ├── if_nametoindex.c │ │ │ ├── in6addr_any.c │ │ │ ├── in6addr_loopback.c │ │ │ ├── inet_addr.c │ │ │ ├── inet_aton.c │ │ │ ├── inet_legacy.c │ │ │ ├── inet_ntoa.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── listen.c │ │ │ ├── lookup.h │ │ │ ├── lookup_ipliteral.c │ │ │ ├── lookup_name.c │ │ │ ├── lookup_serv.c │ │ │ ├── netlink.c │ │ │ ├── netlink.h │ │ │ ├── netname.c │ │ │ ├── ns_parse.c │ │ │ ├── ntohl.c │ │ │ ├── ntohs.c │ │ │ ├── proto.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── recvmmsg.c │ │ │ ├── recvmsg.c │ │ │ ├── res_init.c │ │ │ ├── res_mkquery.c │ │ │ ├── res_msend.c │ │ │ ├── res_query.c │ │ │ ├── res_querydomain.c │ │ │ ├── res_send.c │ │ │ ├── res_state.c │ │ │ ├── resolvconf.c │ │ │ ├── send.c │ │ │ ├── sendmmsg.c │ │ │ ├── sendmsg.c │ │ │ ├── sendto.c │ │ │ ├── serv.c │ │ │ ├── setsockopt.c │ │ │ ├── shutdown.c │ │ │ ├── sockatmark.c │ │ │ ├── socket.c │ │ │ └── socketpair.c │ │ ├── passwd │ │ │ ├── fgetgrent.c │ │ │ ├── fgetpwent.c │ │ │ ├── fgetspent.c │ │ │ ├── getgr_a.c │ │ │ ├── getgr_r.c │ │ │ ├── getgrent.c │ │ │ ├── getgrent_a.c │ │ │ ├── getgrouplist.c │ │ │ ├── getpw_a.c │ │ │ ├── getpw_r.c │ │ │ ├── getpwent.c │ │ │ ├── getpwent_a.c │ │ │ ├── getspent.c │ │ │ ├── getspnam.c │ │ │ ├── getspnam_r.c │ │ │ ├── lckpwdf.c │ │ │ ├── nscd.h │ │ │ ├── nscd_query.c │ │ │ ├── putgrent.c │ │ │ ├── putpwent.c │ │ │ ├── putspent.c │ │ │ └── pwf.h │ │ ├── prng │ │ │ ├── __rand48_step.c │ │ │ ├── __seed48.c │ │ │ ├── drand48.c │ │ │ ├── lcong48.c │ │ │ ├── lrand48.c │ │ │ ├── mrand48.c │ │ │ ├── rand.c │ │ │ ├── rand_r.c │ │ │ ├── random.c │ │ │ ├── seed48.c │ │ │ └── srand48.c │ │ ├── process │ │ │ ├── execl.c │ │ │ ├── execle.c │ │ │ ├── execlp.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── execvp.c │ │ │ ├── fdop.h │ │ │ ├── fexecve.c │ │ │ ├── fork.c │ │ │ ├── i386 │ │ │ │ └── vfork.s │ │ │ ├── posix_spawn.c │ │ │ ├── posix_spawn_file_actions_addclose.c │ │ │ ├── posix_spawn_file_actions_adddup2.c │ │ │ ├── posix_spawn_file_actions_addopen.c │ │ │ ├── posix_spawn_file_actions_destroy.c │ │ │ ├── posix_spawn_file_actions_init.c │ │ │ ├── posix_spawnattr_destroy.c │ │ │ ├── posix_spawnattr_getflags.c │ │ │ ├── posix_spawnattr_getpgroup.c │ │ │ ├── posix_spawnattr_getsigdefault.c │ │ │ ├── posix_spawnattr_getsigmask.c │ │ │ ├── posix_spawnattr_init.c │ │ │ ├── posix_spawnattr_sched.c │ │ │ ├── posix_spawnattr_setflags.c │ │ │ ├── posix_spawnattr_setpgroup.c │ │ │ ├── posix_spawnattr_setsigdefault.c │ │ │ ├── posix_spawnattr_setsigmask.c │ │ │ ├── posix_spawnp.c │ │ │ ├── s390x │ │ │ │ └── vfork.s │ │ │ ├── sh │ │ │ │ └── vfork.s │ │ │ ├── system.c │ │ │ ├── vfork.c │ │ │ ├── wait.c │ │ │ ├── waitid.c │ │ │ ├── waitpid.c │ │ │ ├── x32 │ │ │ │ └── vfork.s │ │ │ └── x86_64 │ │ │ │ └── vfork.s │ │ ├── regex │ │ │ ├── fnmatch.c │ │ │ ├── glob.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── tre-mem.c │ │ │ └── tre.h │ │ ├── sched │ │ │ ├── affinity.c │ │ │ ├── sched_cpucount.c │ │ │ ├── sched_get_priority_max.c │ │ │ ├── sched_getcpu.c │ │ │ ├── sched_getparam.c │ │ │ ├── sched_getscheduler.c │ │ │ ├── sched_rr_get_interval.c │ │ │ ├── sched_setparam.c │ │ │ ├── sched_setscheduler.c │ │ │ └── sched_yield.c │ │ ├── search │ │ │ ├── hsearch.c │ │ │ ├── insque.c │ │ │ ├── lsearch.c │ │ │ ├── tdestroy.c │ │ │ └── tsearch_avl.c │ │ ├── select │ │ │ ├── poll.c │ │ │ ├── pselect.c │ │ │ └── select.c │ │ ├── setjmp │ │ │ ├── aarch64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── arm │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── i386 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── longjmp.c │ │ │ ├── microblaze │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── mips │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── mips64 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── mipsn32 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── or1k │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── powerpc │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── powerpc64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── s390x │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── setjmp.c │ │ │ ├── sh │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── x32 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ └── x86_64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ ├── signal │ │ │ ├── aarch64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── arm │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── block.c │ │ │ ├── getitimer.c │ │ │ ├── i386 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── kill.c │ │ │ ├── killpg.c │ │ │ ├── microblaze │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── mips │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── mips64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── mipsn32 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── or1k │ │ │ │ └── sigsetjmp.s │ │ │ ├── powerpc │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── powerpc64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── psiginfo.c │ │ │ ├── psignal.c │ │ │ ├── raise.c │ │ │ ├── restore.c │ │ │ ├── s390x │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── setitimer.c │ │ │ ├── sh │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── sigaction.c │ │ │ ├── sigaddset.c │ │ │ ├── sigaltstack.c │ │ │ ├── sigandset.c │ │ │ ├── sigdelset.c │ │ │ ├── sigemptyset.c │ │ │ ├── sigfillset.c │ │ │ ├── sighold.c │ │ │ ├── sigignore.c │ │ │ ├── siginterrupt.c │ │ │ ├── sigisemptyset.c │ │ │ ├── sigismember.c │ │ │ ├── siglongjmp.c │ │ │ ├── signal.c │ │ │ ├── sigorset.c │ │ │ ├── sigpause.c │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigqueue.c │ │ │ ├── sigrelse.c │ │ │ ├── sigrtmax.c │ │ │ ├── sigrtmin.c │ │ │ ├── sigset.c │ │ │ ├── sigsetjmp.c │ │ │ ├── sigsetjmp_tail.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigtimedwait.c │ │ │ ├── sigwait.c │ │ │ ├── sigwaitinfo.c │ │ │ ├── x32 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ └── x86_64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ ├── stat │ │ │ ├── __xstat.c │ │ │ ├── chmod.c │ │ │ ├── fchmod.c │ │ │ ├── fchmodat.c │ │ │ ├── fstat.c │ │ │ ├── fstatat.c │ │ │ ├── futimens.c │ │ │ ├── futimesat.c │ │ │ ├── lchmod.c │ │ │ ├── lstat.c │ │ │ ├── mkdir.c │ │ │ ├── mkdirat.c │ │ │ ├── mkfifo.c │ │ │ ├── mkfifoat.c │ │ │ ├── mknod.c │ │ │ ├── mknodat.c │ │ │ ├── stat.c │ │ │ ├── statvfs.c │ │ │ ├── umask.c │ │ │ └── utimensat.c │ │ ├── stdio │ │ │ ├── __fclose_ca.c │ │ │ ├── __fdopen.c │ │ │ ├── __fmodeflags.c │ │ │ ├── __fopen_rb_ca.c │ │ │ ├── __lockfile.c │ │ │ ├── __overflow.c │ │ │ ├── __stdio_close.c │ │ │ ├── __stdio_exit.c │ │ │ ├── __stdio_read.c │ │ │ ├── __stdio_seek.c │ │ │ ├── __stdio_write.c │ │ │ ├── __stdout_write.c │ │ │ ├── __string_read.c │ │ │ ├── __toread.c │ │ │ ├── __towrite.c │ │ │ ├── __twzc_write.c │ │ │ ├── __uflow.c │ │ │ ├── asprintf.c │ │ │ ├── clearerr.c │ │ │ ├── dprintf.c │ │ │ ├── ext.c │ │ │ ├── ext2.c │ │ │ ├── fclose.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetln.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fgetwc.c │ │ │ ├── fgetws.c │ │ │ ├── fileno.c │ │ │ ├── flockfile.c │ │ │ ├── fmemopen.c │ │ │ ├── fopen.c │ │ │ ├── fprintf.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fputwc.c │ │ │ ├── fputws.c │ │ │ ├── fread.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── ftrylockfile.c │ │ │ ├── funlockfile.c │ │ │ ├── fwide.c │ │ │ ├── fwprintf.c │ │ │ ├── fwrite.c │ │ │ ├── fwscanf.c │ │ │ ├── getc.c │ │ │ ├── getc_unlocked.c │ │ │ ├── getchar.c │ │ │ ├── getchar_unlocked.c │ │ │ ├── getdelim.c │ │ │ ├── getline.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── getwc.c │ │ │ ├── getwchar.c │ │ │ ├── ofl.c │ │ │ ├── ofl_add.c │ │ │ ├── open_memstream.c │ │ │ ├── open_wmemstream.c │ │ │ ├── pclose.c │ │ │ ├── perror.c │ │ │ ├── popen.c │ │ │ ├── printf.c │ │ │ ├── putc.c │ │ │ ├── putc_unlocked.c │ │ │ ├── putchar.c │ │ │ ├── putchar_unlocked.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── putwc.c │ │ │ ├── putwchar.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setbuffer.c │ │ │ ├── setlinebuf.c │ │ │ ├── setvbuf.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── stderr.c │ │ │ ├── stdin.c │ │ │ ├── stdout.c │ │ │ ├── swprintf.c │ │ │ ├── swscanf.c │ │ │ ├── tempnam.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.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 │ │ │ ├── abs.c │ │ │ ├── atof.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── atoll.c │ │ │ ├── bsearch.c │ │ │ ├── div.c │ │ │ ├── ecvt.c │ │ │ ├── fcvt.c │ │ │ ├── gcvt.c │ │ │ ├── imaxabs.c │ │ │ ├── imaxdiv.c │ │ │ ├── labs.c │ │ │ ├── ldiv.c │ │ │ ├── llabs.c │ │ │ ├── lldiv.c │ │ │ ├── qsort.c │ │ │ ├── strtod.c │ │ │ ├── strtol.c │ │ │ ├── wcstod.c │ │ │ └── wcstol.c │ │ ├── string │ │ │ ├── arm │ │ │ │ ├── __aeabi_memclr.c │ │ │ │ ├── __aeabi_memcpy.c │ │ │ │ ├── __aeabi_memmove.c │ │ │ │ ├── __aeabi_memset.c │ │ │ │ ├── memcpy.c │ │ │ │ └── memcpy_le.S │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── i386 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ │ ├── index.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmem.c │ │ │ ├── memmove.c │ │ │ ├── mempcpy.c │ │ │ ├── memrchr.c │ │ │ ├── memset.c │ │ │ ├── rindex.c │ │ │ ├── stpcpy.c │ │ │ ├── stpncpy.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcasestr.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strchrnul.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strerror_r.c │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strncasecmp.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 │ │ │ ├── strverscmp.c │ │ │ ├── swab.c │ │ │ ├── wcpcpy.c │ │ │ ├── wcpncpy.c │ │ │ ├── wcscasecmp.c │ │ │ ├── wcscasecmp_l.c │ │ │ ├── wcscat.c │ │ │ ├── wcschr.c │ │ │ ├── wcscmp.c │ │ │ ├── wcscpy.c │ │ │ ├── wcscspn.c │ │ │ ├── wcsdup.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 │ │ │ ├── wcswcs.c │ │ │ ├── wmemchr.c │ │ │ ├── wmemcmp.c │ │ │ ├── wmemcpy.c │ │ │ ├── wmemmove.c │ │ │ ├── wmemset.c │ │ │ └── x86_64 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ ├── temp │ │ │ ├── __randname.c │ │ │ ├── mkdtemp.c │ │ │ ├── mkostemp.c │ │ │ ├── mkostemps.c │ │ │ ├── mkstemp.c │ │ │ ├── mkstemps.c │ │ │ └── mktemp.c │ │ ├── termios │ │ │ ├── cfgetospeed.c │ │ │ ├── cfmakeraw.c │ │ │ ├── cfsetospeed.c │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetsid.c │ │ │ ├── tcsendbreak.c │ │ │ └── tcsetattr.c │ │ ├── thread │ │ │ ├── __futex.c │ │ │ ├── __lock.c │ │ │ ├── __set_thread_area.c │ │ │ ├── __syscall_cp.c │ │ │ ├── __timedwait.c │ │ │ ├── __tls_get_addr.c │ │ │ ├── __unmapself.c │ │ │ ├── __wait.c │ │ │ ├── aarch64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── arm │ │ │ │ ├── __aeabi_read_tp.s │ │ │ │ ├── __aeabi_read_tp_c.c │ │ │ │ ├── __set_thread_area.c │ │ │ │ ├── __unmapself.s │ │ │ │ ├── atomics.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── call_once.c │ │ │ ├── clone.c │ │ │ ├── cnd_broadcast.c │ │ │ ├── cnd_destroy.c │ │ │ ├── cnd_init.c │ │ │ ├── cnd_signal.c │ │ │ ├── cnd_timedwait.c │ │ │ ├── cnd_wait.c │ │ │ ├── i386 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── tls.s │ │ │ ├── lock_ptc.c │ │ │ ├── microblaze │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mips │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mips64 │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mipsn32 │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mtx_destroy.c │ │ │ ├── mtx_init.c │ │ │ ├── mtx_lock.c │ │ │ ├── mtx_timedlock.c │ │ │ ├── mtx_trylock.c │ │ │ ├── mtx_unlock.c │ │ │ ├── or1k │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── powerpc │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── powerpc64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── pthread_atfork.c │ │ │ ├── pthread_attr_destroy.c │ │ │ ├── pthread_attr_get.c │ │ │ ├── pthread_attr_init.c │ │ │ ├── pthread_attr_setdetachstate.c │ │ │ ├── pthread_attr_setguardsize.c │ │ │ ├── pthread_attr_setinheritsched.c │ │ │ ├── pthread_attr_setschedparam.c │ │ │ ├── pthread_attr_setschedpolicy.c │ │ │ ├── pthread_attr_setscope.c │ │ │ ├── pthread_attr_setstack.c │ │ │ ├── pthread_attr_setstacksize.c │ │ │ ├── pthread_barrier_destroy.c │ │ │ ├── pthread_barrier_init.c │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_barrierattr_destroy.c │ │ │ ├── pthread_barrierattr_init.c │ │ │ ├── pthread_barrierattr_setpshared.c │ │ │ ├── pthread_cancel.c │ │ │ ├── pthread_cleanup_push.c │ │ │ ├── pthread_cond_broadcast.c │ │ │ ├── pthread_cond_destroy.c │ │ │ ├── pthread_cond_init.c │ │ │ ├── pthread_cond_signal.c │ │ │ ├── pthread_cond_timedwait.c │ │ │ ├── pthread_cond_wait.c │ │ │ ├── pthread_condattr_destroy.c │ │ │ ├── pthread_condattr_init.c │ │ │ ├── pthread_condattr_setclock.c │ │ │ ├── pthread_condattr_setpshared.c │ │ │ ├── pthread_create.c │ │ │ ├── pthread_detach.c │ │ │ ├── pthread_equal.c │ │ │ ├── pthread_getattr_np.c │ │ │ ├── pthread_getconcurrency.c │ │ │ ├── pthread_getcpuclockid.c │ │ │ ├── pthread_getschedparam.c │ │ │ ├── pthread_getspecific.c │ │ │ ├── pthread_join.c │ │ │ ├── pthread_key_create.c │ │ │ ├── pthread_kill.c │ │ │ ├── pthread_mutex_consistent.c │ │ │ ├── pthread_mutex_destroy.c │ │ │ ├── pthread_mutex_getprioceiling.c │ │ │ ├── pthread_mutex_init.c │ │ │ ├── pthread_mutex_lock.c │ │ │ ├── pthread_mutex_setprioceiling.c │ │ │ ├── pthread_mutex_timedlock.c │ │ │ ├── pthread_mutex_trylock.c │ │ │ ├── pthread_mutex_unlock.c │ │ │ ├── pthread_mutexattr_destroy.c │ │ │ ├── pthread_mutexattr_init.c │ │ │ ├── pthread_mutexattr_setprotocol.c │ │ │ ├── pthread_mutexattr_setpshared.c │ │ │ ├── pthread_mutexattr_setrobust.c │ │ │ ├── pthread_mutexattr_settype.c │ │ │ ├── pthread_once.c │ │ │ ├── pthread_rwlock_destroy.c │ │ │ ├── pthread_rwlock_init.c │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ ├── pthread_rwlock_timedrdlock.c │ │ │ ├── pthread_rwlock_timedwrlock.c │ │ │ ├── pthread_rwlock_tryrdlock.c │ │ │ ├── pthread_rwlock_trywrlock.c │ │ │ ├── pthread_rwlock_unlock.c │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ ├── pthread_rwlockattr_destroy.c │ │ │ ├── pthread_rwlockattr_init.c │ │ │ ├── pthread_rwlockattr_setpshared.c │ │ │ ├── pthread_self.c │ │ │ ├── pthread_setattr_default_np.c │ │ │ ├── pthread_setcancelstate.c │ │ │ ├── pthread_setcanceltype.c │ │ │ ├── pthread_setconcurrency.c │ │ │ ├── pthread_setname_np.c │ │ │ ├── pthread_setschedparam.c │ │ │ ├── pthread_setschedprio.c │ │ │ ├── pthread_setspecific.c │ │ │ ├── pthread_sigmask.c │ │ │ ├── pthread_spin_destroy.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthread_testcancel.c │ │ │ ├── s390x │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __tls_get_offset.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── sem_destroy.c │ │ │ ├── sem_getvalue.c │ │ │ ├── sem_init.c │ │ │ ├── sem_open.c │ │ │ ├── sem_post.c │ │ │ ├── sem_timedwait.c │ │ │ ├── sem_trywait.c │ │ │ ├── sem_unlink.c │ │ │ ├── sem_wait.c │ │ │ ├── sh │ │ │ │ ├── __set_thread_area.c │ │ │ │ ├── __unmapself.c │ │ │ │ ├── __unmapself_mmu.s │ │ │ │ ├── atomics.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── synccall.c │ │ │ ├── syscall_cp.c │ │ │ ├── thrd_create.c │ │ │ ├── thrd_exit.c │ │ │ ├── thrd_join.c │ │ │ ├── thrd_sleep.c │ │ │ ├── thrd_yield.c │ │ │ ├── tls.c │ │ │ ├── tss_create.c │ │ │ ├── tss_delete.c │ │ │ ├── tss_set.c │ │ │ ├── vmlock.c │ │ │ ├── x32 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── syscall_cp_fixup.c │ │ │ └── x86_64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ ├── time │ │ │ ├── __asctime.c │ │ │ ├── __map_file.c │ │ │ ├── __month_to_secs.c │ │ │ ├── __secs_to_tm.c │ │ │ ├── __tm_to_secs.c │ │ │ ├── __tz.c │ │ │ ├── __year_to_secs.c │ │ │ ├── asctime.c │ │ │ ├── asctime_r.c │ │ │ ├── clock.c │ │ │ ├── clock_getcpuclockid.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_nanosleep.c │ │ │ ├── clock_settime.c │ │ │ ├── ctime.c │ │ │ ├── ctime_r.c │ │ │ ├── difftime.c │ │ │ ├── ftime.c │ │ │ ├── getdate.c │ │ │ ├── gettimeofday.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_r.c │ │ │ ├── localtime.c │ │ │ ├── localtime_r.c │ │ │ ├── mktime.c │ │ │ ├── nanosleep.c │ │ │ ├── strftime.c │ │ │ ├── strptime.c │ │ │ ├── time.c │ │ │ ├── time_impl.h │ │ │ ├── timegm.c │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverrun.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_settime.c │ │ │ ├── times.c │ │ │ ├── timespec_get.c │ │ │ ├── utime.c │ │ │ └── wcsftime.c │ │ └── unistd │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── acct.c │ │ │ ├── alarm.c │ │ │ ├── chdir.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── ctermid.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── dup3.c │ │ │ ├── faccessat.c │ │ │ ├── fchdir.c │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fdatasync.c │ │ │ ├── fsync.c │ │ │ ├── ftruncate.c │ │ │ ├── getcwd.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── gethostname.c │ │ │ ├── getlogin.c │ │ │ ├── getlogin_r.c │ │ │ ├── getpgid.c │ │ │ ├── getpgrp.c │ │ │ ├── getpid.c │ │ │ ├── getppid.c │ │ │ ├── getsid.c │ │ │ ├── getuid.c │ │ │ ├── isatty.c │ │ │ ├── lchown.c │ │ │ ├── link.c │ │ │ ├── linkat.c │ │ │ ├── lseek.c │ │ │ ├── mips │ │ │ └── pipe.s │ │ │ ├── mips64 │ │ │ └── pipe.s │ │ │ ├── mipsn32 │ │ │ └── pipe.s │ │ │ ├── nice.c │ │ │ ├── pause.c │ │ │ ├── pipe.c │ │ │ ├── pipe2.c │ │ │ ├── posix_close.c │ │ │ ├── pread.c │ │ │ ├── preadv.c │ │ │ ├── pwrite.c │ │ │ ├── pwritev.c │ │ │ ├── read.c │ │ │ ├── readlink.c │ │ │ ├── readlinkat.c │ │ │ ├── readv.c │ │ │ ├── renameat.c │ │ │ ├── rmdir.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setpgid.c │ │ │ ├── setpgrp.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setsid.c │ │ │ ├── setuid.c │ │ │ ├── setxid.c │ │ │ ├── sh │ │ │ └── pipe.s │ │ │ ├── sleep.c │ │ │ ├── symlink.c │ │ │ ├── symlinkat.c │ │ │ ├── sync.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── truncate.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname_r.c │ │ │ ├── ualarm.c │ │ │ ├── unlink.c │ │ │ ├── unlinkat.c │ │ │ ├── usleep.c │ │ │ ├── write.c │ │ │ └── writev.c │ └── tools │ │ ├── add-cfi.common.awk │ │ ├── add-cfi.i386.awk │ │ ├── add-cfi.x86_64.awk │ │ ├── install.sh │ │ ├── ld.musl-clang.in │ │ ├── mkalltypes.sed │ │ ├── musl-clang.in │ │ ├── musl-gcc.specs.sh │ │ └── version.sh ├── playground │ ├── README.md │ ├── example.c │ ├── include.mk │ ├── net.cpp │ └── queue.cpp ├── ports │ ├── YCSB-C-fbsd │ │ ├── Makefile │ │ ├── core │ │ │ ├── Makefile │ │ │ ├── client.h │ │ │ ├── const_generator.h │ │ │ ├── core_workload.cc │ │ │ ├── core_workload.h │ │ │ ├── counter_generator.h │ │ │ ├── db.h │ │ │ ├── discrete_generator.h │ │ │ ├── generator.h │ │ │ ├── properties.h │ │ │ ├── scrambled_zipfian_generator.h │ │ │ ├── skewed_latest_generator.h │ │ │ ├── timer.h │ │ │ ├── uniform_generator.h │ │ │ ├── utils.h │ │ │ └── zipfian_generator.h │ │ ├── db │ │ │ ├── Makefile │ │ │ ├── basic_db.h │ │ │ ├── db_factory.cc │ │ │ ├── db_factory.h │ │ │ ├── db_sl.h │ │ │ ├── hashtable_db.cc │ │ │ ├── hashtable_db.h │ │ │ ├── lock_stl_db.h │ │ │ ├── tbb_rand_db.h │ │ │ └── tbb_scan_db.h │ │ ├── lib │ │ │ ├── lock_stl_hashtable.h │ │ │ ├── mem_alloc.h │ │ │ ├── stl_hashtable.h │ │ │ ├── string.h │ │ │ ├── string_hashtable.h │ │ │ ├── tbb_rand_hashtable.h │ │ │ └── tbb_scan_hashtable.h │ │ ├── workloads │ │ │ ├── workloada.spec │ │ │ ├── workloadb.spec │ │ │ ├── workloadc.spec │ │ │ ├── workloadd.spec │ │ │ ├── workloade.spec │ │ │ └── workloadf.spec │ │ └── ycsbc.cc │ ├── bash.port │ ├── binutils.port │ ├── busybox-config │ ├── busybox.port │ ├── config.sub │ ├── gcc.port │ ├── gmp.port │ ├── libbacktrace.port │ ├── libtool.m4.patch │ ├── mpc.port │ ├── mpfr.port │ ├── ncurses.patch │ ├── ncurses.port │ ├── port.sh │ ├── sqlite.port │ ├── tomcrypt.patch │ ├── tomcrypt.port │ ├── tommath.patch │ ├── tommath.port │ ├── vim.port │ └── ycsb.port ├── pre-built │ ├── README.md │ └── start.sh ├── sysroot │ └── etc │ │ └── passwd ├── twix │ ├── access.c │ ├── dir.c │ ├── fd.c │ ├── file.c │ ├── include.mk │ ├── linux.c │ ├── process.c │ ├── rand.c │ ├── rw.c │ ├── syscall.c │ ├── syscalls.h │ ├── thread.c │ └── time.c └── users.mk └── utils ├── appendobj.c ├── blake2.c ├── blake2.h ├── bsv.c ├── common.h ├── elfsplit.c ├── file2obj.c ├── hier.c ├── include.mk ├── makekey.c ├── mkcap.c ├── mkdlg.c ├── mkimg.c ├── objstat.c ├── sctx.c ├── sign.h └── user.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/DIRS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/README.md -------------------------------------------------------------------------------- /SEC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/SEC -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2 2 | -------------------------------------------------------------------------------- /arch/riscv64/ctx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/ctx.S -------------------------------------------------------------------------------- /arch/riscv64/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/include.mk -------------------------------------------------------------------------------- /arch/riscv64/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/init.c -------------------------------------------------------------------------------- /arch/riscv64/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/interrupt.c -------------------------------------------------------------------------------- /arch/riscv64/link.ld.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/link.ld.in -------------------------------------------------------------------------------- /arch/riscv64/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/memory.c -------------------------------------------------------------------------------- /arch/riscv64/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/processor.c -------------------------------------------------------------------------------- /arch/riscv64/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/start.S -------------------------------------------------------------------------------- /arch/riscv64/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/riscv64/thread.c -------------------------------------------------------------------------------- /arch/x86_64/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/acpi.c -------------------------------------------------------------------------------- /arch/x86_64/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/apic.c -------------------------------------------------------------------------------- /arch/x86_64/crti.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/crti.S -------------------------------------------------------------------------------- /arch/x86_64/crtn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/crtn.S -------------------------------------------------------------------------------- /arch/x86_64/ctx.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/x86_64/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/debug.c -------------------------------------------------------------------------------- /arch/x86_64/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/entry.c -------------------------------------------------------------------------------- /arch/x86_64/gate.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/gate.S -------------------------------------------------------------------------------- /arch/x86_64/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/hpet.c -------------------------------------------------------------------------------- /arch/x86_64/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/idt.c -------------------------------------------------------------------------------- /arch/x86_64/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/include.mk -------------------------------------------------------------------------------- /arch/x86_64/include/arch/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/include/arch/memory.h -------------------------------------------------------------------------------- /arch/x86_64/include/arch/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/include/arch/object.h -------------------------------------------------------------------------------- /arch/x86_64/include/arch/secctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/include/arch/secctx.h -------------------------------------------------------------------------------- /arch/x86_64/include/arch/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/include/arch/thread.h -------------------------------------------------------------------------------- /arch/x86_64/include/arch/x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/include/arch/x86_64.h -------------------------------------------------------------------------------- /arch/x86_64/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/init.c -------------------------------------------------------------------------------- /arch/x86_64/intel_iommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/intel_iommu.c -------------------------------------------------------------------------------- /arch/x86_64/interrupt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/interrupt.S -------------------------------------------------------------------------------- /arch/x86_64/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/ioapic.c -------------------------------------------------------------------------------- /arch/x86_64/kconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/kconf.c -------------------------------------------------------------------------------- /arch/x86_64/link.ld.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/link.ld.in -------------------------------------------------------------------------------- /arch/x86_64/madt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/madt.c -------------------------------------------------------------------------------- /arch/x86_64/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/memory.c -------------------------------------------------------------------------------- /arch/x86_64/nfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/nfit.c -------------------------------------------------------------------------------- /arch/x86_64/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/object.c -------------------------------------------------------------------------------- /arch/x86_64/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/pit.c -------------------------------------------------------------------------------- /arch/x86_64/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/processor.c -------------------------------------------------------------------------------- /arch/x86_64/rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/rdrand.c -------------------------------------------------------------------------------- /arch/x86_64/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/start.S -------------------------------------------------------------------------------- /arch/x86_64/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/thread.c -------------------------------------------------------------------------------- /arch/x86_64/trampoline.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/trampoline.S -------------------------------------------------------------------------------- /arch/x86_64/virtmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/virtmem.c -------------------------------------------------------------------------------- /arch/x86_64/vmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/vmx.c -------------------------------------------------------------------------------- /arch/x86_64/x2apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/arch/x86_64/x2apic.c -------------------------------------------------------------------------------- /core/asan/asan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/asan/asan.c -------------------------------------------------------------------------------- /core/clksrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/clksrc.c -------------------------------------------------------------------------------- /core/csprng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/csprng.c -------------------------------------------------------------------------------- /core/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/debug.c -------------------------------------------------------------------------------- /core/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/include.mk -------------------------------------------------------------------------------- /core/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/instrument.c -------------------------------------------------------------------------------- /core/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/interrupt.c -------------------------------------------------------------------------------- /core/kc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/kc.c -------------------------------------------------------------------------------- /core/ksymbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/ksymbol.c -------------------------------------------------------------------------------- /core/ksymbol_weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/ksymbol_weak.c -------------------------------------------------------------------------------- /core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/main.c -------------------------------------------------------------------------------- /core/mm/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/dlmalloc.c -------------------------------------------------------------------------------- /core/mm/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/include.mk -------------------------------------------------------------------------------- /core/mm/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/memory.c -------------------------------------------------------------------------------- /core/mm/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/page.c -------------------------------------------------------------------------------- /core/mm/pm_buddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/pm_buddy.c -------------------------------------------------------------------------------- /core/mm/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/pmap.c -------------------------------------------------------------------------------- /core/mm/slab2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/slab2.c -------------------------------------------------------------------------------- /core/mm/tmpmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/tmpmap.c -------------------------------------------------------------------------------- /core/mm/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/mm/vmap.c -------------------------------------------------------------------------------- /core/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/nvdimm.c -------------------------------------------------------------------------------- /core/obj/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/device.c -------------------------------------------------------------------------------- /core/obj/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/fault.c -------------------------------------------------------------------------------- /core/obj/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/include.mk -------------------------------------------------------------------------------- /core/obj/kso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/kso.c -------------------------------------------------------------------------------- /core/obj/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/object.c -------------------------------------------------------------------------------- /core/obj/objpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/objpage.c -------------------------------------------------------------------------------- /core/obj/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/pager.c -------------------------------------------------------------------------------- /core/obj/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/queue.c -------------------------------------------------------------------------------- /core/obj/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/rw.c -------------------------------------------------------------------------------- /core/obj/secctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/secctx.c -------------------------------------------------------------------------------- /core/obj/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/slots.c -------------------------------------------------------------------------------- /core/obj/tie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/obj/tie.c -------------------------------------------------------------------------------- /core/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/panic.c -------------------------------------------------------------------------------- /core/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/processor.c -------------------------------------------------------------------------------- /core/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/rand.c -------------------------------------------------------------------------------- /core/schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/schedule.c -------------------------------------------------------------------------------- /core/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/spinlock.c -------------------------------------------------------------------------------- /core/sys/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/sys/include.mk -------------------------------------------------------------------------------- /core/sys/kconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/sys/kconf.c -------------------------------------------------------------------------------- /core/sys/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/sys/object.c -------------------------------------------------------------------------------- /core/sys/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/sys/thread.c -------------------------------------------------------------------------------- /core/sys/thread_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/sys/thread_sync.c -------------------------------------------------------------------------------- /core/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/syscall.c -------------------------------------------------------------------------------- /core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/timer.c -------------------------------------------------------------------------------- /core/ubsan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/ubsan.c -------------------------------------------------------------------------------- /core/unwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/core/unwind.c -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/building.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/building.txt -------------------------------------------------------------------------------- /doc/core/blocking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/core/blocking.txt -------------------------------------------------------------------------------- /doc/core/kso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/core/kso.md -------------------------------------------------------------------------------- /doc/device_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/device_example -------------------------------------------------------------------------------- /doc/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/include.mk -------------------------------------------------------------------------------- /doc/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/layout.txt -------------------------------------------------------------------------------- /doc/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/overview.md -------------------------------------------------------------------------------- /doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/style.css -------------------------------------------------------------------------------- /doc/syscalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/syscalls.md -------------------------------------------------------------------------------- /doc/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/template.tex -------------------------------------------------------------------------------- /doc/us/abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/abi.md -------------------------------------------------------------------------------- /doc/us/consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/consistency.md -------------------------------------------------------------------------------- /doc/us/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/events.md -------------------------------------------------------------------------------- /doc/us/faults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/faults.md -------------------------------------------------------------------------------- /doc/us/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/io.md -------------------------------------------------------------------------------- /doc/us/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/libraries.md -------------------------------------------------------------------------------- /doc/us/mutex.md: -------------------------------------------------------------------------------- 1 | Mutexes are crash-consistent. 2 | -------------------------------------------------------------------------------- /doc/us/names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/names.md -------------------------------------------------------------------------------- /doc/us/object_ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/object_ids.md -------------------------------------------------------------------------------- /doc/us/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/objects.md -------------------------------------------------------------------------------- /doc/us/pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/pointers.md -------------------------------------------------------------------------------- /doc/us/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/security.md -------------------------------------------------------------------------------- /doc/us/structured_objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/structured_objects.md -------------------------------------------------------------------------------- /doc/us/threads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/us/threads.md -------------------------------------------------------------------------------- /doc/vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/doc/vars.yaml -------------------------------------------------------------------------------- /include/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/arena.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/clksrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/clksrc.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/device.h -------------------------------------------------------------------------------- /include/err.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /include/guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/guard.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/init.h -------------------------------------------------------------------------------- /include/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/instrument.h -------------------------------------------------------------------------------- /include/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/interrupt.h -------------------------------------------------------------------------------- /include/kalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/kalloc.h -------------------------------------------------------------------------------- /include/kc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/kc.h -------------------------------------------------------------------------------- /include/krc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/krc.h -------------------------------------------------------------------------------- /include/ksymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/ksymbol.h -------------------------------------------------------------------------------- /include/lib/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/bitmap.h -------------------------------------------------------------------------------- /include/lib/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/blake2.h -------------------------------------------------------------------------------- /include/lib/inthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/inthash.h -------------------------------------------------------------------------------- /include/lib/iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/iter.h -------------------------------------------------------------------------------- /include/lib/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/lib.h -------------------------------------------------------------------------------- /include/lib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/list.h -------------------------------------------------------------------------------- /include/lib/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/rb.h -------------------------------------------------------------------------------- /include/lib/ubsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/lib/ubsan.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/mutex.h -------------------------------------------------------------------------------- /include/nvdimm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/nvdimm.h -------------------------------------------------------------------------------- /include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/object.h -------------------------------------------------------------------------------- /include/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/page.h -------------------------------------------------------------------------------- /include/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/pager.h -------------------------------------------------------------------------------- /include/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/panic.h -------------------------------------------------------------------------------- /include/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/pmap.h -------------------------------------------------------------------------------- /include/printk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/printk.h -------------------------------------------------------------------------------- /include/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/processor.h -------------------------------------------------------------------------------- /include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/queue.h -------------------------------------------------------------------------------- /include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/rand.h -------------------------------------------------------------------------------- /include/secctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/secctx.h -------------------------------------------------------------------------------- /include/slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/slab.h -------------------------------------------------------------------------------- /include/slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/slots.h -------------------------------------------------------------------------------- /include/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/spinlock.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/string.h -------------------------------------------------------------------------------- /include/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/syscall.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/system.h -------------------------------------------------------------------------------- /include/thread-bits.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define KERNEL_STACK_SIZE 0x10000 4 | -------------------------------------------------------------------------------- /include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/thread.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/time.h -------------------------------------------------------------------------------- /include/tmpmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/tmpmap.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/workqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/include/workqueue.h -------------------------------------------------------------------------------- /lib/blake2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/lib/blake2.c -------------------------------------------------------------------------------- /lib/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/lib/include.mk -------------------------------------------------------------------------------- /lib/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/lib/memory.c -------------------------------------------------------------------------------- /lib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/lib/qsort.c -------------------------------------------------------------------------------- /lib/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/lib/rb.c -------------------------------------------------------------------------------- /lib/vsprintk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/lib/vsprintk.c -------------------------------------------------------------------------------- /machine/pc/bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/bochsrc.txt -------------------------------------------------------------------------------- /machine/pc/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/grub.cfg -------------------------------------------------------------------------------- /machine/pc/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/include.mk -------------------------------------------------------------------------------- /machine/pc/include/machine/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/include/machine/isa.h -------------------------------------------------------------------------------- /machine/pc/include/machine/machine.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void serial_init(void); 4 | -------------------------------------------------------------------------------- /machine/pc/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/isa.c -------------------------------------------------------------------------------- /machine/pc/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/pcie.c -------------------------------------------------------------------------------- /machine/pc/ps2kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/ps2kbd.c -------------------------------------------------------------------------------- /machine/pc/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/pc/serial.c -------------------------------------------------------------------------------- /machine/riscv/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/machine/riscv/include.mk -------------------------------------------------------------------------------- /projects/.config.mk.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/projects/.config.mk.template -------------------------------------------------------------------------------- /projects/riscv/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/projects/riscv/config.mk -------------------------------------------------------------------------------- /projects/x86_64/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/projects/x86_64/config.mk -------------------------------------------------------------------------------- /testing/netctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/testing/netctl.cpp -------------------------------------------------------------------------------- /testing/qt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/testing/qt.c -------------------------------------------------------------------------------- /testing/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/testing/queue.h -------------------------------------------------------------------------------- /third-party/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | -------------------------------------------------------------------------------- /third-party/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/include.mk -------------------------------------------------------------------------------- /third-party/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/include/ctype.h -------------------------------------------------------------------------------- /third-party/libtomcrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtomcrypt/LICENSE -------------------------------------------------------------------------------- /third-party/libtomcrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtomcrypt/README.md -------------------------------------------------------------------------------- /third-party/libtomcrypt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtomcrypt/makefile -------------------------------------------------------------------------------- /third-party/libtommath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtommath/LICENSE -------------------------------------------------------------------------------- /third-party/libtommath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtommath/README.md -------------------------------------------------------------------------------- /third-party/libtommath/bn_mp_or.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtommath/bn_mp_or.c -------------------------------------------------------------------------------- /third-party/libtommath/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtommath/makefile -------------------------------------------------------------------------------- /third-party/libtommath/tommath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/third-party/libtommath/tommath.h -------------------------------------------------------------------------------- /tools/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/tools/perf.py -------------------------------------------------------------------------------- /tools/prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/tools/prep.sh -------------------------------------------------------------------------------- /tools/toolchain-userspace-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/tools/toolchain-userspace-libs.sh -------------------------------------------------------------------------------- /tools/toolchain-userspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/tools/toolchain-userspace.sh -------------------------------------------------------------------------------- /tools/toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/tools/toolchain.sh -------------------------------------------------------------------------------- /us/DIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/DIRS -------------------------------------------------------------------------------- /us/append_ns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/append_ns.sh -------------------------------------------------------------------------------- /us/append_ns_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/append_ns_simple.sh -------------------------------------------------------------------------------- /us/bin/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/include.mk -------------------------------------------------------------------------------- /us/bin/init/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/init/include.mk -------------------------------------------------------------------------------- /us/bin/init/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/init/main.c -------------------------------------------------------------------------------- /us/bin/pager/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/pager/include.mk -------------------------------------------------------------------------------- /us/bin/pager/pager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/pager/pager.cpp -------------------------------------------------------------------------------- /us/bin/pager/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/pager/test.h -------------------------------------------------------------------------------- /us/bin/sectest/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/sectest/include.mk -------------------------------------------------------------------------------- /us/bin/sectest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/sectest/main.c -------------------------------------------------------------------------------- /us/bin/sectest/stlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/sectest/stlib.c -------------------------------------------------------------------------------- /us/bin/term/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/term/include.mk -------------------------------------------------------------------------------- /us/bin/term/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/term/kbd.c -------------------------------------------------------------------------------- /us/bin/term/ssfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/term/ssfn.h -------------------------------------------------------------------------------- /us/bin/term/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/term/stb_image.h -------------------------------------------------------------------------------- /us/bin/term/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/term/term.c -------------------------------------------------------------------------------- /us/bin/testbench/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/testbench/include.mk -------------------------------------------------------------------------------- /us/bin/testbench/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/testbench/main.c -------------------------------------------------------------------------------- /us/bin/twzdev/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzdev/include.mk -------------------------------------------------------------------------------- /us/bin/twzdev/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzdev/pcie.c -------------------------------------------------------------------------------- /us/bin/twzdev/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzdev/pcie.h -------------------------------------------------------------------------------- /us/bin/twzdev/twzdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzdev/twzdev.c -------------------------------------------------------------------------------- /us/bin/twzutils/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/bench.c -------------------------------------------------------------------------------- /us/bin/twzutils/bstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/bstream.c -------------------------------------------------------------------------------- /us/bin/twzutils/dynlink.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("Hello from DynLink\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /us/bin/twzutils/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/include.mk -------------------------------------------------------------------------------- /us/bin/twzutils/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/init.c -------------------------------------------------------------------------------- /us/bin/twzutils/init_bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/init_bootstrap.c -------------------------------------------------------------------------------- /us/bin/twzutils/init_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/init_test.c -------------------------------------------------------------------------------- /us/bin/twzutils/kls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/kls.c -------------------------------------------------------------------------------- /us/bin/twzutils/kv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/kv.c -------------------------------------------------------------------------------- /us/bin/twzutils/kv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/kv.h -------------------------------------------------------------------------------- /us/bin/twzutils/kvdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/kvdr.c -------------------------------------------------------------------------------- /us/bin/twzutils/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/login.c -------------------------------------------------------------------------------- /us/bin/twzutils/lscpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/lscpu.c -------------------------------------------------------------------------------- /us/bin/twzutils/lsmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/lsmem.c -------------------------------------------------------------------------------- /us/bin/twzutils/nls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/nls.c -------------------------------------------------------------------------------- /us/bin/twzutils/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/pty.c -------------------------------------------------------------------------------- /us/bin/twzutils/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/shell.c -------------------------------------------------------------------------------- /us/bin/twzutils/sqb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/sqb.c -------------------------------------------------------------------------------- /us/bin/twzutils/tst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/bin/twzutils/tst.cpp -------------------------------------------------------------------------------- /us/build_nvme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/build_nvme.sh -------------------------------------------------------------------------------- /us/drivers/e1000/e1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/e1000/e1000.cpp -------------------------------------------------------------------------------- /us/drivers/e1000/e1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/e1000/e1000.h -------------------------------------------------------------------------------- /us/drivers/e1000/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/e1000/include.mk -------------------------------------------------------------------------------- /us/drivers/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/include.mk -------------------------------------------------------------------------------- /us/drivers/keyboard/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/keyboard/include.mk -------------------------------------------------------------------------------- /us/drivers/keyboard/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/keyboard/keyboard.c -------------------------------------------------------------------------------- /us/drivers/nvme/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/nvme/include.mk -------------------------------------------------------------------------------- /us/drivers/nvme/nvme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/nvme/nvme.cpp -------------------------------------------------------------------------------- /us/drivers/nvme/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/nvme/nvme.h -------------------------------------------------------------------------------- /us/drivers/serial/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/serial/include.mk -------------------------------------------------------------------------------- /us/drivers/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/drivers/serial/serial.c -------------------------------------------------------------------------------- /us/elf.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/elf.ld -------------------------------------------------------------------------------- /us/gen_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/gen_root.py -------------------------------------------------------------------------------- /us/gen_root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/gen_root.sh -------------------------------------------------------------------------------- /us/gen_root_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/gen_root_simple.sh -------------------------------------------------------------------------------- /us/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include.mk -------------------------------------------------------------------------------- /us/include/twz/__cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/__cpp_compat.h -------------------------------------------------------------------------------- /us/include/twz/__twz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/__twz.h -------------------------------------------------------------------------------- /us/include/twz/_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_err.h -------------------------------------------------------------------------------- /us/include/twz/_fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_fault.h -------------------------------------------------------------------------------- /us/include/twz/_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_key.h -------------------------------------------------------------------------------- /us/include/twz/_kso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_kso.h -------------------------------------------------------------------------------- /us/include/twz/_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_obj.h -------------------------------------------------------------------------------- /us/include/twz/_objid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_objid.h -------------------------------------------------------------------------------- /us/include/twz/_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_queue.h -------------------------------------------------------------------------------- /us/include/twz/_sctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_sctx.h -------------------------------------------------------------------------------- /us/include/twz/_slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_slots.h -------------------------------------------------------------------------------- /us/include/twz/_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_sys.h -------------------------------------------------------------------------------- /us/include/twz/_thrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_thrd.h -------------------------------------------------------------------------------- /us/include/twz/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_types.h -------------------------------------------------------------------------------- /us/include/twz/_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/_view.h -------------------------------------------------------------------------------- /us/include/twz/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/alloc.h -------------------------------------------------------------------------------- /us/include/twz/bstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/bstream.h -------------------------------------------------------------------------------- /us/include/twz/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/btree.h -------------------------------------------------------------------------------- /us/include/twz/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/debug.h -------------------------------------------------------------------------------- /us/include/twz/driver/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/bus.h -------------------------------------------------------------------------------- /us/include/twz/driver/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/device.h -------------------------------------------------------------------------------- /us/include/twz/driver/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/memory.h -------------------------------------------------------------------------------- /us/include/twz/driver/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/misc.h -------------------------------------------------------------------------------- /us/include/twz/driver/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/msi.h -------------------------------------------------------------------------------- /us/include/twz/driver/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/pcie.h -------------------------------------------------------------------------------- /us/include/twz/driver/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/processor.h -------------------------------------------------------------------------------- /us/include/twz/driver/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/queue.h -------------------------------------------------------------------------------- /us/include/twz/driver/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/driver/system.h -------------------------------------------------------------------------------- /us/include/twz/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/event.h -------------------------------------------------------------------------------- /us/include/twz/fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/fault.h -------------------------------------------------------------------------------- /us/include/twz/gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/gate.h -------------------------------------------------------------------------------- /us/include/twz/hier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/hier.h -------------------------------------------------------------------------------- /us/include/twz/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/io.h -------------------------------------------------------------------------------- /us/include/twz/keyring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/keyring.h -------------------------------------------------------------------------------- /us/include/twz/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/mutex.h -------------------------------------------------------------------------------- /us/include/twz/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/name.h -------------------------------------------------------------------------------- /us/include/twz/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/obj.h -------------------------------------------------------------------------------- /us/include/twz/objctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/objctl.h -------------------------------------------------------------------------------- /us/include/twz/persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/persist.h -------------------------------------------------------------------------------- /us/include/twz/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/pty.h -------------------------------------------------------------------------------- /us/include/twz/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/queue.h -------------------------------------------------------------------------------- /us/include/twz/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/security.h -------------------------------------------------------------------------------- /us/include/twz/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/sys.h -------------------------------------------------------------------------------- /us/include/twz/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/thread.h -------------------------------------------------------------------------------- /us/include/twz/twztry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/twztry.h -------------------------------------------------------------------------------- /us/include/twz/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/tx.h -------------------------------------------------------------------------------- /us/include/twz/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/user.h -------------------------------------------------------------------------------- /us/include/twz/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/include/twz/view.h -------------------------------------------------------------------------------- /us/inconsolata.sfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/inconsolata.sfn -------------------------------------------------------------------------------- /us/libtwz/bstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/bstream.c -------------------------------------------------------------------------------- /us/libtwz/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/driver.c -------------------------------------------------------------------------------- /us/libtwz/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/event.c -------------------------------------------------------------------------------- /us/libtwz/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/fault.c -------------------------------------------------------------------------------- /us/libtwz/hier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/hier.c -------------------------------------------------------------------------------- /us/libtwz/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/include.mk -------------------------------------------------------------------------------- /us/libtwz/include/libtwz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/include/libtwz.h -------------------------------------------------------------------------------- /us/libtwz/include/twz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/include/twz.h -------------------------------------------------------------------------------- /us/libtwz/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/io.c -------------------------------------------------------------------------------- /us/libtwz/kso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/kso.c -------------------------------------------------------------------------------- /us/libtwz/libtwz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/libtwz.c -------------------------------------------------------------------------------- /us/libtwz/libtwz.so.flags: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /us/libtwz/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/mutex.c -------------------------------------------------------------------------------- /us/libtwz/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/name.c -------------------------------------------------------------------------------- /us/libtwz/oa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/oa.c -------------------------------------------------------------------------------- /us/libtwz/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/object.c -------------------------------------------------------------------------------- /us/libtwz/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/pty.c -------------------------------------------------------------------------------- /us/libtwz/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/queue.c -------------------------------------------------------------------------------- /us/libtwz/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/thread.c -------------------------------------------------------------------------------- /us/libtwz/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/libtwz/view.c -------------------------------------------------------------------------------- /us/mountains.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/mountains.jpeg -------------------------------------------------------------------------------- /us/musl-1.1.16/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/.gitignore -------------------------------------------------------------------------------- /us/musl-1.1.16/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/COPYRIGHT -------------------------------------------------------------------------------- /us/musl-1.1.16/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/INSTALL -------------------------------------------------------------------------------- /us/musl-1.1.16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/Makefile -------------------------------------------------------------------------------- /us/musl-1.1.16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/README -------------------------------------------------------------------------------- /us/musl-1.1.16/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.16 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/WHATSNEW -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/generic/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/i386/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/i386/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/arch/i386/reloc.h -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/x86_64/bits/endian.h: -------------------------------------------------------------------------------- 1 | #define __BYTE_ORDER __LITTLE_ENDIAN 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/configure -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/aarch64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/aarch64/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/aarch64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/aarch64/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/arm/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/arm/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/arm/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/arm/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/crt1.c -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/crti.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/crtn.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/i386/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/i386/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/i386/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/i386/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/mips/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/mips/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/mips/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/mips/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/mips64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/mips64/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/mips64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/mips64/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/mipsn32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/mipsn32/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/mipsn32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/mipsn32/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/or1k/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/or1k/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/or1k/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/or1k/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/powerpc/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/powerpc/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/powerpc/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/powerpc/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/rcrt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/rcrt1.c -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/s390x/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/s390x/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/s390x/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/s390x/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/sh/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/sh/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/sh/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/sh/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/x32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/x32/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/x32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/x32/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/x86_64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/x86_64/crti.s -------------------------------------------------------------------------------- /us/musl-1.1.16/crt/x86_64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/crt/x86_64/crtn.s -------------------------------------------------------------------------------- /us/musl-1.1.16/elf_x86_64.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/elf_x86_64.xs -------------------------------------------------------------------------------- /us/musl-1.1.16/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/aio.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/alloca.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/ar.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/arpa/ftp.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/assert.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/byteswap.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/complex.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/cpio.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/crypt.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/ctype.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/dirent.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/dlfcn.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/elf.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/endian.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/err.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/errno.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/fcntl.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/features.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/fenv.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/float.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/fmtmsg.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/fnmatch.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/ftw.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/getopt.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/glob.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/grp.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/iconv.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/ifaddrs.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/inttypes.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/iso646.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/langinfo.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/libgen.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/libintl.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/limits.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/link.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/locale.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/malloc.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/math.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/mntent.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/monetary.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/mqueue.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/net/if.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/netdb.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/nl_types.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/paths.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/poll.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/pthread.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/pty.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/pwd.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/regex.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/resolv.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sched.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/scsi/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/scsi/sg.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/search.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/setjmp.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/shadow.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/signal.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/spawn.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stdalign.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stdarg.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stdbool.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stddef.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stdint.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stdio.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stdlib.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/string.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/strings.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/stropts.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/acct.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/auxv.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/dir.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/file.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/io.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/ipc.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/kd.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/klog.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/mman.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/msg.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/mtio.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/poll.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/reg.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/sem.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/shm.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/stat.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/swap.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/time.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/uio.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/un.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/user.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sys/wait.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/sysexits.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/syslog.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/tar.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/termios.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/tgmath.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/threads.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/time.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/uchar.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/ucontext.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/ulimit.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/unistd.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/utime.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/utmp.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/utmpx.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/values.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/wait.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/wchar.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/wctype.h -------------------------------------------------------------------------------- /us/musl-1.1.16/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/include/wordexp.h -------------------------------------------------------------------------------- /us/musl-1.1.16/ldso/dlstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/ldso/dlstart.c -------------------------------------------------------------------------------- /us/musl-1.1.16/ldso/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/ldso/dynlink.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/aio/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/aio/aio.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/cabs.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/carg.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/ccos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/ccos.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/cexp.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/clog.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/conj.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/cpow.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/csin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/csin.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/complex/ctan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/complex/ctan.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/conf/confstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/conf/confstr.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/conf/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/conf/legacy.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/conf/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/conf/sysconf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/crypt/crypt.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ctype/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ctype/alpha.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ctype/punct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ctype/punct.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ctype/wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ctype/wide.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/dirent/dirfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/dirent/dirfd.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/env/clearenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/env/clearenv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/env/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/env/getenv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/env/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/env/putenv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/env/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/env/setenv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/env/unsetenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/env/unsetenv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/exit/_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/exit/_Exit.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/exit/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/exit/abort.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/exit/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/exit/assert.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/exit/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/exit/atexit.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/exit/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/exit/exit.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fcntl/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/fcntl/creat.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fcntl/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/fcntl/fcntl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fcntl/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/fcntl/open.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fcntl/openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/fcntl/openat.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/arm/fenv.c: -------------------------------------------------------------------------------- 1 | #if !__ARM_PCS_VFP 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/fenv/fenv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/mips/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/mips64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/mipsn32/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/powerpc/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef _SOFT_FLOAT 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/fenv/sh/fenv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/fenv/sh/fenv.S -------------------------------------------------------------------------------- /us/musl-1.1.16/src/internal/syscall.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/internal/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/internal/vis.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/ftok.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/ipc.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/msgctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/msgctl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/msgget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/msgget.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/msgrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/msgrcv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/msgsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/msgsnd.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/semctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/semctl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/semget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/semget.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/semop.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/shmat.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/shmctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/shmctl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/shmdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/shmdt.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ipc/shmget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ipc/shmget.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/__dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/__dlsym.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/dladdr.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/dlclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/dlclose.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/dlerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/dlerror.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/dlinfo.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/dlopen.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/dlsym.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/ldso/tlsdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/ldso/tlsdesc.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/legacy/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/legacy/err.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/legacy/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/legacy/ftw.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/legacy/utmpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/legacy/utmpx.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/brk.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/cache.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/cap.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/chroot.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/clone.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/epoll.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/flock.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/ioperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/ioperm.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/iopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/iopl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/module.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/mount.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/ppoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/ppoll.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/prctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/prctl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/ptrace.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/reboot.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/sbrk.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/setns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/setns.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/splice.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/stime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/stime.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/swap.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/syncfs.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/tee.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/utimes.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/wait3.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/wait4.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/linux/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/linux/xattr.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/locale/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/locale/big5.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/locale/hkscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/locale/hkscs.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/locale/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/locale/iconv.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/locale/ksc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/locale/ksc.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/malloc/DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/malloc/DESIGN -------------------------------------------------------------------------------- /us/musl-1.1.16/src/malloc/__brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/malloc/__brk.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__cos.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__cosdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__cosdf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__cosl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__expo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__expo2.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__sin.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__sindf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__sindf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__sinl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__tan.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__tandf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__tandf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/__tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/__tanl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/acos.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/acosf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/acosh.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/acoshf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/acoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/acoshl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/acosl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/asin.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/asinf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/asinh.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/asinhf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/asinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/asinhl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/asinl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atan.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atan2.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atan2f.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atan2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atan2l.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atanf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atanh.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atanhf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atanhl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/atanl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cbrt.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cbrtf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cbrtl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ceil.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ceilf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ceill.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cos.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cosf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cosh.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/coshf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/coshl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/cosl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/erf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/erff.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/erfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/erfl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp10.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp10f.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp10l.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp2.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp2f.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/exp2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/exp2l.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/expf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/expl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/expl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/expm1.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/expm1f.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/expm1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/expm1l.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fabs.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fabsf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fabsl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fdim.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fdimf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fdimf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fdiml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fdiml.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/finite.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/finitef.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/floor.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/floorf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/floorl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/floorl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fma.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmaf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmal.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmax.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmaxf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmaxl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmin.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fminf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fminl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fminl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmod.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmodf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/fmodl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/frexp.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/frexpf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/frexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/frexpl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/hypot.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/hypotf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/hypotl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/hypotl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/acosf.s: -------------------------------------------------------------------------------- 1 | # see acos.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/acosl.s: -------------------------------------------------------------------------------- 1 | # see acos.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/asinf.s: -------------------------------------------------------------------------------- 1 | # see asin.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/asinl.s: -------------------------------------------------------------------------------- 1 | # see asin.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/exp2.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/exp2f.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/expf.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/expm1.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/expm1f.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ilogb.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ilogbf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ilogbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ilogbl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/j0.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/j0f.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/j1.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/j1f.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/jn.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/jnf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ldexp.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/ldexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/ldexpf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/log.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/log2.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/logb.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/logf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/logl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/logl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/modf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/nan.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double nan(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/nanf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float nanf(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/nanl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double nanl(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/pow.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/powf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/powl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/powl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/rint.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/sin.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/sinf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/sinh.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/sinl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/sqrt.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/tan.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/tanf.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/tanh.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/math/tanl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x32/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x32/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x32/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x32/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x86_64/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/misc/a64l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/misc/a64l.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/misc/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/misc/ffs.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/misc/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/misc/ffsl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/misc/gethostid.c: -------------------------------------------------------------------------------- 1 | long gethostid() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/misc/nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/misc/nftw.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/misc/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/misc/pty.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/mman/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/mman/mmap.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/network/res_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int res_init() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/prng/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/prng/rand.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/regex/tre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/regex/tre.h -------------------------------------------------------------------------------- /us/musl-1.1.16/src/setjmp/longjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/signal/sigrtmax.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int __libc_current_sigrtmax() 4 | { 5 | return _NSIG-1; 6 | } 7 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/signal/sigrtmin.c: -------------------------------------------------------------------------------- 1 | int __libc_current_sigrtmin() 2 | { 3 | return 35; 4 | } 5 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/signal/sigsetjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/stat/stat.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/stdio/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/stdio/ext.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/stdio/ofl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/stdio/ofl.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/stdlib/atof.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double atof(const char *s) 4 | { 5 | return strtod(s, 0); 6 | } 7 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/string/arm/memcpy.c: -------------------------------------------------------------------------------- 1 | #if __ARMEB__ || __thumb__ 2 | #include "../memcpy.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/thread/syscall_cp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/thread/tls.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /us/musl-1.1.16/src/time/__tz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/time/__tz.c -------------------------------------------------------------------------------- /us/musl-1.1.16/src/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/musl-1.1.16/src/time/time.c -------------------------------------------------------------------------------- /us/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/playground/README.md -------------------------------------------------------------------------------- /us/playground/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/playground/example.c -------------------------------------------------------------------------------- /us/playground/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/playground/include.mk -------------------------------------------------------------------------------- /us/playground/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/playground/net.cpp -------------------------------------------------------------------------------- /us/playground/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/playground/queue.cpp -------------------------------------------------------------------------------- /us/ports/YCSB-C-fbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/YCSB-C-fbsd/Makefile -------------------------------------------------------------------------------- /us/ports/YCSB-C-fbsd/core/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/YCSB-C-fbsd/core/db.h -------------------------------------------------------------------------------- /us/ports/YCSB-C-fbsd/ycsbc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/YCSB-C-fbsd/ycsbc.cc -------------------------------------------------------------------------------- /us/ports/bash.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/bash.port -------------------------------------------------------------------------------- /us/ports/binutils.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/binutils.port -------------------------------------------------------------------------------- /us/ports/busybox-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/busybox-config -------------------------------------------------------------------------------- /us/ports/busybox.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/busybox.port -------------------------------------------------------------------------------- /us/ports/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/config.sub -------------------------------------------------------------------------------- /us/ports/gcc.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/gcc.port -------------------------------------------------------------------------------- /us/ports/gmp.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/gmp.port -------------------------------------------------------------------------------- /us/ports/libbacktrace.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/libbacktrace.port -------------------------------------------------------------------------------- /us/ports/libtool.m4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/libtool.m4.patch -------------------------------------------------------------------------------- /us/ports/mpc.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/mpc.port -------------------------------------------------------------------------------- /us/ports/mpfr.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/mpfr.port -------------------------------------------------------------------------------- /us/ports/ncurses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/ncurses.patch -------------------------------------------------------------------------------- /us/ports/ncurses.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/ncurses.port -------------------------------------------------------------------------------- /us/ports/port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/port.sh -------------------------------------------------------------------------------- /us/ports/sqlite.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/sqlite.port -------------------------------------------------------------------------------- /us/ports/tomcrypt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/tomcrypt.patch -------------------------------------------------------------------------------- /us/ports/tomcrypt.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/tomcrypt.port -------------------------------------------------------------------------------- /us/ports/tommath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/tommath.patch -------------------------------------------------------------------------------- /us/ports/tommath.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/tommath.port -------------------------------------------------------------------------------- /us/ports/vim.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/vim.port -------------------------------------------------------------------------------- /us/ports/ycsb.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/ports/ycsb.port -------------------------------------------------------------------------------- /us/pre-built/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/pre-built/README.md -------------------------------------------------------------------------------- /us/pre-built/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/pre-built/start.sh -------------------------------------------------------------------------------- /us/sysroot/etc/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0::/:/usr/bin/bash 2 | 3 | -------------------------------------------------------------------------------- /us/twix/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/access.c -------------------------------------------------------------------------------- /us/twix/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/dir.c -------------------------------------------------------------------------------- /us/twix/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/fd.c -------------------------------------------------------------------------------- /us/twix/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/file.c -------------------------------------------------------------------------------- /us/twix/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/include.mk -------------------------------------------------------------------------------- /us/twix/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/linux.c -------------------------------------------------------------------------------- /us/twix/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/process.c -------------------------------------------------------------------------------- /us/twix/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/rand.c -------------------------------------------------------------------------------- /us/twix/rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/rw.c -------------------------------------------------------------------------------- /us/twix/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/syscall.c -------------------------------------------------------------------------------- /us/twix/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/syscalls.h -------------------------------------------------------------------------------- /us/twix/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/thread.c -------------------------------------------------------------------------------- /us/twix/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/twix/time.c -------------------------------------------------------------------------------- /us/users.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/us/users.mk -------------------------------------------------------------------------------- /utils/appendobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/appendobj.c -------------------------------------------------------------------------------- /utils/blake2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/blake2.c -------------------------------------------------------------------------------- /utils/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/blake2.h -------------------------------------------------------------------------------- /utils/bsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/bsv.c -------------------------------------------------------------------------------- /utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/common.h -------------------------------------------------------------------------------- /utils/elfsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/elfsplit.c -------------------------------------------------------------------------------- /utils/file2obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/file2obj.c -------------------------------------------------------------------------------- /utils/hier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/hier.c -------------------------------------------------------------------------------- /utils/include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/include.mk -------------------------------------------------------------------------------- /utils/makekey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/makekey.c -------------------------------------------------------------------------------- /utils/mkcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/mkcap.c -------------------------------------------------------------------------------- /utils/mkdlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/mkdlg.c -------------------------------------------------------------------------------- /utils/mkimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/mkimg.c -------------------------------------------------------------------------------- /utils/objstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/objstat.c -------------------------------------------------------------------------------- /utils/sctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/sctx.c -------------------------------------------------------------------------------- /utils/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/sign.h -------------------------------------------------------------------------------- /utils/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twizzler-operating-system/twizzler-public/HEAD/utils/user.c --------------------------------------------------------------------------------