├── .gitignore ├── BUGS ├── COPYING ├── ChangeLog ├── INSTALL ├── INSTALL-cross ├── Makeconf ├── Makefile ├── NEWS ├── README ├── TODO ├── aclocal.m4 ├── acpi ├── Makefile ├── acpi-ops.c ├── acpi.c ├── acpifs.c ├── acpifs.h ├── func_files.c ├── func_files.h ├── main.c ├── mig-mutate.h ├── myacpi.h ├── ncache.c ├── ncache.h ├── netfs_impl.c ├── netfs_impl.h ├── options.c └── options.h ├── auth ├── Makefile ├── auth.c ├── auth.h ├── mig-decls.h └── mig-mutate.h ├── benchmarks ├── Makefile └── forks.c ├── boot ├── Makefile ├── boot.c ├── boot_script.c ├── boot_script.h ├── mig-decls.h ├── mig-mutate.h ├── private.h └── userland-boot.c ├── config.guess ├── config.make.in ├── config.sub ├── config ├── Makefile ├── login-.bash_login ├── login-.bashrc ├── login-.hushlogin ├── login-.profile ├── login-README ├── motd ├── ttys └── ttys.in ├── configure.ac ├── console-client ├── Makefile ├── bdf.c ├── bdf.h ├── bell.h ├── console.c ├── current-vcs.c ├── display.h ├── driver.c ├── driver.h ├── fb.c ├── fb.h ├── generic-speaker.c ├── input.h ├── kbd-repeat.c ├── mach-inputdev.h ├── ncursesw.c ├── pc-kbd.c ├── pc-mouse.c ├── timer.c ├── timer.h ├── trans.c ├── trans.h ├── unicode.h ├── vga-dynacolor.c ├── vga-dynacolor.h ├── vga-dynafont.c ├── vga-dynafont.h ├── vga-hw.h ├── vga-support.c ├── vga-support.h ├── vga.c └── xkb │ ├── MISSING-FEATURES │ ├── README │ ├── TODO │ ├── xkb.c │ ├── xkb.h │ └── xkbtimer.c ├── console ├── Makefile ├── README.UTF8 ├── console.c ├── display.c ├── display.h ├── hurd.ti ├── input.c ├── input.h ├── motd.UTF8 ├── mutations.h ├── pager.c └── pager.h ├── daemons ├── Makefile ├── console-run.c ├── getty.c ├── lmail.c ├── rc.sh ├── runsystem.hurd.sh ├── runsystem.hurd.sh.in ├── runsystem.sh └── runttys.c ├── defpager ├── Makefile ├── backing.c ├── defpager.c └── wiring.c ├── devnode ├── Makefile ├── README ├── devnode.c ├── mig-mutate.h └── util.h ├── doc ├── .gitignore ├── Makefile ├── gpl.texinfo ├── hurd.texi └── navigating ├── eth-multiplexer ├── ChangeLog ├── Makefile ├── README ├── dead-name.c ├── demuxer.c ├── dev_stat.c ├── device_impl.c ├── ethernet.c ├── ethernet.h ├── mig-decls.h ├── mig-mutate.h ├── multiplexer.c ├── netfs_impl.c ├── netfs_impl.h ├── test.c ├── util.h ├── vdev.c └── vdev.h ├── exec ├── Makefile ├── elfcore.c ├── exec.c ├── execmutations.h ├── hashexec.c ├── hostarch.c ├── main.c ├── mig-decls.h └── priv.h ├── ext2fs ├── Makefile ├── balloc.c ├── bitmap.c ├── dir.c ├── ext2_fs.h ├── ext2fs.c ├── ext2fs.h ├── getblk.c ├── hyper.c ├── ialloc.c ├── inode.c ├── msg.c ├── pager.c ├── pokel.c ├── storeinfo.c ├── truncate.c ├── xattr.c ├── xattr.h └── xinl.c ├── fatfs ├── Makefile ├── dir.c ├── fat.c ├── fat.h ├── fatfs.h ├── inode.c ├── main.c ├── node-create.c ├── pager.c ├── virt-inode.c └── virt-inode.h ├── fstests ├── Makefile ├── fdtests.c ├── fstests.c ├── opendisk.c └── timertest.c ├── ftpfs ├── Makefile ├── ccache.c ├── ccache.h ├── conn.c ├── dir.c ├── fs.c ├── ftpfs.c ├── ftpfs.h ├── host.c ├── ncache.c ├── netfs.c └── node.c ├── gitlog-to-changelog ├── hostmux ├── Makefile ├── hostmux-xinl.c ├── hostmux.c ├── hostmux.h ├── leaf.c ├── mux.c ├── node.c └── stubs.c ├── hurd.boot ├── hurd ├── =pending-changes ├── Makefile ├── acpi.defs ├── auth.defs ├── auth_reply.defs ├── auth_request.defs ├── console.h ├── crash.defs ├── crash_reply.defs ├── default_pager.defs ├── default_pager_reply.defs ├── default_pager_types.h ├── exec.defs ├── exec_startup.defs ├── fs.defs ├── fs_notify.defs ├── fsys.defs ├── fsys_reply.defs ├── gensym.awk ├── hurd_types.defs ├── hurd_types.h ├── ifsock.defs ├── iioctl.defs ├── interrupt.defs ├── io.defs ├── io_reply.defs ├── io_request.defs ├── ioctl-decode.h ├── ioctl-tmpl.sym ├── ioctl.awk ├── ioctl_types.defs ├── ioctl_types.h ├── ioctls.defs ├── kdioctl.defs ├── kernel_boot.defs ├── login.defs ├── msg.defs ├── msg_reply.defs ├── msg_request.defs ├── newterm.defs ├── password.defs ├── paths.h ├── pci.defs ├── pfinet.defs ├── pioctl.defs ├── process.defs ├── process_reply.defs ├── process_request.defs ├── rioctl.defs ├── rtc.h ├── shared.h ├── shutdown.defs ├── socket.defs ├── startup.defs ├── startup_notify.defs ├── startup_reply.defs ├── subsystems ├── term.defs ├── tioctl.defs └── version.h ├── include ├── Makefile ├── pids.h └── sys │ └── procfs.h ├── init ├── Makefile └── init.c ├── install-sh ├── isofs ├── EXTENSIONS ├── Makefile ├── ext.c ├── inode.c ├── iso9660.h ├── isofs.h ├── lookup.c ├── main.c ├── pager.c ├── rr.c └── rr.h ├── libbpf ├── Makefile ├── bpf_impl.c ├── bpf_impl.h ├── queue.c ├── queue.h └── util.h ├── libcons ├── Makefile ├── cons-lookup.c ├── cons-switch.c ├── cons.h ├── demuxer.c ├── dir-changed.c ├── file-changed.c ├── init-init.c ├── init-loop.c ├── mutations.h ├── opts-std-startup.c ├── opts-version.c ├── priv.c ├── priv.h ├── vcons-add.c ├── vcons-close.c ├── vcons-destroy.c ├── vcons-event.c ├── vcons-input.c ├── vcons-move-mouse.c ├── vcons-open.c ├── vcons-refresh.c ├── vcons-remove.c └── vcons-scrollback.c ├── libdiskfs ├── Makefile ├── boot-start.c ├── conch-fetch.c ├── conch-set.c ├── console.c ├── dead-name.c ├── demuxer.c ├── dir-chg.c ├── dir-clear.c ├── dir-init.c ├── dir-link.c ├── dir-lookup.c ├── dir-mkdir.c ├── dir-mkfile.c ├── dir-readdir.c ├── dir-rename.c ├── dir-renamed.c ├── dir-rmdir.c ├── dir-unlink.c ├── direnter.c ├── dirremove.c ├── dirrewrite.c ├── disk-pager.c ├── diskfs-pager.h ├── diskfs.h ├── extern-inline.c ├── fhandle.h ├── file-access.c ├── file-chauthor.c ├── file-chflags.c ├── file-chg.c ├── file-chmod.c ├── file-chown.c ├── file-exec.c ├── file-get-fs-opts.c ├── file-get-trans.c ├── file-get-transcntl.c ├── file-getcontrol.c ├── file-getfh.c ├── file-getlinknode.c ├── file-lock-stat.c ├── file-lock.c ├── file-record-lock.c ├── file-reparent.c ├── file-set-size.c ├── file-set-trans.c ├── file-statfs.c ├── file-sync.c ├── file-syncfs.c ├── file-utimes.c ├── fsmutations.h ├── fsys-forward.c ├── fsys-get-children.c ├── fsys-get-source.c ├── fsys-getfile.c ├── fsys-getroot.c ├── fsys-goaway.c ├── fsys-options.c ├── fsys-startup.c ├── fsys-syncfs.c ├── get-source.c ├── ifsock.c ├── init-first.c ├── init-init.c ├── init-main.c ├── init-startup.c ├── io-async-icky.c ├── io-async.c ├── io-duplicate.c ├── io-get-conch.c ├── io-identity.c ├── io-map-cntl.c ├── io-map.c ├── io-modes-get.c ├── io-modes-off.c ├── io-modes-on.c ├── io-modes-set.c ├── io-owner-get.c ├── io-owner-mod.c ├── io-pathconf.c ├── io-prenotify.c ├── io-read.c ├── io-readable.c ├── io-reauthenticate.c ├── io-rel-conch.c ├── io-restrict-auth.c ├── io-revoke.c ├── io-seek.c ├── io-select.c ├── io-sigio.c ├── io-stat.c ├── io-stubs.c ├── io-version.c ├── io-write.c ├── lithp.h ├── lookup.c ├── name-cache.c ├── node-cache.c ├── node-create.c ├── node-drop.c ├── node-lastref.c ├── node-make.c ├── node-nput.c ├── node-nputl.c ├── node-nref.c ├── node-nrefl.c ├── node-nrele.c ├── node-nrelel.c ├── node-rdwr.c ├── node-times.c ├── node-update.c ├── opts-append-std.c ├── opts-common.c ├── opts-get.c ├── opts-runtime.c ├── opts-set.c ├── opts-std-runtime.c ├── opts-std-startup.c ├── opts-version.c ├── peropen-make.c ├── peropen-rele.c ├── priv.c ├── priv.h ├── protid-make.c ├── protid-rele.c ├── rdwr-internal.c ├── readonly-changed.c ├── readonly.c ├── remount.c ├── shutdown.c ├── sync-default.c ├── sync-interval.c ├── trans-callback.c ├── validate-author.c ├── validate-flags.c ├── validate-group.c ├── validate-mode.c ├── validate-owner.c └── validate-rdev.c ├── libfshelp-tests ├── Makefile ├── README ├── README.new_tests ├── fork.c ├── locks-tests ├── locks.c ├── race.c ├── test-fcntl.c ├── test-flock.c └── test-lockf.c ├── libfshelp ├── Makefile ├── delegate.c ├── drop-transbox.c ├── exec-reauth.c ├── extern-inline.c ├── fetch-control.c ├── fetch-root.c ├── fshelp.h ├── get-identity.c ├── lock-acquire.c ├── lock-init.c ├── perms-access.c ├── perms-checkdirmod.c ├── perms-iscontroller.c ├── perms-isowner.c ├── rlock-drop-peropen.c ├── rlock-status.c ├── rlock-tweak.c ├── rlock.h ├── set-active.c ├── set-options.c ├── start-translator-long.c ├── start-translator.c ├── touch.c ├── transbox-init.c ├── translated.c └── translator-list.c ├── libftpconn ├── Makefile ├── addr.c ├── cmd.c ├── create.c ├── cwd.c ├── errs.c ├── fname.c ├── ftpconn.h ├── names.c ├── open.c ├── priv.h ├── reply.c ├── rmt.c ├── set-type.c ├── stats.c ├── unix.c ├── xfer.c └── xinl.c ├── libhurd-slab ├── Makefile ├── slab.c └── slab.h ├── libhurdbugaddr ├── Makefile └── bugaddr.c ├── libihash ├── Makefile ├── ihash.c ├── ihash.h └── murmur3.c ├── libiohelp ├── Makefile ├── get_conch.c ├── handle_io_get_conch.c ├── handle_io_release_conch.c ├── initialize_conch.c ├── iohelp.h ├── iouser-create.c ├── iouser-dup.c ├── iouser-free.c ├── iouser-reauth.c ├── iouser-restrict.c ├── return-buffer.c ├── shared.c └── verify_user_conch.c ├── libirqhelp ├── Makefile ├── irqhelp.c └── irqhelp.h ├── libmachdev ├── Makefile ├── ds_routines.c ├── mach_device.h ├── machdev-dev_hdr.h ├── machdev-device_emul.h ├── machdev.h ├── mig-decls.h ├── mig-mutate.h ├── trivfs_server.c └── trivfs_server.h ├── libnetfs ├── Makefile ├── append-args.c ├── append-std-options.c ├── callbacks.h ├── dead-name.c ├── demuxer.c ├── dir-link.c ├── dir-lookup.c ├── dir-mkdir.c ├── dir-mkfile.c ├── dir-notice-changes.c ├── dir-readdir.c ├── dir-rename.c ├── dir-rmdir.c ├── dir-unlink.c ├── drop-node.c ├── execserver.h ├── file-chauthor.c ├── file-check-access.c ├── file-chflags.c ├── file-chmod.c ├── file-chown.c ├── file-exec.c ├── file-get-fs-options.c ├── file-get-storage-info-default.c ├── file-get-storage-info.c ├── file-get-transcntl.c ├── file-get-translator.c ├── file-getcontrol.c ├── file-getlinknode.c ├── file-lock-stat.c ├── file-lock.c ├── file-map.c ├── file-record-lock.c ├── file-reparent.c ├── file-set-size.c ├── file-set-translator.c ├── file-statfs.c ├── file-sync.c ├── file-syncfs.c ├── file-utimes.c ├── fsstubs.c ├── fsys-get-children.c ├── fsys-get-options.c ├── fsys-get-source.c ├── fsys-getroot.c ├── fsys-goaway.c ├── fsys-set-options.c ├── fsys-syncfs.c ├── fsysstubs.c ├── get-source.c ├── init-init.c ├── init-loop.c ├── init-startup.c ├── io-async.c ├── io-clear-some-openmodes.c ├── io-duplicate.c ├── io-get-icky-async-id.c ├── io-get-openmodes.c ├── io-get-owner.c ├── io-identity.c ├── io-mod-owner.c ├── io-pathconf.c ├── io-read.c ├── io-readable.c ├── io-reauthenticate.c ├── io-restrict-auth.c ├── io-revoke.c ├── io-seek.c ├── io-select.c ├── io-set-all-openmodes.c ├── io-set-some-openmodes.c ├── io-stat.c ├── io-version.c ├── io-write.c ├── iostubs.c ├── make-node.c ├── make-peropen.c ├── make-protid.c ├── misc.h ├── modes.h ├── mutations.h ├── netfs.h ├── nput.c ├── nref.c ├── nrele.c ├── priv.h ├── release-peropen.c ├── release-protid.c ├── runtime-argp.c ├── set-get-trans.c ├── set-options.c ├── shutdown.c ├── startup-argp.c ├── std-runtime-argp.c ├── std-startup-argp.c └── trans-callback.c ├── libpager ├── Makefile ├── chg-compl.c ├── clean.c ├── data-request.c ├── data-return.c ├── data-unlock.c ├── demuxer.c ├── dropweak.c ├── get-upi.c ├── inhibit-term.c ├── lock-completed.c ├── lock-object.c ├── mark-error.c ├── mig-decls.h ├── mig-mutate.h ├── object-init.c ├── object-terminate.c ├── offer-page.c ├── pagemap.c ├── pager-attr.c ├── pager-create.c ├── pager-flush.c ├── pager-memcpy.c ├── pager-port.c ├── pager-return.c ├── pager-ro-port.c ├── pager-shutdown.c ├── pager-sync.c ├── pager.h ├── priv.h ├── queue.h └── stubs.c ├── libpipe ├── Makefile ├── addr.c ├── dgram.c ├── pipe-funcs.c ├── pipe.c ├── pipe.h ├── pq-funcs.c ├── pq.c ├── pq.h ├── seqpack.c └── stream.c ├── libports ├── Makefile ├── begin-rpc.c ├── bucket-iterate.c ├── claim-right.c ├── class-iterate.c ├── complete-deallocate.c ├── count-bucket.c ├── count-class.c ├── create-bucket.c ├── create-class.c ├── create-internal.c ├── create-port-noinstall.c ├── create-port.c ├── dead-name.c ├── default-uninhibitable-rpcs.c ├── destroy-right.c ├── enable-bucket.c ├── enable-class.c ├── end-rpc.c ├── extern-inline.c ├── get-right.c ├── get-send-right.c ├── import-port.c ├── inhibit-all-rpcs.c ├── inhibit-bucket-rpcs.c ├── inhibit-class-rpcs.c ├── inhibit-port-rpcs.c ├── init.c ├── interrupt-notified-rpcs.c ├── interrupt-on-notify.c ├── interrupt-operation.c ├── interrupt-rpcs.c ├── interrupted.c ├── lookup-port.c ├── manage-multithread.c ├── manage-one-thread.c ├── mig-decls.h ├── mig-mutate.h ├── no-senders.c ├── notify-dead-name.c ├── notify-msg-accepted.c ├── notify-no-senders.c ├── notify-port-deleted.c ├── notify-port-destroyed.c ├── notify-send-once.c ├── port-deref-deferred.c ├── port-deref-deferred.h ├── port-deref-weak.c ├── port-deref.c ├── port-ref-weak.c ├── port-ref.c ├── ports.h ├── reallocate-from-external.c ├── reallocate-port.c ├── request-notification.c ├── resume-all-rpcs.c ├── resume-bucket-rpcs.c ├── resume-class-rpcs.c ├── resume-port-rpcs.c └── transfer-right.c ├── libps ├── Makefile ├── common.h ├── context.c ├── filters.c ├── fmt.c ├── host.c ├── proclist.c ├── procstat.c ├── ps.h ├── pshost.h ├── spec.c ├── tty.c ├── user.c └── write.c ├── libshouldbeinlibc ├── Makefile ├── assert-backtrace.c ├── assert-backtrace.h ├── cacheq.c ├── cacheq.h ├── canon-host.c ├── exec-reauth.c ├── fsysops.c ├── idvec-auth.c ├── idvec-funcs.c ├── idvec-impgids.c ├── idvec-rep.c ├── idvec-verify.c ├── idvec.c ├── idvec.h ├── lcm.c ├── localhost.c ├── maptime-funcs.c ├── maptime.c ├── maptime.h ├── nullauth.c ├── nullauth.h ├── portinfo.c ├── portinfo.h ├── portxlate.c ├── portxlate.h ├── refcount.c ├── refcount.h ├── shared-dom.c ├── termsize.c ├── timefmt.c ├── timefmt.h ├── ugids-argp.c ├── ugids-auth.c ├── ugids-imply.c ├── ugids-merge.c ├── ugids-posix.c ├── ugids-rep.c ├── ugids-subtract.c ├── ugids-verify-auth.c ├── ugids-verify.c ├── ugids-xinl.c ├── ugids.c ├── ugids.h ├── wire.c ├── wire.h └── xportinfo.c ├── libstore ├── Makefile ├── argp.c ├── bunzip2.c ├── clone.c ├── copy.c ├── create.c ├── crypt.h ├── decode.c ├── derive.c ├── device.c ├── do-bunzip2.c ├── do-gunzip.c ├── enc.c ├── encode.c ├── file.c ├── flags.c ├── gunzip.c ├── kids.c ├── make.c ├── map.c ├── memobj.c ├── module.c ├── mvol.c ├── nbd.c ├── open.c ├── part.c ├── rdwr.c ├── remap.c ├── set.c ├── std.c ├── store.h ├── stripe.c ├── task.c ├── typed.c ├── unknown.c ├── unzipstore.c ├── url.c ├── util.c ├── xinl.c └── zero.c ├── libtrivfs ├── Makefile ├── append-args.c ├── cntl-clean.c ├── cntl-create.c ├── demuxer.c ├── dir-chg.c ├── dir-link.c ├── dir-lookup.c ├── dir-mkdir.c ├── dir-mkfile.c ├── dir-readdir.c ├── dir-rename.c ├── dir-rmdir.c ├── dir-unlink.c ├── dyn-classes.c ├── file-access.c ├── file-chauthor.c ├── file-chflags.c ├── file-chg.c ├── file-chmod.c ├── file-chown.c ├── file-exec.c ├── file-get-fs-options.c ├── file-get-storage-info.c ├── file-get-trans.c ├── file-get-transcntl.c ├── file-getcontrol.c ├── file-getfh.c ├── file-getlinknode.c ├── file-lock-stat.c ├── file-lock.c ├── file-record-lock.c ├── file-reparent.c ├── file-set-size.c ├── file-set-trans.c ├── file-statfs.c ├── file-sync.c ├── file-syncfs.c ├── file-utimes.c ├── fsys-forward.c ├── fsys-get-children.c ├── fsys-get-options.c ├── fsys-get-source.c ├── fsys-getroot.c ├── fsys-goaway.c ├── fsys-set-options.c ├── fsys-stubs.c ├── fsys-syncfs.c ├── get-source.c ├── io-async-icky.c ├── io-async.c ├── io-duplicate.c ├── io-identity.c ├── io-map.c ├── io-modes-get.c ├── io-modes-off.c ├── io-modes-on.c ├── io-modes-set.c ├── io-owner-get.c ├── io-owner-mod.c ├── io-pathconf.c ├── io-read.c ├── io-readable.c ├── io-reauthenticate.c ├── io-restrict-auth.c ├── io-revoke.c ├── io-seek.c ├── io-select.c ├── io-stat.c ├── io-stubs.c ├── io-version.c ├── io-write.c ├── make-node.c ├── make-peropen.c ├── mig-decls.h ├── mig-mutate.h ├── open.c ├── priv.c ├── priv.h ├── protid-clean.c ├── protid-dup.c ├── runtime-argp.c ├── set-options.c ├── startup.c ├── times.c └── trivfs.h ├── login ├── Makefile └── utmp.c ├── lwip ├── Makefile ├── iioctl-ops.c ├── io-ops.c ├── lwip-hurd.h ├── lwip-util.c ├── lwip-util.h ├── main.c ├── mig-decls.h ├── mig-mutate.h ├── options.c ├── options.h ├── pfinet-ops.c ├── port-objs.c ├── port │ ├── include │ │ └── netif │ │ │ ├── hurdethif.h │ │ │ ├── hurdloopif.h │ │ │ ├── hurdtunif.h │ │ │ └── ifcommon.h │ └── netif │ │ ├── hurdethif.c │ │ ├── hurdloopif.c │ │ ├── hurdtunif.c │ │ └── ifcommon.c ├── socket-ops.c ├── startup-ops.c ├── startup.c └── startup.h ├── mach-defpager ├── Makefile ├── default_pager.c ├── default_pager.h ├── file_io.h ├── main.c ├── mig-decls.h ├── mig-mutate.h ├── priv.h ├── queue.h ├── setup.c ├── wiring.c └── wiring.h ├── mkinstalldirs ├── mount ├── mount.defs ├── mount.h └── mount_types.h ├── move-if-change ├── nfs ├── Makefile ├── cache.c ├── consts.c ├── main.c ├── mount.c ├── mount.h ├── name-cache.c ├── nfs-spec.h ├── nfs.c ├── nfs.h ├── ops.c ├── rpc.c └── storage-info.c ├── nfsd ├── Makefile ├── cache.c ├── fsys.c ├── loop.c ├── main.c ├── nfsd.h ├── ops.c └── xdr.c ├── pci-arbiter ├── Makefile ├── TODO ├── device_map.c ├── device_map.h ├── func_files.c ├── func_files.h ├── main.c ├── mig-mutate.h ├── ncache.c ├── ncache.h ├── netfs_impl.c ├── netfs_impl.h ├── options.c ├── options.h ├── pci-ops.c ├── pcifs.c └── pcifs.h ├── pfinet ├── Makefile ├── README ├── config.h ├── dummy.c ├── ethernet.c ├── glue-include │ ├── asm │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── byteorder.h │ │ ├── delay.h │ │ ├── errno.h │ │ ├── hardirq.h │ │ ├── init.h │ │ ├── segment.h │ │ ├── spinlock.h │ │ ├── system.h │ │ ├── types.h │ │ └── uaccess.h │ └── linux │ │ ├── autoconf.h │ │ ├── binfmts.h │ │ ├── config.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fs.h │ │ ├── if.h │ │ ├── in.h │ │ ├── in6.h │ │ ├── interrupt.h │ │ ├── ioctl.h │ │ ├── ipv6.h │ │ ├── kernel.h │ │ ├── limits.h │ │ ├── major.h │ │ ├── malloc.h │ │ ├── mm.h │ │ ├── param.h │ │ ├── personality.h │ │ ├── poll.h │ │ ├── proc_fs.h │ │ ├── sched.h │ │ ├── slab.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── stat.h │ │ ├── string.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── timex.h │ │ ├── types.h │ │ ├── un.h │ │ ├── version.h │ │ └── wait.h ├── iioctl-ops.c ├── io-ops.c ├── kmem_cache.c ├── linux-src │ ├── arch │ │ ├── alpha │ │ │ └── lib │ │ │ │ ├── checksum.c │ │ │ │ └── csum_partial_copy.c │ │ ├── arm │ │ │ └── lib │ │ │ │ └── checksum.S │ │ ├── i386 │ │ │ └── lib │ │ │ │ ├── checksum.S │ │ │ │ └── old-checksum.c │ │ ├── m68k │ │ │ └── lib │ │ │ │ └── checksum.c │ │ ├── ppc │ │ │ └── lib │ │ │ │ └── checksum.S │ │ ├── s390 │ │ │ └── lib │ │ │ │ └── checksum.c │ │ ├── sparc │ │ │ └── lib │ │ │ │ └── checksum.S │ │ ├── sparc64 │ │ │ └── lib │ │ │ │ └── checksum.S │ │ └── x86_64 │ │ │ └── lib │ │ │ └── checksum.c │ ├── include │ │ ├── asm-alpha │ │ │ └── checksum.h │ │ ├── asm-arm │ │ │ └── checksum.h │ │ ├── asm-i386 │ │ │ └── checksum.h │ │ ├── asm-m68k │ │ │ └── checksum.h │ │ ├── asm-mips │ │ │ └── checksum.h │ │ ├── asm-ppc │ │ │ └── checksum.h │ │ ├── asm-s390 │ │ │ └── checksum.h │ │ ├── asm-sparc │ │ │ └── checksum.h │ │ ├── asm-sparc64 │ │ │ └── checksum.h │ │ ├── asm-x86_64 │ │ │ └── checksum.h │ │ ├── linux │ │ │ ├── a.out.h │ │ │ ├── acct.h │ │ │ ├── adfs_fs.h │ │ │ ├── adfs_fs_i.h │ │ │ ├── adfs_fs_sb.h │ │ │ ├── affs_fs.h │ │ │ ├── affs_fs_i.h │ │ │ ├── affs_fs_sb.h │ │ │ ├── affs_hardblocks.h │ │ │ ├── amifd.h │ │ │ ├── amifdreg.h │ │ │ ├── amigaffs.h │ │ │ ├── apm_bios.h │ │ │ ├── arcdevice.h │ │ │ ├── atalk.h │ │ │ ├── atari_rootsec.h │ │ │ ├── auto_fs.h │ │ │ ├── awe_voice.h │ │ │ ├── ax25.h │ │ │ ├── b1lli.h │ │ │ ├── b1pcmcia.h │ │ │ ├── baycom.h │ │ │ ├── bios32.h │ │ │ ├── bitops.h │ │ │ ├── blk.h │ │ │ ├── blkdev.h │ │ │ ├── bpqether.h │ │ │ ├── busmouse.h │ │ │ ├── capability.h │ │ │ ├── capi.h │ │ │ ├── cd1400.h │ │ │ ├── cdk.h │ │ │ ├── cdrom.h │ │ │ ├── coda.h │ │ │ ├── coda_cache.h │ │ │ ├── coda_fs_i.h │ │ │ ├── coda_linux.h │ │ │ ├── coda_opstats.h │ │ │ ├── coda_proc.h │ │ │ ├── coda_psdev.h │ │ │ ├── coff.h │ │ │ ├── comstats.h │ │ │ ├── concap.h │ │ │ ├── console.h │ │ │ ├── console_struct.h │ │ │ ├── consolemap.h │ │ │ ├── ctype.h │ │ │ ├── cyclades.h │ │ │ ├── dcache.h │ │ │ ├── delay.h │ │ │ ├── devpts_fs.h │ │ │ ├── digi1.h │ │ │ ├── digiFep1.h │ │ │ ├── digiPCI.h │ │ │ ├── dio.h │ │ │ ├── dirent.h │ │ │ ├── dlists.h │ │ │ ├── dmascc.h │ │ │ ├── dtlk.h │ │ │ ├── efs_dir.h │ │ │ ├── efs_fs.h │ │ │ ├── efs_fs_i.h │ │ │ ├── efs_fs_sb.h │ │ │ ├── efs_vh.h │ │ │ ├── elf.h │ │ │ ├── elfcore.h │ │ │ ├── epca.h │ │ │ ├── epcaconfig.h │ │ │ ├── errqueue.h │ │ │ ├── etherdevice.h │ │ │ ├── ext2_fs.h │ │ │ ├── ext2_fs_i.h │ │ │ ├── ext2_fs_sb.h │ │ │ ├── fat_cvf.h │ │ │ ├── fb.h │ │ │ ├── fcdevice.h │ │ │ ├── fd.h │ │ │ ├── fddidevice.h │ │ │ ├── fdreg.h │ │ │ ├── file.h │ │ │ ├── filter.h │ │ │ ├── firewall.h │ │ │ ├── ftape-header-segment.h │ │ │ ├── ftape-vendors.h │ │ │ ├── ftape.h │ │ │ ├── genhd.h │ │ │ ├── ghash.h │ │ │ ├── hayesesp.h │ │ │ ├── hdlcdrv.h │ │ │ ├── hdreg.h │ │ │ ├── hfmodem.h │ │ │ ├── hfs_fs.h │ │ │ ├── hfs_fs_i.h │ │ │ ├── hfs_fs_sb.h │ │ │ ├── hfs_sysdep.h │ │ │ ├── hippidevice.h │ │ │ ├── hpfs_fs.h │ │ │ ├── hpfs_fs_i.h │ │ │ ├── hpfs_fs_sb.h │ │ │ ├── i2c.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── if_arcnet.h │ │ │ ├── if_arp.h │ │ │ ├── if_cablemodem.h │ │ │ ├── if_ec.h │ │ │ ├── if_eql.h │ │ │ ├── if_ether.h │ │ │ ├── if_fc.h │ │ │ ├── if_fddi.h │ │ │ ├── if_frad.h │ │ │ ├── if_hippi.h │ │ │ ├── if_ltalk.h │ │ │ ├── if_packet.h │ │ │ ├── if_plip.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppvar.h │ │ │ ├── if_shaper.h │ │ │ ├── if_slip.h │ │ │ ├── if_strip.h │ │ │ ├── if_tr.h │ │ │ ├── if_tunnel.h │ │ │ ├── igmp.h │ │ │ ├── in_route.h │ │ │ ├── in_systm.h │ │ │ ├── inet.h │ │ │ ├── inetdevice.h │ │ │ ├── init.h │ │ │ ├── ioport.h │ │ │ ├── ip.h │ │ │ ├── ip_fw.h │ │ │ ├── ip_masq.h │ │ │ ├── ipc.h │ │ │ ├── ipsec.h │ │ │ ├── ipv6_route.h │ │ │ ├── ipx.h │ │ │ ├── irda.h │ │ │ ├── isdn.h │ │ │ ├── isdn_divertif.h │ │ │ ├── isdn_ppp.h │ │ │ ├── isdnif.h │ │ │ ├── isicom.h │ │ │ ├── iso_fs.h │ │ │ ├── iso_fs_i.h │ │ │ ├── iso_fs_sb.h │ │ │ ├── istallion.h │ │ │ ├── ixjuser.h │ │ │ ├── joystick.h │ │ │ ├── kbd_diacr.h │ │ │ ├── kbd_kern.h │ │ │ ├── kbd_ll.h │ │ │ ├── kd.h │ │ │ ├── kdev_t.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernelcapi.h │ │ │ ├── keyboard.h │ │ │ ├── kmod.h │ │ │ ├── lapb.h │ │ │ ├── linkage.h │ │ │ ├── linux_logo.h │ │ │ ├── list.h │ │ │ ├── lists.h │ │ │ ├── locks.h │ │ │ ├── loop.h │ │ │ ├── lp.h │ │ │ ├── lp_intern.h │ │ │ ├── lp_m68k.h │ │ │ ├── lp_mfc.h │ │ │ ├── mc146818rtc.h │ │ │ ├── mca.h │ │ │ ├── md.h │ │ │ ├── minix_fs.h │ │ │ ├── minix_fs_i.h │ │ │ ├── minix_fs_sb.h │ │ │ ├── miscdevice.h │ │ │ ├── mman.h │ │ │ ├── modsetver.h │ │ │ ├── module.h │ │ │ ├── mount.h │ │ │ ├── mpp.h │ │ │ ├── mroute.h │ │ │ ├── msdos_fs.h │ │ │ ├── msdos_fs_i.h │ │ │ ├── msdos_fs_sb.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── nbd.h │ │ │ ├── ncp.h │ │ │ ├── ncp_fs.h │ │ │ ├── ncp_fs_i.h │ │ │ ├── ncp_fs_sb.h │ │ │ ├── ncp_mount.h │ │ │ ├── net.h │ │ │ ├── netbeui.h │ │ │ ├── netdevice.h │ │ │ ├── netlink.h │ │ │ ├── netrom.h │ │ │ ├── nfs.h │ │ │ ├── nfs3.h │ │ │ ├── nfs_fs.h │ │ │ ├── nfs_fs_i.h │ │ │ ├── nfs_fs_sb.h │ │ │ ├── nfs_mount.h │ │ │ ├── nfsiod.h │ │ │ ├── nls.h │ │ │ ├── notifier.h │ │ │ ├── ntfs_fs.h │ │ │ ├── ntfs_fs_i.h │ │ │ ├── ntfs_fs_sb.h │ │ │ ├── nubus.h │ │ │ ├── nvram.h │ │ │ ├── openpic.h │ │ │ ├── pagemap.h │ │ │ ├── parport.h │ │ │ ├── parport_pc.h │ │ │ ├── pc_keyb.h │ │ │ ├── pci.h │ │ │ ├── pg.h │ │ │ ├── phonedev.h │ │ │ ├── pipe_fs_i.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── posix_types.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp.h │ │ │ ├── ppp_defs.h │ │ │ ├── prctl.h │ │ │ ├── ps2esdi.h │ │ │ ├── ptrace.h │ │ │ ├── qic117.h │ │ │ ├── qnx4_fs.h │ │ │ ├── qnx4_fs_i.h │ │ │ ├── qnx4_fs_sb.h │ │ │ ├── qnxtypes.h │ │ │ ├── quota.h │ │ │ ├── quotaops.h │ │ │ ├── raid0.h │ │ │ ├── raid1.h │ │ │ ├── raid5.h │ │ │ ├── random.h │ │ │ ├── reboot.h │ │ │ ├── resource.h │ │ │ ├── rocket.h │ │ │ ├── romfs_fs.h │ │ │ ├── romfs_fs_i.h │ │ │ ├── romfs_fs_sb.h │ │ │ ├── rose.h │ │ │ ├── route.h │ │ │ ├── rpcsock.h │ │ │ ├── rtnetlink.h │ │ │ ├── sc26198.h │ │ │ ├── scc.h │ │ │ ├── sdla.h │ │ │ ├── sdla_chdlc.h │ │ │ ├── sdla_fr.h │ │ │ ├── sdla_ppp.h │ │ │ ├── sdla_x25.h │ │ │ ├── sdladrv.h │ │ │ ├── sdlapci.h │ │ │ ├── sdlasfm.h │ │ │ ├── securebits.h │ │ │ ├── selection.h │ │ │ ├── sem.h │ │ │ ├── serial.h │ │ │ ├── serial167.h │ │ │ ├── serialP.h │ │ │ ├── serial_reg.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── skbuff.h │ │ │ ├── smb.h │ │ │ ├── smb_fs.h │ │ │ ├── smb_fs_i.h │ │ │ ├── smb_fs_sb.h │ │ │ ├── smb_mount.h │ │ │ ├── smbno.h │ │ │ ├── smp.h │ │ │ ├── smp_lock.h │ │ │ ├── sound.h │ │ │ ├── soundcard.h │ │ │ ├── soundmodem.h │ │ │ ├── stallion.h │ │ │ ├── stddef.h │ │ │ ├── swap.h │ │ │ ├── swapctl.h │ │ │ ├── synclink.h │ │ │ ├── sys.h │ │ │ ├── sysctl.h │ │ │ ├── sysrq.h │ │ │ ├── sysv_fs.h │ │ │ ├── sysv_fs_i.h │ │ │ ├── sysv_fs_sb.h │ │ │ ├── tasks.h │ │ │ ├── tcp.h │ │ │ ├── telephony.h │ │ │ ├── times.h │ │ │ ├── tpqic02.h │ │ │ ├── tqueue.h │ │ │ ├── trdevice.h │ │ │ ├── tty.h │ │ │ ├── tty_driver.h │ │ │ ├── tty_flip.h │ │ │ ├── tty_ldisc.h │ │ │ ├── udp.h │ │ │ ├── ufs_fs.h │ │ │ ├── ufs_fs_i.h │ │ │ ├── ufs_fs_sb.h │ │ │ ├── uio.h │ │ │ ├── ultrasound.h │ │ │ ├── umsdos_fs.h │ │ │ ├── umsdos_fs.p │ │ │ ├── umsdos_fs_i.h │ │ │ ├── unistd.h │ │ │ ├── user.h │ │ │ ├── utime.h │ │ │ ├── uts.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── video_decoder.h │ │ │ ├── video_encoder.h │ │ │ ├── videodev.h │ │ │ ├── videotext.h │ │ │ ├── vmalloc.h │ │ │ ├── vt.h │ │ │ ├── vt_buffer.h │ │ │ ├── vt_kern.h │ │ │ ├── wanpipe.h │ │ │ ├── wanrouter.h │ │ │ ├── watchdog.h │ │ │ ├── wavefront.h │ │ │ ├── wireless.h │ │ │ ├── wrapper.h │ │ │ ├── x25.h │ │ │ ├── yam.h │ │ │ ├── zftape.h │ │ │ └── zorro.h │ │ └── net │ │ │ ├── addrconf.h │ │ │ ├── af_unix.h │ │ │ ├── arp.h │ │ │ ├── atalkcall.h │ │ │ ├── ax25.h │ │ │ ├── ax25call.h │ │ │ ├── br.h │ │ │ ├── checksum.h │ │ │ ├── datalink.h │ │ │ ├── dst.h │ │ │ ├── flow.h │ │ │ ├── icmp.h │ │ │ ├── if_inet6.h │ │ │ ├── inet_common.h │ │ │ ├── ip.h │ │ │ ├── ip6_fib.h │ │ │ ├── ip6_fw.h │ │ │ ├── ip6_route.h │ │ │ ├── ip_fib.h │ │ │ ├── ip_masq.h │ │ │ ├── ip_masq_mod.h │ │ │ ├── ipconfig.h │ │ │ ├── ipip.h │ │ │ ├── ipv6.h │ │ │ ├── ipx.h │ │ │ ├── ipxcall.h │ │ │ ├── lapb.h │ │ │ ├── lapbcall.h │ │ │ ├── llc.h │ │ │ ├── llc_frame.h │ │ │ ├── llc_name.h │ │ │ ├── llc_state.h │ │ │ ├── llccall.h │ │ │ ├── ndisc.h │ │ │ ├── neighbour.h │ │ │ ├── netbeuicall.h │ │ │ ├── netrom.h │ │ │ ├── nrcall.h │ │ │ ├── p8022.h │ │ │ ├── p8022call.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── profile.h │ │ │ ├── protocol.h │ │ │ ├── psnap.h │ │ │ ├── psnapcall.h │ │ │ ├── rarp.h │ │ │ ├── raw.h │ │ │ ├── rawv6.h │ │ │ ├── rose.h │ │ │ ├── rosecall.h │ │ │ ├── route.h │ │ │ ├── scm.h │ │ │ ├── slhc.h │ │ │ ├── slhc_vj.h │ │ │ ├── snmp.h │ │ │ ├── sock.h │ │ │ ├── spx.h │ │ │ ├── spxcall.h │ │ │ ├── tcp.h │ │ │ ├── transp_v6.h │ │ │ ├── udp.h │ │ │ ├── x25.h │ │ │ └── x25call.h │ └── net │ │ ├── core │ │ ├── Makefile │ │ ├── datagram.c │ │ ├── dev.c │ │ ├── dev_mcast.c │ │ ├── dst.c │ │ ├── filter.c │ │ ├── firewall.c │ │ ├── iovec.c │ │ ├── neighbour.c │ │ ├── profile.c │ │ ├── rtnetlink.c │ │ ├── scm.c │ │ ├── skbuff.c │ │ ├── sock.c │ │ ├── sysctl_net_core.c │ │ └── utils.c │ │ ├── ethernet │ │ ├── Makefile │ │ ├── eth.c │ │ ├── pe2.c │ │ └── sysctl_net_ether.c │ │ ├── ipv4 │ │ ├── Config.in │ │ ├── Makefile │ │ ├── af_inet.c │ │ ├── arp.c │ │ ├── devinet.c │ │ ├── fib_frontend.c │ │ ├── fib_hash.c │ │ ├── fib_rules.c │ │ ├── fib_semantics.c │ │ ├── icmp.c │ │ ├── igmp.c │ │ ├── ip_forward.c │ │ ├── ip_fragment.c │ │ ├── ip_fw.c │ │ ├── ip_gre.c │ │ ├── ip_input.c │ │ ├── ip_masq.c │ │ ├── ip_masq_app.c │ │ ├── ip_masq_autofw.c │ │ ├── ip_masq_cuseeme.c │ │ ├── ip_masq_ftp.c │ │ ├── ip_masq_irc.c │ │ ├── ip_masq_mfw.c │ │ ├── ip_masq_mod.c │ │ ├── ip_masq_portfw.c │ │ ├── ip_masq_quake.c │ │ ├── ip_masq_raudio.c │ │ ├── ip_masq_user.c │ │ ├── ip_masq_vdolive.c │ │ ├── ip_nat_dumb.c │ │ ├── ip_options.c │ │ ├── ip_output.c │ │ ├── ip_sockglue.c │ │ ├── ipconfig.c │ │ ├── ipip.c │ │ ├── ipmr.c │ │ ├── proc.c │ │ ├── protocol.c │ │ ├── rarp.c │ │ ├── raw.c │ │ ├── route.c │ │ ├── syncookies.c │ │ ├── sysctl_net_ipv4.c │ │ ├── tcp.c │ │ ├── tcp_input.c │ │ ├── tcp_ipv4.c │ │ ├── tcp_output.c │ │ ├── tcp_timer.c │ │ ├── timer.c │ │ ├── udp.c │ │ └── utils.c │ │ └── ipv6 │ │ ├── addrconf.c │ │ ├── af_inet6.c │ │ ├── datagram_ipv6.c │ │ ├── exthdrs.c │ │ ├── icmpv6.c │ │ ├── ip6_fib.c │ │ ├── ip6_flowlabel.c │ │ ├── ip6_input.c │ │ ├── ip6_output.c │ │ ├── ipv6_sockglue.c │ │ ├── mcast.c │ │ ├── ndisc.c │ │ ├── protocol_ipv6.c │ │ ├── raw_ipv6.c │ │ ├── reassembly.c │ │ ├── route_ipv6.c │ │ ├── tcp_ipv6.c │ │ └── udp_ipv6.c ├── loopback.c ├── main.c ├── mapped-time.h ├── mig-decls.h ├── mig-mutate.h ├── misc.c ├── options.c ├── pfinet-ops.c ├── pfinet.h ├── sched.c ├── socket-ops.c ├── socket.c ├── stubs.c ├── time.c ├── timer-emul.c └── tunnel.c ├── pflocal ├── Makefile ├── connq.c ├── connq.h ├── fs.c ├── io.c ├── mig-decls.h ├── mig-mutate.h ├── pf.c ├── pflocal.c ├── sock.c ├── sock.h ├── socket.c ├── sserver.c └── sserver.h ├── proc ├── =proc_excrepl.defs ├── Makefile ├── cpu-types.c ├── dead-name.c ├── hash.c ├── host.c ├── info.c ├── main.c ├── mgt.c ├── mig-decls.h ├── mig-mutate.h ├── msg.c ├── ourmsg.defs ├── pgrp.c ├── proc.h ├── proc_exc.defs ├── stubs.c └── wait.c ├── procfs ├── Makefile ├── TODO ├── dircat.c ├── dircat.h ├── main.c ├── main.h ├── netfs.c ├── process.c ├── process.h ├── procfs.c ├── procfs.h ├── procfs_dir.c ├── procfs_dir.h ├── proclist.c ├── proclist.h ├── rootdir.c └── rootdir.h ├── release ├── =announce-0.0 ├── =announce-0.1 ├── =announce-0.2 ├── COPYING.LIB ├── INSTALL-binary ├── Makefile ├── README ├── SETUP ├── SOURCES.0.0 ├── SOURCES.0.2 ├── bfloppy-special.copy ├── bfloppy.boot ├── bfloppy.copy ├── bfloppy1-special.copy ├── bfloppy1.copy ├── bfloppy1.grub ├── bfloppy2-special.copy ├── bfloppy2.boot ├── bfloppy2.copy ├── checklist ├── dist-README ├── fstab-to-settrans ├── install-stripped ├── menu.lst ├── mkemptyso.sh ├── mkfsimage.sh ├── mksmallso.sh ├── release-steps ├── rfloppy-special.copy ├── rfloppy.copy ├── rfloppy.group ├── rfloppy.nss ├── rfloppy.passwd ├── servers.boot └── tool-Makefile ├── rtc ├── Makefile ├── main.c ├── mig-mutate.h └── rtc-cmos_pioctl-ops.c ├── rumpdisk ├── Makefile ├── block-rump.c ├── block-rump.h ├── ioccom-rump.h └── main.c ├── shutdown ├── Makefile ├── mig-mutate.h └── shutdown.c ├── startup ├── Makefile └── startup.c ├── storeio ├── Makefile ├── dev.c ├── dev.h ├── io.c ├── open.c ├── open.h ├── pager.c └── storeio.c ├── sutils ├── MAKEDEV.sh ├── Makefile ├── bless.c ├── clookup.c ├── e2os.sh ├── fsck.c ├── fstab.c ├── fstab.h ├── halt.c ├── losetup.sh ├── reboot.c ├── smp.c ├── swapoff.c ├── swapon.c └── update.c ├── tasks ├── term ├── Makefile ├── devio.c ├── hurdio.c ├── main.c ├── mig-decls.h ├── mig-mutate.h ├── munge.c ├── ourmsg.defs ├── ptyio.c ├── term.h ├── users.c └── xinl.c ├── tmpfs ├── Makefile ├── dir.c ├── node.c ├── pager-stubs.c ├── tmpfs.c └── tmpfs.h ├── trans ├── Makefile ├── bogus-fifo.c ├── crash.c ├── fakeroot.c ├── fifo.c ├── firmlink.c ├── fwd.c ├── hello-mt.c ├── hello.c ├── ifsock.c ├── magic.c ├── mtab.c ├── new-fifo.c ├── null.c ├── password.c ├── proxy-defpager.c ├── random.c ├── remap.c ├── streamio.c └── symlink.c ├── usermux ├── Makefile ├── leaf.c ├── mux.c ├── node.c ├── stubs.c ├── usermux-xinl.c ├── usermux.c └── usermux.h ├── utils ├── Makefile ├── addauth.c ├── devprobe.c ├── fakeauth.c ├── fakeroot.sh ├── frobauth-mod.c ├── frobauth.c ├── frobauth.doc ├── frobauth.h ├── fsysopts.c ├── ftpcp.c ├── ftpdir.c ├── gcore.c ├── ids.c ├── login.c ├── loginpr.sh ├── match-options.c ├── match-options.h ├── mount.c ├── msgids.c ├── msgids.h ├── msgport.c ├── nonsugid.c ├── nullauth.c ├── parse.c ├── parse.h ├── pids.c ├── pids.h ├── portinfo.c ├── ps.c ├── psout.c ├── psout.h ├── remap.sh ├── rmauth.c ├── rpcscan.c ├── rpctrace.c ├── setauth.c ├── settrans.c ├── shd.c ├── showtrans.c ├── storecat.c ├── storeinfo.c ├── storeread.c ├── sush.sh ├── syncfs.c ├── umount.c ├── unsu.c ├── uptime.sh ├── vmallocate.c ├── vminfo.c ├── vmstat.c ├── w.c └── x.c └── version.h.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL-cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/INSTALL-cross -------------------------------------------------------------------------------- /Makeconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/Makeconf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /acpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/Makefile -------------------------------------------------------------------------------- /acpi/acpi-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/acpi-ops.c -------------------------------------------------------------------------------- /acpi/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/acpi.c -------------------------------------------------------------------------------- /acpi/acpifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/acpifs.c -------------------------------------------------------------------------------- /acpi/acpifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/acpifs.h -------------------------------------------------------------------------------- /acpi/func_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/func_files.c -------------------------------------------------------------------------------- /acpi/func_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/func_files.h -------------------------------------------------------------------------------- /acpi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/main.c -------------------------------------------------------------------------------- /acpi/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/mig-mutate.h -------------------------------------------------------------------------------- /acpi/myacpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/myacpi.h -------------------------------------------------------------------------------- /acpi/ncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/ncache.c -------------------------------------------------------------------------------- /acpi/ncache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/ncache.h -------------------------------------------------------------------------------- /acpi/netfs_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/netfs_impl.c -------------------------------------------------------------------------------- /acpi/netfs_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/netfs_impl.h -------------------------------------------------------------------------------- /acpi/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/options.c -------------------------------------------------------------------------------- /acpi/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/acpi/options.h -------------------------------------------------------------------------------- /auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/auth/Makefile -------------------------------------------------------------------------------- /auth/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/auth/auth.c -------------------------------------------------------------------------------- /auth/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/auth/auth.h -------------------------------------------------------------------------------- /auth/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/auth/mig-decls.h -------------------------------------------------------------------------------- /auth/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/auth/mig-mutate.h -------------------------------------------------------------------------------- /benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/benchmarks/Makefile -------------------------------------------------------------------------------- /benchmarks/forks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/benchmarks/forks.c -------------------------------------------------------------------------------- /boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/Makefile -------------------------------------------------------------------------------- /boot/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/boot.c -------------------------------------------------------------------------------- /boot/boot_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/boot_script.c -------------------------------------------------------------------------------- /boot/boot_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/boot_script.h -------------------------------------------------------------------------------- /boot/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/mig-decls.h -------------------------------------------------------------------------------- /boot/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/mig-mutate.h -------------------------------------------------------------------------------- /boot/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/private.h -------------------------------------------------------------------------------- /boot/userland-boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/boot/userland-boot.c -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config.guess -------------------------------------------------------------------------------- /config.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config.make.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config.sub -------------------------------------------------------------------------------- /config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/Makefile -------------------------------------------------------------------------------- /config/login-.bash_login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/login-.bash_login -------------------------------------------------------------------------------- /config/login-.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/login-.bashrc -------------------------------------------------------------------------------- /config/login-.hushlogin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/login-.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/login-.profile -------------------------------------------------------------------------------- /config/login-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/login-README -------------------------------------------------------------------------------- /config/motd: -------------------------------------------------------------------------------- 1 | This is the Hurd. Welcome. 2 | -------------------------------------------------------------------------------- /config/ttys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/ttys -------------------------------------------------------------------------------- /config/ttys.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/config/ttys.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/configure.ac -------------------------------------------------------------------------------- /console-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/Makefile -------------------------------------------------------------------------------- /console-client/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/bdf.c -------------------------------------------------------------------------------- /console-client/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/bdf.h -------------------------------------------------------------------------------- /console-client/bell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/bell.h -------------------------------------------------------------------------------- /console-client/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/console.c -------------------------------------------------------------------------------- /console-client/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/display.h -------------------------------------------------------------------------------- /console-client/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/driver.c -------------------------------------------------------------------------------- /console-client/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/driver.h -------------------------------------------------------------------------------- /console-client/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/fb.c -------------------------------------------------------------------------------- /console-client/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/fb.h -------------------------------------------------------------------------------- /console-client/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/input.h -------------------------------------------------------------------------------- /console-client/pc-kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/pc-kbd.c -------------------------------------------------------------------------------- /console-client/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/timer.c -------------------------------------------------------------------------------- /console-client/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/timer.h -------------------------------------------------------------------------------- /console-client/trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/trans.c -------------------------------------------------------------------------------- /console-client/trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/trans.h -------------------------------------------------------------------------------- /console-client/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/unicode.h -------------------------------------------------------------------------------- /console-client/vga-hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/vga-hw.h -------------------------------------------------------------------------------- /console-client/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/vga.c -------------------------------------------------------------------------------- /console-client/xkb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/xkb/TODO -------------------------------------------------------------------------------- /console-client/xkb/xkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/xkb/xkb.c -------------------------------------------------------------------------------- /console-client/xkb/xkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console-client/xkb/xkb.h -------------------------------------------------------------------------------- /console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/Makefile -------------------------------------------------------------------------------- /console/README.UTF8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/README.UTF8 -------------------------------------------------------------------------------- /console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/console.c -------------------------------------------------------------------------------- /console/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/display.c -------------------------------------------------------------------------------- /console/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/display.h -------------------------------------------------------------------------------- /console/hurd.ti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/hurd.ti -------------------------------------------------------------------------------- /console/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/input.c -------------------------------------------------------------------------------- /console/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/input.h -------------------------------------------------------------------------------- /console/motd.UTF8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/motd.UTF8 -------------------------------------------------------------------------------- /console/mutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/mutations.h -------------------------------------------------------------------------------- /console/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/pager.c -------------------------------------------------------------------------------- /console/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/console/pager.h -------------------------------------------------------------------------------- /daemons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/Makefile -------------------------------------------------------------------------------- /daemons/console-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/console-run.c -------------------------------------------------------------------------------- /daemons/getty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/getty.c -------------------------------------------------------------------------------- /daemons/lmail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/lmail.c -------------------------------------------------------------------------------- /daemons/rc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/rc.sh -------------------------------------------------------------------------------- /daemons/runsystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/runsystem.sh -------------------------------------------------------------------------------- /daemons/runttys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/daemons/runttys.c -------------------------------------------------------------------------------- /defpager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/defpager/Makefile -------------------------------------------------------------------------------- /defpager/backing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/defpager/backing.c -------------------------------------------------------------------------------- /defpager/defpager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/defpager/defpager.c -------------------------------------------------------------------------------- /defpager/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/defpager/wiring.c -------------------------------------------------------------------------------- /devnode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/devnode/Makefile -------------------------------------------------------------------------------- /devnode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/devnode/README -------------------------------------------------------------------------------- /devnode/devnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/devnode/devnode.c -------------------------------------------------------------------------------- /devnode/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/devnode/mig-mutate.h -------------------------------------------------------------------------------- /devnode/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/devnode/util.h -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/gpl.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/doc/gpl.texinfo -------------------------------------------------------------------------------- /doc/hurd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/doc/hurd.texi -------------------------------------------------------------------------------- /doc/navigating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/doc/navigating -------------------------------------------------------------------------------- /eth-multiplexer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/eth-multiplexer/Makefile -------------------------------------------------------------------------------- /eth-multiplexer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/eth-multiplexer/README -------------------------------------------------------------------------------- /eth-multiplexer/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/eth-multiplexer/test.c -------------------------------------------------------------------------------- /eth-multiplexer/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/eth-multiplexer/util.h -------------------------------------------------------------------------------- /eth-multiplexer/vdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/eth-multiplexer/vdev.c -------------------------------------------------------------------------------- /eth-multiplexer/vdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/eth-multiplexer/vdev.h -------------------------------------------------------------------------------- /exec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/Makefile -------------------------------------------------------------------------------- /exec/elfcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/elfcore.c -------------------------------------------------------------------------------- /exec/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/exec.c -------------------------------------------------------------------------------- /exec/execmutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/execmutations.h -------------------------------------------------------------------------------- /exec/hashexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/hashexec.c -------------------------------------------------------------------------------- /exec/hostarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/hostarch.c -------------------------------------------------------------------------------- /exec/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/main.c -------------------------------------------------------------------------------- /exec/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/mig-decls.h -------------------------------------------------------------------------------- /exec/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/exec/priv.h -------------------------------------------------------------------------------- /ext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/Makefile -------------------------------------------------------------------------------- /ext2fs/balloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/balloc.c -------------------------------------------------------------------------------- /ext2fs/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/bitmap.c -------------------------------------------------------------------------------- /ext2fs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/dir.c -------------------------------------------------------------------------------- /ext2fs/ext2_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/ext2_fs.h -------------------------------------------------------------------------------- /ext2fs/ext2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/ext2fs.c -------------------------------------------------------------------------------- /ext2fs/ext2fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/ext2fs.h -------------------------------------------------------------------------------- /ext2fs/getblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/getblk.c -------------------------------------------------------------------------------- /ext2fs/hyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/hyper.c -------------------------------------------------------------------------------- /ext2fs/ialloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/ialloc.c -------------------------------------------------------------------------------- /ext2fs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/inode.c -------------------------------------------------------------------------------- /ext2fs/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/msg.c -------------------------------------------------------------------------------- /ext2fs/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/pager.c -------------------------------------------------------------------------------- /ext2fs/pokel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/pokel.c -------------------------------------------------------------------------------- /ext2fs/storeinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/storeinfo.c -------------------------------------------------------------------------------- /ext2fs/truncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/truncate.c -------------------------------------------------------------------------------- /ext2fs/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/xattr.c -------------------------------------------------------------------------------- /ext2fs/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ext2fs/xattr.h -------------------------------------------------------------------------------- /ext2fs/xinl.c: -------------------------------------------------------------------------------- 1 | #define EXT2FS_DEFINE_EI 2 | #include "ext2fs.h" 3 | -------------------------------------------------------------------------------- /fatfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/Makefile -------------------------------------------------------------------------------- /fatfs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/dir.c -------------------------------------------------------------------------------- /fatfs/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/fat.c -------------------------------------------------------------------------------- /fatfs/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/fat.h -------------------------------------------------------------------------------- /fatfs/fatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/fatfs.h -------------------------------------------------------------------------------- /fatfs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/inode.c -------------------------------------------------------------------------------- /fatfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/main.c -------------------------------------------------------------------------------- /fatfs/node-create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/node-create.c -------------------------------------------------------------------------------- /fatfs/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/pager.c -------------------------------------------------------------------------------- /fatfs/virt-inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/virt-inode.c -------------------------------------------------------------------------------- /fatfs/virt-inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fatfs/virt-inode.h -------------------------------------------------------------------------------- /fstests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fstests/Makefile -------------------------------------------------------------------------------- /fstests/fdtests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fstests/fdtests.c -------------------------------------------------------------------------------- /fstests/fstests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fstests/fstests.c -------------------------------------------------------------------------------- /fstests/opendisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fstests/opendisk.c -------------------------------------------------------------------------------- /fstests/timertest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/fstests/timertest.c -------------------------------------------------------------------------------- /ftpfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/Makefile -------------------------------------------------------------------------------- /ftpfs/ccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/ccache.c -------------------------------------------------------------------------------- /ftpfs/ccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/ccache.h -------------------------------------------------------------------------------- /ftpfs/conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/conn.c -------------------------------------------------------------------------------- /ftpfs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/dir.c -------------------------------------------------------------------------------- /ftpfs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/fs.c -------------------------------------------------------------------------------- /ftpfs/ftpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/ftpfs.c -------------------------------------------------------------------------------- /ftpfs/ftpfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/ftpfs.h -------------------------------------------------------------------------------- /ftpfs/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/host.c -------------------------------------------------------------------------------- /ftpfs/ncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/ncache.c -------------------------------------------------------------------------------- /ftpfs/netfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/netfs.c -------------------------------------------------------------------------------- /ftpfs/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/ftpfs/node.c -------------------------------------------------------------------------------- /gitlog-to-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/gitlog-to-changelog -------------------------------------------------------------------------------- /hostmux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/Makefile -------------------------------------------------------------------------------- /hostmux/hostmux-xinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/hostmux-xinl.c -------------------------------------------------------------------------------- /hostmux/hostmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/hostmux.c -------------------------------------------------------------------------------- /hostmux/hostmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/hostmux.h -------------------------------------------------------------------------------- /hostmux/leaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/leaf.c -------------------------------------------------------------------------------- /hostmux/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/mux.c -------------------------------------------------------------------------------- /hostmux/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/node.c -------------------------------------------------------------------------------- /hostmux/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hostmux/stubs.c -------------------------------------------------------------------------------- /hurd.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd.boot -------------------------------------------------------------------------------- /hurd/=pending-changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/=pending-changes -------------------------------------------------------------------------------- /hurd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/Makefile -------------------------------------------------------------------------------- /hurd/acpi.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/acpi.defs -------------------------------------------------------------------------------- /hurd/auth.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/auth.defs -------------------------------------------------------------------------------- /hurd/auth_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/auth_reply.defs -------------------------------------------------------------------------------- /hurd/auth_request.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/auth_request.defs -------------------------------------------------------------------------------- /hurd/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/console.h -------------------------------------------------------------------------------- /hurd/crash.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/crash.defs -------------------------------------------------------------------------------- /hurd/crash_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/crash_reply.defs -------------------------------------------------------------------------------- /hurd/default_pager.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/default_pager.defs -------------------------------------------------------------------------------- /hurd/exec.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/exec.defs -------------------------------------------------------------------------------- /hurd/exec_startup.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/exec_startup.defs -------------------------------------------------------------------------------- /hurd/fs.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/fs.defs -------------------------------------------------------------------------------- /hurd/fs_notify.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/fs_notify.defs -------------------------------------------------------------------------------- /hurd/fsys.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/fsys.defs -------------------------------------------------------------------------------- /hurd/fsys_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/fsys_reply.defs -------------------------------------------------------------------------------- /hurd/gensym.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/gensym.awk -------------------------------------------------------------------------------- /hurd/hurd_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/hurd_types.defs -------------------------------------------------------------------------------- /hurd/hurd_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/hurd_types.h -------------------------------------------------------------------------------- /hurd/ifsock.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ifsock.defs -------------------------------------------------------------------------------- /hurd/iioctl.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/iioctl.defs -------------------------------------------------------------------------------- /hurd/interrupt.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/interrupt.defs -------------------------------------------------------------------------------- /hurd/io.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/io.defs -------------------------------------------------------------------------------- /hurd/io_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/io_reply.defs -------------------------------------------------------------------------------- /hurd/io_request.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/io_request.defs -------------------------------------------------------------------------------- /hurd/ioctl-decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ioctl-decode.h -------------------------------------------------------------------------------- /hurd/ioctl-tmpl.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ioctl-tmpl.sym -------------------------------------------------------------------------------- /hurd/ioctl.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ioctl.awk -------------------------------------------------------------------------------- /hurd/ioctl_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ioctl_types.defs -------------------------------------------------------------------------------- /hurd/ioctl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ioctl_types.h -------------------------------------------------------------------------------- /hurd/ioctls.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/ioctls.defs -------------------------------------------------------------------------------- /hurd/kdioctl.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/kdioctl.defs -------------------------------------------------------------------------------- /hurd/kernel_boot.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/kernel_boot.defs -------------------------------------------------------------------------------- /hurd/login.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/login.defs -------------------------------------------------------------------------------- /hurd/msg.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/msg.defs -------------------------------------------------------------------------------- /hurd/msg_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/msg_reply.defs -------------------------------------------------------------------------------- /hurd/msg_request.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/msg_request.defs -------------------------------------------------------------------------------- /hurd/newterm.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/newterm.defs -------------------------------------------------------------------------------- /hurd/password.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/password.defs -------------------------------------------------------------------------------- /hurd/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/paths.h -------------------------------------------------------------------------------- /hurd/pci.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/pci.defs -------------------------------------------------------------------------------- /hurd/pfinet.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/pfinet.defs -------------------------------------------------------------------------------- /hurd/pioctl.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/pioctl.defs -------------------------------------------------------------------------------- /hurd/process.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/process.defs -------------------------------------------------------------------------------- /hurd/process_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/process_reply.defs -------------------------------------------------------------------------------- /hurd/rioctl.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/rioctl.defs -------------------------------------------------------------------------------- /hurd/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/rtc.h -------------------------------------------------------------------------------- /hurd/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/shared.h -------------------------------------------------------------------------------- /hurd/shutdown.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/shutdown.defs -------------------------------------------------------------------------------- /hurd/socket.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/socket.defs -------------------------------------------------------------------------------- /hurd/startup.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/startup.defs -------------------------------------------------------------------------------- /hurd/startup_notify.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/startup_notify.defs -------------------------------------------------------------------------------- /hurd/startup_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/startup_reply.defs -------------------------------------------------------------------------------- /hurd/subsystems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/subsystems -------------------------------------------------------------------------------- /hurd/term.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/term.defs -------------------------------------------------------------------------------- /hurd/tioctl.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/tioctl.defs -------------------------------------------------------------------------------- /hurd/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/hurd/version.h -------------------------------------------------------------------------------- /include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/include/Makefile -------------------------------------------------------------------------------- /include/pids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/include/pids.h -------------------------------------------------------------------------------- /include/sys/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/include/sys/procfs.h -------------------------------------------------------------------------------- /init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/init/Makefile -------------------------------------------------------------------------------- /init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/init/init.c -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/install-sh -------------------------------------------------------------------------------- /isofs/EXTENSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/EXTENSIONS -------------------------------------------------------------------------------- /isofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/Makefile -------------------------------------------------------------------------------- /isofs/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/ext.c -------------------------------------------------------------------------------- /isofs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/inode.c -------------------------------------------------------------------------------- /isofs/iso9660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/iso9660.h -------------------------------------------------------------------------------- /isofs/isofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/isofs.h -------------------------------------------------------------------------------- /isofs/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/lookup.c -------------------------------------------------------------------------------- /isofs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/main.c -------------------------------------------------------------------------------- /isofs/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/pager.c -------------------------------------------------------------------------------- /isofs/rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/rr.c -------------------------------------------------------------------------------- /isofs/rr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/isofs/rr.h -------------------------------------------------------------------------------- /libbpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libbpf/Makefile -------------------------------------------------------------------------------- /libbpf/bpf_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libbpf/bpf_impl.c -------------------------------------------------------------------------------- /libbpf/bpf_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libbpf/bpf_impl.h -------------------------------------------------------------------------------- /libbpf/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libbpf/queue.c -------------------------------------------------------------------------------- /libbpf/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libbpf/queue.h -------------------------------------------------------------------------------- /libbpf/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libbpf/util.h -------------------------------------------------------------------------------- /libcons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/Makefile -------------------------------------------------------------------------------- /libcons/cons-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/cons-lookup.c -------------------------------------------------------------------------------- /libcons/cons-switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/cons-switch.c -------------------------------------------------------------------------------- /libcons/cons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/cons.h -------------------------------------------------------------------------------- /libcons/demuxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/demuxer.c -------------------------------------------------------------------------------- /libcons/dir-changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/dir-changed.c -------------------------------------------------------------------------------- /libcons/file-changed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/file-changed.c -------------------------------------------------------------------------------- /libcons/init-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/init-init.c -------------------------------------------------------------------------------- /libcons/init-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/init-loop.c -------------------------------------------------------------------------------- /libcons/mutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/mutations.h -------------------------------------------------------------------------------- /libcons/opts-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/opts-version.c -------------------------------------------------------------------------------- /libcons/priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/priv.c -------------------------------------------------------------------------------- /libcons/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/priv.h -------------------------------------------------------------------------------- /libcons/vcons-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-add.c -------------------------------------------------------------------------------- /libcons/vcons-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-close.c -------------------------------------------------------------------------------- /libcons/vcons-destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-destroy.c -------------------------------------------------------------------------------- /libcons/vcons-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-event.c -------------------------------------------------------------------------------- /libcons/vcons-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-input.c -------------------------------------------------------------------------------- /libcons/vcons-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-open.c -------------------------------------------------------------------------------- /libcons/vcons-refresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-refresh.c -------------------------------------------------------------------------------- /libcons/vcons-remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libcons/vcons-remove.c -------------------------------------------------------------------------------- /libdiskfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/Makefile -------------------------------------------------------------------------------- /libdiskfs/boot-start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/boot-start.c -------------------------------------------------------------------------------- /libdiskfs/conch-fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/conch-fetch.c -------------------------------------------------------------------------------- /libdiskfs/conch-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/conch-set.c -------------------------------------------------------------------------------- /libdiskfs/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/console.c -------------------------------------------------------------------------------- /libdiskfs/dead-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dead-name.c -------------------------------------------------------------------------------- /libdiskfs/demuxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/demuxer.c -------------------------------------------------------------------------------- /libdiskfs/dir-chg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-chg.c -------------------------------------------------------------------------------- /libdiskfs/dir-clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-clear.c -------------------------------------------------------------------------------- /libdiskfs/dir-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-init.c -------------------------------------------------------------------------------- /libdiskfs/dir-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-link.c -------------------------------------------------------------------------------- /libdiskfs/dir-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-lookup.c -------------------------------------------------------------------------------- /libdiskfs/dir-mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-mkdir.c -------------------------------------------------------------------------------- /libdiskfs/dir-mkfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-mkfile.c -------------------------------------------------------------------------------- /libdiskfs/dir-readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-readdir.c -------------------------------------------------------------------------------- /libdiskfs/dir-rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-rename.c -------------------------------------------------------------------------------- /libdiskfs/dir-renamed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-renamed.c -------------------------------------------------------------------------------- /libdiskfs/dir-rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-rmdir.c -------------------------------------------------------------------------------- /libdiskfs/dir-unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dir-unlink.c -------------------------------------------------------------------------------- /libdiskfs/direnter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/direnter.c -------------------------------------------------------------------------------- /libdiskfs/dirremove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dirremove.c -------------------------------------------------------------------------------- /libdiskfs/dirrewrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/dirrewrite.c -------------------------------------------------------------------------------- /libdiskfs/disk-pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/disk-pager.c -------------------------------------------------------------------------------- /libdiskfs/diskfs-pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/diskfs-pager.h -------------------------------------------------------------------------------- /libdiskfs/diskfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/diskfs.h -------------------------------------------------------------------------------- /libdiskfs/fhandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fhandle.h -------------------------------------------------------------------------------- /libdiskfs/file-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-access.c -------------------------------------------------------------------------------- /libdiskfs/file-chflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-chflags.c -------------------------------------------------------------------------------- /libdiskfs/file-chg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-chg.c -------------------------------------------------------------------------------- /libdiskfs/file-chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-chmod.c -------------------------------------------------------------------------------- /libdiskfs/file-chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-chown.c -------------------------------------------------------------------------------- /libdiskfs/file-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-exec.c -------------------------------------------------------------------------------- /libdiskfs/file-getfh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-getfh.c -------------------------------------------------------------------------------- /libdiskfs/file-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-lock.c -------------------------------------------------------------------------------- /libdiskfs/file-statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-statfs.c -------------------------------------------------------------------------------- /libdiskfs/file-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-sync.c -------------------------------------------------------------------------------- /libdiskfs/file-syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-syncfs.c -------------------------------------------------------------------------------- /libdiskfs/file-utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/file-utimes.c -------------------------------------------------------------------------------- /libdiskfs/fsmutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsmutations.h -------------------------------------------------------------------------------- /libdiskfs/fsys-forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-forward.c -------------------------------------------------------------------------------- /libdiskfs/fsys-getfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-getfile.c -------------------------------------------------------------------------------- /libdiskfs/fsys-getroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-getroot.c -------------------------------------------------------------------------------- /libdiskfs/fsys-goaway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-goaway.c -------------------------------------------------------------------------------- /libdiskfs/fsys-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-options.c -------------------------------------------------------------------------------- /libdiskfs/fsys-startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-startup.c -------------------------------------------------------------------------------- /libdiskfs/fsys-syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/fsys-syncfs.c -------------------------------------------------------------------------------- /libdiskfs/get-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/get-source.c -------------------------------------------------------------------------------- /libdiskfs/ifsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/ifsock.c -------------------------------------------------------------------------------- /libdiskfs/init-first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/init-first.c -------------------------------------------------------------------------------- /libdiskfs/init-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/init-init.c -------------------------------------------------------------------------------- /libdiskfs/init-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/init-main.c -------------------------------------------------------------------------------- /libdiskfs/init-startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/init-startup.c -------------------------------------------------------------------------------- /libdiskfs/io-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-async.c -------------------------------------------------------------------------------- /libdiskfs/io-duplicate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-duplicate.c -------------------------------------------------------------------------------- /libdiskfs/io-get-conch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-get-conch.c -------------------------------------------------------------------------------- /libdiskfs/io-identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-identity.c -------------------------------------------------------------------------------- /libdiskfs/io-map-cntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-map-cntl.c -------------------------------------------------------------------------------- /libdiskfs/io-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-map.c -------------------------------------------------------------------------------- /libdiskfs/io-modes-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-modes-get.c -------------------------------------------------------------------------------- /libdiskfs/io-modes-off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-modes-off.c -------------------------------------------------------------------------------- /libdiskfs/io-modes-on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-modes-on.c -------------------------------------------------------------------------------- /libdiskfs/io-modes-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-modes-set.c -------------------------------------------------------------------------------- /libdiskfs/io-owner-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-owner-get.c -------------------------------------------------------------------------------- /libdiskfs/io-owner-mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-owner-mod.c -------------------------------------------------------------------------------- /libdiskfs/io-pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-pathconf.c -------------------------------------------------------------------------------- /libdiskfs/io-prenotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-prenotify.c -------------------------------------------------------------------------------- /libdiskfs/io-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-read.c -------------------------------------------------------------------------------- /libdiskfs/io-readable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-readable.c -------------------------------------------------------------------------------- /libdiskfs/io-rel-conch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-rel-conch.c -------------------------------------------------------------------------------- /libdiskfs/io-revoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-revoke.c -------------------------------------------------------------------------------- /libdiskfs/io-seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-seek.c -------------------------------------------------------------------------------- /libdiskfs/io-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-select.c -------------------------------------------------------------------------------- /libdiskfs/io-sigio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-sigio.c -------------------------------------------------------------------------------- /libdiskfs/io-stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-stat.c -------------------------------------------------------------------------------- /libdiskfs/io-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-stubs.c -------------------------------------------------------------------------------- /libdiskfs/io-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-version.c -------------------------------------------------------------------------------- /libdiskfs/io-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/io-write.c -------------------------------------------------------------------------------- /libdiskfs/lithp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/lithp.h -------------------------------------------------------------------------------- /libdiskfs/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/lookup.c -------------------------------------------------------------------------------- /libdiskfs/name-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/name-cache.c -------------------------------------------------------------------------------- /libdiskfs/node-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-cache.c -------------------------------------------------------------------------------- /libdiskfs/node-create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-create.c -------------------------------------------------------------------------------- /libdiskfs/node-drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-drop.c -------------------------------------------------------------------------------- /libdiskfs/node-lastref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-lastref.c -------------------------------------------------------------------------------- /libdiskfs/node-make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-make.c -------------------------------------------------------------------------------- /libdiskfs/node-nput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-nput.c -------------------------------------------------------------------------------- /libdiskfs/node-nputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-nputl.c -------------------------------------------------------------------------------- /libdiskfs/node-nref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-nref.c -------------------------------------------------------------------------------- /libdiskfs/node-nrefl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-nrefl.c -------------------------------------------------------------------------------- /libdiskfs/node-nrele.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-nrele.c -------------------------------------------------------------------------------- /libdiskfs/node-nrelel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-nrelel.c -------------------------------------------------------------------------------- /libdiskfs/node-rdwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-rdwr.c -------------------------------------------------------------------------------- /libdiskfs/node-times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-times.c -------------------------------------------------------------------------------- /libdiskfs/node-update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/node-update.c -------------------------------------------------------------------------------- /libdiskfs/opts-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/opts-common.c -------------------------------------------------------------------------------- /libdiskfs/opts-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/opts-get.c -------------------------------------------------------------------------------- /libdiskfs/opts-runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/opts-runtime.c -------------------------------------------------------------------------------- /libdiskfs/opts-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/opts-set.c -------------------------------------------------------------------------------- /libdiskfs/opts-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/opts-version.c -------------------------------------------------------------------------------- /libdiskfs/peropen-make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/peropen-make.c -------------------------------------------------------------------------------- /libdiskfs/peropen-rele.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/peropen-rele.c -------------------------------------------------------------------------------- /libdiskfs/priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/priv.c -------------------------------------------------------------------------------- /libdiskfs/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/priv.h -------------------------------------------------------------------------------- /libdiskfs/protid-make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/protid-make.c -------------------------------------------------------------------------------- /libdiskfs/protid-rele.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/protid-rele.c -------------------------------------------------------------------------------- /libdiskfs/readonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/readonly.c -------------------------------------------------------------------------------- /libdiskfs/remount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/remount.c -------------------------------------------------------------------------------- /libdiskfs/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/shutdown.c -------------------------------------------------------------------------------- /libdiskfs/sync-default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libdiskfs/sync-default.c -------------------------------------------------------------------------------- /libfshelp-tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp-tests/Makefile -------------------------------------------------------------------------------- /libfshelp-tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp-tests/README -------------------------------------------------------------------------------- /libfshelp-tests/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp-tests/fork.c -------------------------------------------------------------------------------- /libfshelp-tests/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp-tests/locks.c -------------------------------------------------------------------------------- /libfshelp-tests/race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp-tests/race.c -------------------------------------------------------------------------------- /libfshelp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/Makefile -------------------------------------------------------------------------------- /libfshelp/delegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/delegate.c -------------------------------------------------------------------------------- /libfshelp/exec-reauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/exec-reauth.c -------------------------------------------------------------------------------- /libfshelp/fetch-root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/fetch-root.c -------------------------------------------------------------------------------- /libfshelp/fshelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/fshelp.h -------------------------------------------------------------------------------- /libfshelp/get-identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/get-identity.c -------------------------------------------------------------------------------- /libfshelp/lock-acquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/lock-acquire.c -------------------------------------------------------------------------------- /libfshelp/lock-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/lock-init.c -------------------------------------------------------------------------------- /libfshelp/perms-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/perms-access.c -------------------------------------------------------------------------------- /libfshelp/rlock-status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/rlock-status.c -------------------------------------------------------------------------------- /libfshelp/rlock-tweak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/rlock-tweak.c -------------------------------------------------------------------------------- /libfshelp/rlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/rlock.h -------------------------------------------------------------------------------- /libfshelp/set-active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/set-active.c -------------------------------------------------------------------------------- /libfshelp/set-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/set-options.c -------------------------------------------------------------------------------- /libfshelp/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/touch.c -------------------------------------------------------------------------------- /libfshelp/translated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libfshelp/translated.c -------------------------------------------------------------------------------- /libftpconn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/Makefile -------------------------------------------------------------------------------- /libftpconn/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/addr.c -------------------------------------------------------------------------------- /libftpconn/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/cmd.c -------------------------------------------------------------------------------- /libftpconn/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/create.c -------------------------------------------------------------------------------- /libftpconn/cwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/cwd.c -------------------------------------------------------------------------------- /libftpconn/errs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/errs.c -------------------------------------------------------------------------------- /libftpconn/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/fname.c -------------------------------------------------------------------------------- /libftpconn/ftpconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/ftpconn.h -------------------------------------------------------------------------------- /libftpconn/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/names.c -------------------------------------------------------------------------------- /libftpconn/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/open.c -------------------------------------------------------------------------------- /libftpconn/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/priv.h -------------------------------------------------------------------------------- /libftpconn/reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/reply.c -------------------------------------------------------------------------------- /libftpconn/rmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/rmt.c -------------------------------------------------------------------------------- /libftpconn/set-type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/set-type.c -------------------------------------------------------------------------------- /libftpconn/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/stats.c -------------------------------------------------------------------------------- /libftpconn/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/unix.c -------------------------------------------------------------------------------- /libftpconn/xfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/xfer.c -------------------------------------------------------------------------------- /libftpconn/xinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libftpconn/xinl.c -------------------------------------------------------------------------------- /libhurd-slab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libhurd-slab/Makefile -------------------------------------------------------------------------------- /libhurd-slab/slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libhurd-slab/slab.c -------------------------------------------------------------------------------- /libhurd-slab/slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libhurd-slab/slab.h -------------------------------------------------------------------------------- /libhurdbugaddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libhurdbugaddr/Makefile -------------------------------------------------------------------------------- /libihash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libihash/Makefile -------------------------------------------------------------------------------- /libihash/ihash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libihash/ihash.c -------------------------------------------------------------------------------- /libihash/ihash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libihash/ihash.h -------------------------------------------------------------------------------- /libihash/murmur3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libihash/murmur3.c -------------------------------------------------------------------------------- /libiohelp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libiohelp/Makefile -------------------------------------------------------------------------------- /libiohelp/get_conch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libiohelp/get_conch.c -------------------------------------------------------------------------------- /libiohelp/iohelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libiohelp/iohelp.h -------------------------------------------------------------------------------- /libiohelp/iouser-dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libiohelp/iouser-dup.c -------------------------------------------------------------------------------- /libiohelp/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libiohelp/shared.c -------------------------------------------------------------------------------- /libirqhelp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libirqhelp/Makefile -------------------------------------------------------------------------------- /libirqhelp/irqhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libirqhelp/irqhelp.c -------------------------------------------------------------------------------- /libirqhelp/irqhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libirqhelp/irqhelp.h -------------------------------------------------------------------------------- /libmachdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libmachdev/Makefile -------------------------------------------------------------------------------- /libmachdev/machdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libmachdev/machdev.h -------------------------------------------------------------------------------- /libmachdev/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libmachdev/mig-decls.h -------------------------------------------------------------------------------- /libnetfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/Makefile -------------------------------------------------------------------------------- /libnetfs/append-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/append-args.c -------------------------------------------------------------------------------- /libnetfs/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/callbacks.h -------------------------------------------------------------------------------- /libnetfs/dead-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dead-name.c -------------------------------------------------------------------------------- /libnetfs/demuxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/demuxer.c -------------------------------------------------------------------------------- /libnetfs/dir-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-link.c -------------------------------------------------------------------------------- /libnetfs/dir-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-lookup.c -------------------------------------------------------------------------------- /libnetfs/dir-mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-mkdir.c -------------------------------------------------------------------------------- /libnetfs/dir-mkfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-mkfile.c -------------------------------------------------------------------------------- /libnetfs/dir-readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-readdir.c -------------------------------------------------------------------------------- /libnetfs/dir-rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-rename.c -------------------------------------------------------------------------------- /libnetfs/dir-rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-rmdir.c -------------------------------------------------------------------------------- /libnetfs/dir-unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/dir-unlink.c -------------------------------------------------------------------------------- /libnetfs/drop-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/drop-node.c -------------------------------------------------------------------------------- /libnetfs/execserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/execserver.h -------------------------------------------------------------------------------- /libnetfs/file-chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-chmod.c -------------------------------------------------------------------------------- /libnetfs/file-chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-chown.c -------------------------------------------------------------------------------- /libnetfs/file-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-exec.c -------------------------------------------------------------------------------- /libnetfs/file-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-lock.c -------------------------------------------------------------------------------- /libnetfs/file-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-map.c -------------------------------------------------------------------------------- /libnetfs/file-statfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-statfs.c -------------------------------------------------------------------------------- /libnetfs/file-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-sync.c -------------------------------------------------------------------------------- /libnetfs/file-syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-syncfs.c -------------------------------------------------------------------------------- /libnetfs/file-utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/file-utimes.c -------------------------------------------------------------------------------- /libnetfs/fsstubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/fsstubs.c -------------------------------------------------------------------------------- /libnetfs/fsys-goaway.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/fsys-goaway.c -------------------------------------------------------------------------------- /libnetfs/fsys-syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/fsys-syncfs.c -------------------------------------------------------------------------------- /libnetfs/fsysstubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/fsysstubs.c -------------------------------------------------------------------------------- /libnetfs/get-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/get-source.c -------------------------------------------------------------------------------- /libnetfs/init-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/init-init.c -------------------------------------------------------------------------------- /libnetfs/init-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/init-loop.c -------------------------------------------------------------------------------- /libnetfs/io-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-async.c -------------------------------------------------------------------------------- /libnetfs/io-identity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-identity.c -------------------------------------------------------------------------------- /libnetfs/io-pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-pathconf.c -------------------------------------------------------------------------------- /libnetfs/io-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-read.c -------------------------------------------------------------------------------- /libnetfs/io-readable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-readable.c -------------------------------------------------------------------------------- /libnetfs/io-revoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-revoke.c -------------------------------------------------------------------------------- /libnetfs/io-seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-seek.c -------------------------------------------------------------------------------- /libnetfs/io-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-select.c -------------------------------------------------------------------------------- /libnetfs/io-stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-stat.c -------------------------------------------------------------------------------- /libnetfs/io-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-version.c -------------------------------------------------------------------------------- /libnetfs/io-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/io-write.c -------------------------------------------------------------------------------- /libnetfs/iostubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/iostubs.c -------------------------------------------------------------------------------- /libnetfs/make-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/make-node.c -------------------------------------------------------------------------------- /libnetfs/make-protid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/make-protid.c -------------------------------------------------------------------------------- /libnetfs/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/misc.h -------------------------------------------------------------------------------- /libnetfs/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/modes.h -------------------------------------------------------------------------------- /libnetfs/mutations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/mutations.h -------------------------------------------------------------------------------- /libnetfs/netfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/netfs.h -------------------------------------------------------------------------------- /libnetfs/nput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/nput.c -------------------------------------------------------------------------------- /libnetfs/nref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/nref.c -------------------------------------------------------------------------------- /libnetfs/nrele.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/nrele.c -------------------------------------------------------------------------------- /libnetfs/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/priv.h -------------------------------------------------------------------------------- /libnetfs/set-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/set-options.c -------------------------------------------------------------------------------- /libnetfs/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libnetfs/shutdown.c -------------------------------------------------------------------------------- /libpager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/Makefile -------------------------------------------------------------------------------- /libpager/chg-compl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/chg-compl.c -------------------------------------------------------------------------------- /libpager/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/clean.c -------------------------------------------------------------------------------- /libpager/data-return.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/data-return.c -------------------------------------------------------------------------------- /libpager/data-unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/data-unlock.c -------------------------------------------------------------------------------- /libpager/demuxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/demuxer.c -------------------------------------------------------------------------------- /libpager/dropweak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/dropweak.c -------------------------------------------------------------------------------- /libpager/get-upi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/get-upi.c -------------------------------------------------------------------------------- /libpager/lock-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/lock-object.c -------------------------------------------------------------------------------- /libpager/mark-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/mark-error.c -------------------------------------------------------------------------------- /libpager/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/mig-decls.h -------------------------------------------------------------------------------- /libpager/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/mig-mutate.h -------------------------------------------------------------------------------- /libpager/object-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/object-init.c -------------------------------------------------------------------------------- /libpager/offer-page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/offer-page.c -------------------------------------------------------------------------------- /libpager/pagemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/pagemap.c -------------------------------------------------------------------------------- /libpager/pager-attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/pager-attr.c -------------------------------------------------------------------------------- /libpager/pager-flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/pager-flush.c -------------------------------------------------------------------------------- /libpager/pager-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/pager-port.c -------------------------------------------------------------------------------- /libpager/pager-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/pager-sync.c -------------------------------------------------------------------------------- /libpager/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/pager.h -------------------------------------------------------------------------------- /libpager/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/priv.h -------------------------------------------------------------------------------- /libpager/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/queue.h -------------------------------------------------------------------------------- /libpager/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpager/stubs.c -------------------------------------------------------------------------------- /libpipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/Makefile -------------------------------------------------------------------------------- /libpipe/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/addr.c -------------------------------------------------------------------------------- /libpipe/dgram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/dgram.c -------------------------------------------------------------------------------- /libpipe/pipe-funcs.c: -------------------------------------------------------------------------------- 1 | #define PIPE_DEFINE_EI 2 | #include "pipe.h" 3 | -------------------------------------------------------------------------------- /libpipe/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/pipe.c -------------------------------------------------------------------------------- /libpipe/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/pipe.h -------------------------------------------------------------------------------- /libpipe/pq-funcs.c: -------------------------------------------------------------------------------- 1 | #define PQ_DEFINE_EI 2 | #include "pq.h" 3 | -------------------------------------------------------------------------------- /libpipe/pq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/pq.c -------------------------------------------------------------------------------- /libpipe/pq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/pq.h -------------------------------------------------------------------------------- /libpipe/seqpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/seqpack.c -------------------------------------------------------------------------------- /libpipe/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libpipe/stream.c -------------------------------------------------------------------------------- /libports/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/Makefile -------------------------------------------------------------------------------- /libports/begin-rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/begin-rpc.c -------------------------------------------------------------------------------- /libports/claim-right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/claim-right.c -------------------------------------------------------------------------------- /libports/count-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/count-class.c -------------------------------------------------------------------------------- /libports/create-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/create-port.c -------------------------------------------------------------------------------- /libports/dead-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/dead-name.c -------------------------------------------------------------------------------- /libports/end-rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/end-rpc.c -------------------------------------------------------------------------------- /libports/get-right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/get-right.c -------------------------------------------------------------------------------- /libports/import-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/import-port.c -------------------------------------------------------------------------------- /libports/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/init.c -------------------------------------------------------------------------------- /libports/interrupted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/interrupted.c -------------------------------------------------------------------------------- /libports/lookup-port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/lookup-port.c -------------------------------------------------------------------------------- /libports/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/mig-decls.h -------------------------------------------------------------------------------- /libports/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/mig-mutate.h -------------------------------------------------------------------------------- /libports/no-senders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/no-senders.c -------------------------------------------------------------------------------- /libports/port-deref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/port-deref.c -------------------------------------------------------------------------------- /libports/port-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/port-ref.c -------------------------------------------------------------------------------- /libports/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libports/ports.h -------------------------------------------------------------------------------- /libps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/Makefile -------------------------------------------------------------------------------- /libps/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/common.h -------------------------------------------------------------------------------- /libps/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/context.c -------------------------------------------------------------------------------- /libps/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/filters.c -------------------------------------------------------------------------------- /libps/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/fmt.c -------------------------------------------------------------------------------- /libps/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/host.c -------------------------------------------------------------------------------- /libps/proclist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/proclist.c -------------------------------------------------------------------------------- /libps/procstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/procstat.c -------------------------------------------------------------------------------- /libps/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/ps.h -------------------------------------------------------------------------------- /libps/pshost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/pshost.h -------------------------------------------------------------------------------- /libps/spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/spec.c -------------------------------------------------------------------------------- /libps/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/tty.c -------------------------------------------------------------------------------- /libps/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/user.c -------------------------------------------------------------------------------- /libps/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libps/write.c -------------------------------------------------------------------------------- /libshouldbeinlibc/idvec-funcs.c: -------------------------------------------------------------------------------- 1 | #define IDVEC_DEFINE_EI 2 | #include "idvec.h" 3 | -------------------------------------------------------------------------------- /libstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/Makefile -------------------------------------------------------------------------------- /libstore/argp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/argp.c -------------------------------------------------------------------------------- /libstore/bunzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/bunzip2.c -------------------------------------------------------------------------------- /libstore/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/clone.c -------------------------------------------------------------------------------- /libstore/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/copy.c -------------------------------------------------------------------------------- /libstore/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/create.c -------------------------------------------------------------------------------- /libstore/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/crypt.h -------------------------------------------------------------------------------- /libstore/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/decode.c -------------------------------------------------------------------------------- /libstore/derive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/derive.c -------------------------------------------------------------------------------- /libstore/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/device.c -------------------------------------------------------------------------------- /libstore/do-bunzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/do-bunzip2.c -------------------------------------------------------------------------------- /libstore/do-gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/do-gunzip.c -------------------------------------------------------------------------------- /libstore/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/enc.c -------------------------------------------------------------------------------- /libstore/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/encode.c -------------------------------------------------------------------------------- /libstore/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/file.c -------------------------------------------------------------------------------- /libstore/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/flags.c -------------------------------------------------------------------------------- /libstore/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/gunzip.c -------------------------------------------------------------------------------- /libstore/kids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/kids.c -------------------------------------------------------------------------------- /libstore/make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/make.c -------------------------------------------------------------------------------- /libstore/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/map.c -------------------------------------------------------------------------------- /libstore/memobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/memobj.c -------------------------------------------------------------------------------- /libstore/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/module.c -------------------------------------------------------------------------------- /libstore/mvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/mvol.c -------------------------------------------------------------------------------- /libstore/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/nbd.c -------------------------------------------------------------------------------- /libstore/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/open.c -------------------------------------------------------------------------------- /libstore/part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/part.c -------------------------------------------------------------------------------- /libstore/rdwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/rdwr.c -------------------------------------------------------------------------------- /libstore/remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/remap.c -------------------------------------------------------------------------------- /libstore/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/set.c -------------------------------------------------------------------------------- /libstore/std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/std.c -------------------------------------------------------------------------------- /libstore/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/store.h -------------------------------------------------------------------------------- /libstore/stripe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/stripe.c -------------------------------------------------------------------------------- /libstore/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/task.c -------------------------------------------------------------------------------- /libstore/typed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/typed.c -------------------------------------------------------------------------------- /libstore/unknown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/unknown.c -------------------------------------------------------------------------------- /libstore/unzipstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/unzipstore.c -------------------------------------------------------------------------------- /libstore/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/url.c -------------------------------------------------------------------------------- /libstore/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/util.c -------------------------------------------------------------------------------- /libstore/xinl.c: -------------------------------------------------------------------------------- 1 | #define STORE_DEFINE_EI 2 | #include "store.h" 3 | -------------------------------------------------------------------------------- /libstore/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libstore/zero.c -------------------------------------------------------------------------------- /libtrivfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/Makefile -------------------------------------------------------------------------------- /libtrivfs/cntl-clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/cntl-clean.c -------------------------------------------------------------------------------- /libtrivfs/demuxer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/demuxer.c -------------------------------------------------------------------------------- /libtrivfs/dir-chg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-chg.c -------------------------------------------------------------------------------- /libtrivfs/dir-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-link.c -------------------------------------------------------------------------------- /libtrivfs/dir-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-lookup.c -------------------------------------------------------------------------------- /libtrivfs/dir-mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-mkdir.c -------------------------------------------------------------------------------- /libtrivfs/dir-mkfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-mkfile.c -------------------------------------------------------------------------------- /libtrivfs/dir-rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-rename.c -------------------------------------------------------------------------------- /libtrivfs/dir-rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-rmdir.c -------------------------------------------------------------------------------- /libtrivfs/dir-unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/dir-unlink.c -------------------------------------------------------------------------------- /libtrivfs/file-chg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-chg.c -------------------------------------------------------------------------------- /libtrivfs/file-chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-chmod.c -------------------------------------------------------------------------------- /libtrivfs/file-chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-chown.c -------------------------------------------------------------------------------- /libtrivfs/file-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-exec.c -------------------------------------------------------------------------------- /libtrivfs/file-getfh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-getfh.c -------------------------------------------------------------------------------- /libtrivfs/file-lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-lock.c -------------------------------------------------------------------------------- /libtrivfs/file-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/file-sync.c -------------------------------------------------------------------------------- /libtrivfs/fsys-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/fsys-stubs.c -------------------------------------------------------------------------------- /libtrivfs/get-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/get-source.c -------------------------------------------------------------------------------- /libtrivfs/io-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-async.c -------------------------------------------------------------------------------- /libtrivfs/io-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-map.c -------------------------------------------------------------------------------- /libtrivfs/io-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-read.c -------------------------------------------------------------------------------- /libtrivfs/io-revoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-revoke.c -------------------------------------------------------------------------------- /libtrivfs/io-seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-seek.c -------------------------------------------------------------------------------- /libtrivfs/io-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-select.c -------------------------------------------------------------------------------- /libtrivfs/io-stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-stat.c -------------------------------------------------------------------------------- /libtrivfs/io-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-stubs.c -------------------------------------------------------------------------------- /libtrivfs/io-version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-version.c -------------------------------------------------------------------------------- /libtrivfs/io-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/io-write.c -------------------------------------------------------------------------------- /libtrivfs/make-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/make-node.c -------------------------------------------------------------------------------- /libtrivfs/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/mig-decls.h -------------------------------------------------------------------------------- /libtrivfs/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/mig-mutate.h -------------------------------------------------------------------------------- /libtrivfs/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/open.c -------------------------------------------------------------------------------- /libtrivfs/priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/priv.c -------------------------------------------------------------------------------- /libtrivfs/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/priv.h -------------------------------------------------------------------------------- /libtrivfs/protid-dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/protid-dup.c -------------------------------------------------------------------------------- /libtrivfs/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/startup.c -------------------------------------------------------------------------------- /libtrivfs/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/times.c -------------------------------------------------------------------------------- /libtrivfs/trivfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/libtrivfs/trivfs.h -------------------------------------------------------------------------------- /login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/login/Makefile -------------------------------------------------------------------------------- /login/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/login/utmp.c -------------------------------------------------------------------------------- /lwip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/Makefile -------------------------------------------------------------------------------- /lwip/iioctl-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/iioctl-ops.c -------------------------------------------------------------------------------- /lwip/io-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/io-ops.c -------------------------------------------------------------------------------- /lwip/lwip-hurd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/lwip-hurd.h -------------------------------------------------------------------------------- /lwip/lwip-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/lwip-util.c -------------------------------------------------------------------------------- /lwip/lwip-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/lwip-util.h -------------------------------------------------------------------------------- /lwip/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/main.c -------------------------------------------------------------------------------- /lwip/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/mig-decls.h -------------------------------------------------------------------------------- /lwip/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/mig-mutate.h -------------------------------------------------------------------------------- /lwip/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/options.c -------------------------------------------------------------------------------- /lwip/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/options.h -------------------------------------------------------------------------------- /lwip/pfinet-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/pfinet-ops.c -------------------------------------------------------------------------------- /lwip/port-objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/port-objs.c -------------------------------------------------------------------------------- /lwip/socket-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/socket-ops.c -------------------------------------------------------------------------------- /lwip/startup-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/startup-ops.c -------------------------------------------------------------------------------- /lwip/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/startup.c -------------------------------------------------------------------------------- /lwip/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/lwip/startup.h -------------------------------------------------------------------------------- /mach-defpager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/Makefile -------------------------------------------------------------------------------- /mach-defpager/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/main.c -------------------------------------------------------------------------------- /mach-defpager/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/priv.h -------------------------------------------------------------------------------- /mach-defpager/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/queue.h -------------------------------------------------------------------------------- /mach-defpager/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/setup.c -------------------------------------------------------------------------------- /mach-defpager/wiring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/wiring.c -------------------------------------------------------------------------------- /mach-defpager/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mach-defpager/wiring.h -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /mount/mount.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mount/mount.defs -------------------------------------------------------------------------------- /mount/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mount/mount.h -------------------------------------------------------------------------------- /mount/mount_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/mount/mount_types.h -------------------------------------------------------------------------------- /move-if-change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/move-if-change -------------------------------------------------------------------------------- /nfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/Makefile -------------------------------------------------------------------------------- /nfs/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/cache.c -------------------------------------------------------------------------------- /nfs/consts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/consts.c -------------------------------------------------------------------------------- /nfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/main.c -------------------------------------------------------------------------------- /nfs/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/mount.c -------------------------------------------------------------------------------- /nfs/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/mount.h -------------------------------------------------------------------------------- /nfs/name-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/name-cache.c -------------------------------------------------------------------------------- /nfs/nfs-spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/nfs-spec.h -------------------------------------------------------------------------------- /nfs/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/nfs.c -------------------------------------------------------------------------------- /nfs/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/nfs.h -------------------------------------------------------------------------------- /nfs/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/ops.c -------------------------------------------------------------------------------- /nfs/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/rpc.c -------------------------------------------------------------------------------- /nfs/storage-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfs/storage-info.c -------------------------------------------------------------------------------- /nfsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/Makefile -------------------------------------------------------------------------------- /nfsd/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/cache.c -------------------------------------------------------------------------------- /nfsd/fsys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/fsys.c -------------------------------------------------------------------------------- /nfsd/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/loop.c -------------------------------------------------------------------------------- /nfsd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/main.c -------------------------------------------------------------------------------- /nfsd/nfsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/nfsd.h -------------------------------------------------------------------------------- /nfsd/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/ops.c -------------------------------------------------------------------------------- /nfsd/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/nfsd/xdr.c -------------------------------------------------------------------------------- /pci-arbiter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/Makefile -------------------------------------------------------------------------------- /pci-arbiter/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/TODO -------------------------------------------------------------------------------- /pci-arbiter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/main.c -------------------------------------------------------------------------------- /pci-arbiter/ncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/ncache.c -------------------------------------------------------------------------------- /pci-arbiter/ncache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/ncache.h -------------------------------------------------------------------------------- /pci-arbiter/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/options.c -------------------------------------------------------------------------------- /pci-arbiter/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/options.h -------------------------------------------------------------------------------- /pci-arbiter/pci-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/pci-ops.c -------------------------------------------------------------------------------- /pci-arbiter/pcifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/pcifs.c -------------------------------------------------------------------------------- /pci-arbiter/pcifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pci-arbiter/pcifs.h -------------------------------------------------------------------------------- /pfinet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/Makefile -------------------------------------------------------------------------------- /pfinet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/README -------------------------------------------------------------------------------- /pfinet/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/config.h -------------------------------------------------------------------------------- /pfinet/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/dummy.c -------------------------------------------------------------------------------- /pfinet/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/ethernet.c -------------------------------------------------------------------------------- /pfinet/glue-include/asm/delay.h: -------------------------------------------------------------------------------- 1 | /* stub file. */ 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/asm/hardirq.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/asm/segment.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/asm/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/autoconf.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/binfmts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/config.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/major.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/personality.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/proc_fs.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/slab.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/sockios.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/stat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/timex.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/glue-include/linux/un.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfinet/iioctl-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/iioctl-ops.c -------------------------------------------------------------------------------- /pfinet/io-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/io-ops.c -------------------------------------------------------------------------------- /pfinet/kmem_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/kmem_cache.c -------------------------------------------------------------------------------- /pfinet/linux-src/include/linux/user.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pfinet/loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/loopback.c -------------------------------------------------------------------------------- /pfinet/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/main.c -------------------------------------------------------------------------------- /pfinet/mapped-time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/mapped-time.h -------------------------------------------------------------------------------- /pfinet/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/mig-decls.h -------------------------------------------------------------------------------- /pfinet/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/mig-mutate.h -------------------------------------------------------------------------------- /pfinet/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/misc.c -------------------------------------------------------------------------------- /pfinet/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/options.c -------------------------------------------------------------------------------- /pfinet/pfinet-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/pfinet-ops.c -------------------------------------------------------------------------------- /pfinet/pfinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/pfinet.h -------------------------------------------------------------------------------- /pfinet/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/sched.c -------------------------------------------------------------------------------- /pfinet/socket-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/socket-ops.c -------------------------------------------------------------------------------- /pfinet/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/socket.c -------------------------------------------------------------------------------- /pfinet/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/stubs.c -------------------------------------------------------------------------------- /pfinet/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/time.c -------------------------------------------------------------------------------- /pfinet/timer-emul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/timer-emul.c -------------------------------------------------------------------------------- /pfinet/tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pfinet/tunnel.c -------------------------------------------------------------------------------- /pflocal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/Makefile -------------------------------------------------------------------------------- /pflocal/connq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/connq.c -------------------------------------------------------------------------------- /pflocal/connq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/connq.h -------------------------------------------------------------------------------- /pflocal/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/fs.c -------------------------------------------------------------------------------- /pflocal/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/io.c -------------------------------------------------------------------------------- /pflocal/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/mig-decls.h -------------------------------------------------------------------------------- /pflocal/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/mig-mutate.h -------------------------------------------------------------------------------- /pflocal/pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/pf.c -------------------------------------------------------------------------------- /pflocal/pflocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/pflocal.c -------------------------------------------------------------------------------- /pflocal/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/sock.c -------------------------------------------------------------------------------- /pflocal/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/sock.h -------------------------------------------------------------------------------- /pflocal/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/socket.c -------------------------------------------------------------------------------- /pflocal/sserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/sserver.c -------------------------------------------------------------------------------- /pflocal/sserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/pflocal/sserver.h -------------------------------------------------------------------------------- /proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/Makefile -------------------------------------------------------------------------------- /proc/cpu-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/cpu-types.c -------------------------------------------------------------------------------- /proc/dead-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/dead-name.c -------------------------------------------------------------------------------- /proc/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/hash.c -------------------------------------------------------------------------------- /proc/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/host.c -------------------------------------------------------------------------------- /proc/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/info.c -------------------------------------------------------------------------------- /proc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/main.c -------------------------------------------------------------------------------- /proc/mgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/mgt.c -------------------------------------------------------------------------------- /proc/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/mig-decls.h -------------------------------------------------------------------------------- /proc/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/mig-mutate.h -------------------------------------------------------------------------------- /proc/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/msg.c -------------------------------------------------------------------------------- /proc/ourmsg.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/ourmsg.defs -------------------------------------------------------------------------------- /proc/pgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/pgrp.c -------------------------------------------------------------------------------- /proc/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/proc.h -------------------------------------------------------------------------------- /proc/proc_exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/proc_exc.defs -------------------------------------------------------------------------------- /proc/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/stubs.c -------------------------------------------------------------------------------- /proc/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/proc/wait.c -------------------------------------------------------------------------------- /procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/Makefile -------------------------------------------------------------------------------- /procfs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/TODO -------------------------------------------------------------------------------- /procfs/dircat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/dircat.c -------------------------------------------------------------------------------- /procfs/dircat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/dircat.h -------------------------------------------------------------------------------- /procfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/main.c -------------------------------------------------------------------------------- /procfs/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/main.h -------------------------------------------------------------------------------- /procfs/netfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/netfs.c -------------------------------------------------------------------------------- /procfs/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/process.c -------------------------------------------------------------------------------- /procfs/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/process.h -------------------------------------------------------------------------------- /procfs/procfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/procfs.c -------------------------------------------------------------------------------- /procfs/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/procfs.h -------------------------------------------------------------------------------- /procfs/procfs_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/procfs_dir.c -------------------------------------------------------------------------------- /procfs/procfs_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/procfs_dir.h -------------------------------------------------------------------------------- /procfs/proclist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/proclist.c -------------------------------------------------------------------------------- /procfs/proclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/proclist.h -------------------------------------------------------------------------------- /procfs/rootdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/rootdir.c -------------------------------------------------------------------------------- /procfs/rootdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/procfs/rootdir.h -------------------------------------------------------------------------------- /release/=announce-0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/=announce-0.0 -------------------------------------------------------------------------------- /release/=announce-0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/=announce-0.1 -------------------------------------------------------------------------------- /release/=announce-0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/=announce-0.2 -------------------------------------------------------------------------------- /release/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/COPYING.LIB -------------------------------------------------------------------------------- /release/INSTALL-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/INSTALL-binary -------------------------------------------------------------------------------- /release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/Makefile -------------------------------------------------------------------------------- /release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/README -------------------------------------------------------------------------------- /release/SETUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/SETUP -------------------------------------------------------------------------------- /release/SOURCES.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/SOURCES.0.0 -------------------------------------------------------------------------------- /release/SOURCES.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/SOURCES.0.2 -------------------------------------------------------------------------------- /release/bfloppy.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/bfloppy.boot -------------------------------------------------------------------------------- /release/bfloppy.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/bfloppy.copy -------------------------------------------------------------------------------- /release/bfloppy1-special.copy: -------------------------------------------------------------------------------- 1 | rename boot/grub/menu.lst copy bfloppy1.grub 2 | -------------------------------------------------------------------------------- /release/bfloppy1.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/bfloppy1.copy -------------------------------------------------------------------------------- /release/bfloppy1.grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/bfloppy1.grub -------------------------------------------------------------------------------- /release/bfloppy2.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/bfloppy2.boot -------------------------------------------------------------------------------- /release/bfloppy2.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/bfloppy2.copy -------------------------------------------------------------------------------- /release/checklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/checklist -------------------------------------------------------------------------------- /release/dist-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/dist-README -------------------------------------------------------------------------------- /release/menu.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/menu.lst -------------------------------------------------------------------------------- /release/mkemptyso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/mkemptyso.sh -------------------------------------------------------------------------------- /release/mkfsimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/mkfsimage.sh -------------------------------------------------------------------------------- /release/mksmallso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/mksmallso.sh -------------------------------------------------------------------------------- /release/release-steps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/release-steps -------------------------------------------------------------------------------- /release/rfloppy.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/rfloppy.copy -------------------------------------------------------------------------------- /release/rfloppy.group: -------------------------------------------------------------------------------- 1 | wheel::0:root 2 | -------------------------------------------------------------------------------- /release/rfloppy.nss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/rfloppy.nss -------------------------------------------------------------------------------- /release/rfloppy.passwd: -------------------------------------------------------------------------------- 1 | root::0:0:Lord of the Files:/:/bin/bash 2 | -------------------------------------------------------------------------------- /release/servers.boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/servers.boot -------------------------------------------------------------------------------- /release/tool-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/release/tool-Makefile -------------------------------------------------------------------------------- /rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rtc/Makefile -------------------------------------------------------------------------------- /rtc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rtc/main.c -------------------------------------------------------------------------------- /rtc/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rtc/mig-mutate.h -------------------------------------------------------------------------------- /rumpdisk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rumpdisk/Makefile -------------------------------------------------------------------------------- /rumpdisk/block-rump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rumpdisk/block-rump.c -------------------------------------------------------------------------------- /rumpdisk/block-rump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rumpdisk/block-rump.h -------------------------------------------------------------------------------- /rumpdisk/ioccom-rump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rumpdisk/ioccom-rump.h -------------------------------------------------------------------------------- /rumpdisk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/rumpdisk/main.c -------------------------------------------------------------------------------- /shutdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/shutdown/Makefile -------------------------------------------------------------------------------- /shutdown/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/shutdown/mig-mutate.h -------------------------------------------------------------------------------- /shutdown/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/shutdown/shutdown.c -------------------------------------------------------------------------------- /startup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/startup/Makefile -------------------------------------------------------------------------------- /startup/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/startup/startup.c -------------------------------------------------------------------------------- /storeio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/Makefile -------------------------------------------------------------------------------- /storeio/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/dev.c -------------------------------------------------------------------------------- /storeio/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/dev.h -------------------------------------------------------------------------------- /storeio/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/io.c -------------------------------------------------------------------------------- /storeio/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/open.c -------------------------------------------------------------------------------- /storeio/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/open.h -------------------------------------------------------------------------------- /storeio/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/pager.c -------------------------------------------------------------------------------- /storeio/storeio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/storeio/storeio.c -------------------------------------------------------------------------------- /sutils/MAKEDEV.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/MAKEDEV.sh -------------------------------------------------------------------------------- /sutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/Makefile -------------------------------------------------------------------------------- /sutils/bless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/bless.c -------------------------------------------------------------------------------- /sutils/clookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/clookup.c -------------------------------------------------------------------------------- /sutils/e2os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/e2os.sh -------------------------------------------------------------------------------- /sutils/fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/fsck.c -------------------------------------------------------------------------------- /sutils/fstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/fstab.c -------------------------------------------------------------------------------- /sutils/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/fstab.h -------------------------------------------------------------------------------- /sutils/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/halt.c -------------------------------------------------------------------------------- /sutils/losetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/losetup.sh -------------------------------------------------------------------------------- /sutils/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/reboot.c -------------------------------------------------------------------------------- /sutils/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/smp.c -------------------------------------------------------------------------------- /sutils/swapoff.c: -------------------------------------------------------------------------------- 1 | #define SWAPOFF 2 | #include "swapon.c" 3 | -------------------------------------------------------------------------------- /sutils/swapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/swapon.c -------------------------------------------------------------------------------- /sutils/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/sutils/update.c -------------------------------------------------------------------------------- /tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tasks -------------------------------------------------------------------------------- /term/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/Makefile -------------------------------------------------------------------------------- /term/devio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/devio.c -------------------------------------------------------------------------------- /term/hurdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/hurdio.c -------------------------------------------------------------------------------- /term/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/main.c -------------------------------------------------------------------------------- /term/mig-decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/mig-decls.h -------------------------------------------------------------------------------- /term/mig-mutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/mig-mutate.h -------------------------------------------------------------------------------- /term/munge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/munge.c -------------------------------------------------------------------------------- /term/ourmsg.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/ourmsg.defs -------------------------------------------------------------------------------- /term/ptyio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/ptyio.c -------------------------------------------------------------------------------- /term/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/term.h -------------------------------------------------------------------------------- /term/users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/term/users.c -------------------------------------------------------------------------------- /term/xinl.c: -------------------------------------------------------------------------------- 1 | #define TERM_DEFINE_EI 2 | #include "term.h" 3 | -------------------------------------------------------------------------------- /tmpfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tmpfs/Makefile -------------------------------------------------------------------------------- /tmpfs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tmpfs/dir.c -------------------------------------------------------------------------------- /tmpfs/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tmpfs/node.c -------------------------------------------------------------------------------- /tmpfs/pager-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tmpfs/pager-stubs.c -------------------------------------------------------------------------------- /tmpfs/tmpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tmpfs/tmpfs.c -------------------------------------------------------------------------------- /tmpfs/tmpfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/tmpfs/tmpfs.h -------------------------------------------------------------------------------- /trans/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/Makefile -------------------------------------------------------------------------------- /trans/bogus-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/bogus-fifo.c -------------------------------------------------------------------------------- /trans/crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/crash.c -------------------------------------------------------------------------------- /trans/fakeroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/fakeroot.c -------------------------------------------------------------------------------- /trans/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/fifo.c -------------------------------------------------------------------------------- /trans/firmlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/firmlink.c -------------------------------------------------------------------------------- /trans/fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/fwd.c -------------------------------------------------------------------------------- /trans/hello-mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/hello-mt.c -------------------------------------------------------------------------------- /trans/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/hello.c -------------------------------------------------------------------------------- /trans/ifsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/ifsock.c -------------------------------------------------------------------------------- /trans/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/magic.c -------------------------------------------------------------------------------- /trans/mtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/mtab.c -------------------------------------------------------------------------------- /trans/new-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/new-fifo.c -------------------------------------------------------------------------------- /trans/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/null.c -------------------------------------------------------------------------------- /trans/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/password.c -------------------------------------------------------------------------------- /trans/proxy-defpager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/proxy-defpager.c -------------------------------------------------------------------------------- /trans/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/random.c -------------------------------------------------------------------------------- /trans/remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/remap.c -------------------------------------------------------------------------------- /trans/streamio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/streamio.c -------------------------------------------------------------------------------- /trans/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/trans/symlink.c -------------------------------------------------------------------------------- /usermux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/Makefile -------------------------------------------------------------------------------- /usermux/leaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/leaf.c -------------------------------------------------------------------------------- /usermux/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/mux.c -------------------------------------------------------------------------------- /usermux/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/node.c -------------------------------------------------------------------------------- /usermux/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/stubs.c -------------------------------------------------------------------------------- /usermux/usermux-xinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/usermux-xinl.c -------------------------------------------------------------------------------- /usermux/usermux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/usermux.c -------------------------------------------------------------------------------- /usermux/usermux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/usermux/usermux.h -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/addauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/addauth.c -------------------------------------------------------------------------------- /utils/devprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/devprobe.c -------------------------------------------------------------------------------- /utils/fakeauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/fakeauth.c -------------------------------------------------------------------------------- /utils/fakeroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/fakeroot.sh -------------------------------------------------------------------------------- /utils/frobauth-mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/frobauth-mod.c -------------------------------------------------------------------------------- /utils/frobauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/frobauth.c -------------------------------------------------------------------------------- /utils/frobauth.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/frobauth.doc -------------------------------------------------------------------------------- /utils/frobauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/frobauth.h -------------------------------------------------------------------------------- /utils/fsysopts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/fsysopts.c -------------------------------------------------------------------------------- /utils/ftpcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/ftpcp.c -------------------------------------------------------------------------------- /utils/ftpdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/ftpdir.c -------------------------------------------------------------------------------- /utils/gcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/gcore.c -------------------------------------------------------------------------------- /utils/ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/ids.c -------------------------------------------------------------------------------- /utils/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/login.c -------------------------------------------------------------------------------- /utils/loginpr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/loginpr.sh -------------------------------------------------------------------------------- /utils/match-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/match-options.c -------------------------------------------------------------------------------- /utils/match-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/match-options.h -------------------------------------------------------------------------------- /utils/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/mount.c -------------------------------------------------------------------------------- /utils/msgids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/msgids.c -------------------------------------------------------------------------------- /utils/msgids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/msgids.h -------------------------------------------------------------------------------- /utils/msgport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/msgport.c -------------------------------------------------------------------------------- /utils/nonsugid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/nonsugid.c -------------------------------------------------------------------------------- /utils/nullauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/nullauth.c -------------------------------------------------------------------------------- /utils/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/parse.c -------------------------------------------------------------------------------- /utils/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/parse.h -------------------------------------------------------------------------------- /utils/pids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/pids.c -------------------------------------------------------------------------------- /utils/pids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/pids.h -------------------------------------------------------------------------------- /utils/portinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/portinfo.c -------------------------------------------------------------------------------- /utils/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/ps.c -------------------------------------------------------------------------------- /utils/psout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/psout.c -------------------------------------------------------------------------------- /utils/psout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/psout.h -------------------------------------------------------------------------------- /utils/remap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/remap.sh -------------------------------------------------------------------------------- /utils/rmauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/rmauth.c -------------------------------------------------------------------------------- /utils/rpcscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/rpcscan.c -------------------------------------------------------------------------------- /utils/rpctrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/rpctrace.c -------------------------------------------------------------------------------- /utils/setauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/setauth.c -------------------------------------------------------------------------------- /utils/settrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/settrans.c -------------------------------------------------------------------------------- /utils/shd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/shd.c -------------------------------------------------------------------------------- /utils/showtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/showtrans.c -------------------------------------------------------------------------------- /utils/storecat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/storecat.c -------------------------------------------------------------------------------- /utils/storeinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/storeinfo.c -------------------------------------------------------------------------------- /utils/storeread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/storeread.c -------------------------------------------------------------------------------- /utils/sush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/sush.sh -------------------------------------------------------------------------------- /utils/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/syncfs.c -------------------------------------------------------------------------------- /utils/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/umount.c -------------------------------------------------------------------------------- /utils/unsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/unsu.c -------------------------------------------------------------------------------- /utils/uptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/uptime.sh -------------------------------------------------------------------------------- /utils/vmallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/vmallocate.c -------------------------------------------------------------------------------- /utils/vminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/vminfo.c -------------------------------------------------------------------------------- /utils/vmstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/vmstat.c -------------------------------------------------------------------------------- /utils/w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/w.c -------------------------------------------------------------------------------- /utils/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/utils/x.c -------------------------------------------------------------------------------- /version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshumax/hurd/HEAD/version.h.in --------------------------------------------------------------------------------