Use `errno_t` in all uspace and kernel code.
commitb7fd2a02e4161f4edd38548e7f8456b8021549be
authorJiří Zárevúcky <zarevucky.jiri@gmail.com>
Sat, 13 Jan 2018 03:10:29 +0000 (13 04:10 +0100)
committerJiří Zárevúcky <zarevucky.jiri@gmail.com>
Sat, 13 Jan 2018 03:10:29 +0000 (13 04:10 +0100)
tree7ead84ed2600ef0d79bd344dba16a1269817d5ba
parent36f0738ce13f32ad07d7932ca18f677cab815660
Use `errno_t` in all uspace and kernel code.

Change type of every variable, parameter and return value that holds an
<errno.h> constant to either `errno_t` (the usual case), or `sys_errno_t`
(some places in kernel). This is for the purpose of self-documentation,
as well as for type-checking with a bit of type definition hackery.

Although this is a massive commit, it is a simple text replacement, and thus
is very easy to verify. Simply do the following:

```
git checkout <this commit's hash>
git reset HEAD^
git add .
tools/srepl '\berrno_t\b' int
git add .
tools/srepl '\bsys_errno_t\b' sysarg_t
git reset
git diff
```

While this doesn't ensure that the replacements are correct, it does ensure
that the commit doesn't do anything except those replacements. Since errno_t
is typedef'd to int in the usual case (and sys_errno_t to sysarg_t), even if
incorrect, this commit cannot change behavior.
1052 files changed:
kernel/arch/abs32le/src/abs32le.c
kernel/arch/arm32/src/mach/beaglebone/beaglebone.c
kernel/arch/ia64/src/ddi/ddi.c
kernel/arch/riscv64/src/riscv64.c
kernel/arch/sparc64/src/mm/sun4u/as.c
kernel/arch/sparc64/src/mm/sun4v/as.c
kernel/genarch/include/genarch/drivers/am335x/ctrl_module.h
kernel/genarch/include/genarch/drivers/am335x/timer.h
kernel/genarch/src/ddi/ddi-bitmap.c
kernel/genarch/src/ddi/ddi-dummy.c
kernel/genarch/src/drivers/am335x/timer.c
kernel/generic/include/cap/cap.h
kernel/generic/include/console/console.h
kernel/generic/include/ddi/ddi.h
kernel/generic/include/ipc/event.h
kernel/generic/include/ipc/ipc.h
kernel/generic/include/ipc/ipcrsc.h
kernel/generic/include/ipc/irq.h
kernel/generic/include/ipc/kbox.h
kernel/generic/include/ipc/sysipc.h
kernel/generic/include/ipc/sysipc_ops.h
kernel/generic/include/ipc/sysipc_priv.h
kernel/generic/include/log.h
kernel/generic/include/mm/as.h
kernel/generic/include/mm/page.h
kernel/generic/include/mm/slab.h
kernel/generic/include/proc/program.h
kernel/generic/include/proc/task.h
kernel/generic/include/proc/thread.h
kernel/generic/include/security/perm.h
kernel/generic/include/str.h
kernel/generic/include/symtab_lookup.h
kernel/generic/include/synch/condvar.h
kernel/generic/include/synch/futex.h
kernel/generic/include/synch/mutex.h
kernel/generic/include/synch/semaphore.h
kernel/generic/include/synch/smc.h
kernel/generic/include/synch/smp_memory_barrier.h
kernel/generic/include/synch/waitq.h
kernel/generic/include/syscall/copy.h
kernel/generic/include/sysinfo/sysinfo.h
kernel/generic/include/udebug/udebug.h
kernel/generic/include/udebug/udebug_ipc.h
kernel/generic/include/udebug/udebug_ops.h
kernel/generic/src/cap/cap.c
kernel/generic/src/console/cmd.c
kernel/generic/src/console/console.c
kernel/generic/src/console/kconsole.c
kernel/generic/src/ddi/ddi.c
kernel/generic/src/debug/symtab.c
kernel/generic/src/ipc/event.c
kernel/generic/src/ipc/ipc.c
kernel/generic/src/ipc/ipcrsc.c
kernel/generic/src/ipc/irq.c
kernel/generic/src/ipc/kbox.c
kernel/generic/src/ipc/ops/conctmeto.c
kernel/generic/src/ipc/ops/concttome.c
kernel/generic/src/ipc/ops/dataread.c
kernel/generic/src/ipc/ops/datawrite.c
kernel/generic/src/ipc/ops/debug.c
kernel/generic/src/ipc/ops/pagein.c
kernel/generic/src/ipc/ops/sharein.c
kernel/generic/src/ipc/ops/shareout.c
kernel/generic/src/ipc/ops/stchngath.c
kernel/generic/src/ipc/sysipc.c
kernel/generic/src/ipc/sysipc_ops.c
kernel/generic/src/lib/str.c
kernel/generic/src/lib/str_error.c
kernel/generic/src/log/log.c
kernel/generic/src/main/kinit.c
kernel/generic/src/mm/as.c
kernel/generic/src/mm/backend_user.c
kernel/generic/src/mm/page.c
kernel/generic/src/mm/slab.c
kernel/generic/src/proc/program.c
kernel/generic/src/proc/task.c
kernel/generic/src/proc/thread.c
kernel/generic/src/security/perm.c
kernel/generic/src/synch/condvar.c
kernel/generic/src/synch/futex.c
kernel/generic/src/synch/mutex.c
kernel/generic/src/synch/rcu.c
kernel/generic/src/synch/semaphore.c
kernel/generic/src/synch/smc.c
kernel/generic/src/synch/smp_memory_barrier.c
kernel/generic/src/synch/waitq.c
kernel/generic/src/synch/workqueue.c
kernel/generic/src/syscall/copy.c
kernel/generic/src/sysinfo/sysinfo.c
kernel/generic/src/udebug/udebug.c
kernel/generic/src/udebug/udebug_ipc.c
kernel/generic/src/udebug/udebug_ops.c
kernel/test/synch/rcu1.c
kernel/test/synch/semaphore2.c
uspace/app/barber/barber.c
uspace/app/bdsh/cmds/builtins/batch/batch.c
uspace/app/bdsh/cmds/builtins/cd/cd.c
uspace/app/bdsh/cmds/modules/cat/cat.c
uspace/app/bdsh/cmds/modules/cmp/cmp.c
uspace/app/bdsh/cmds/modules/cp/cp.c
uspace/app/bdsh/cmds/modules/ls/ls.c
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
uspace/app/bdsh/cmds/modules/mkfile/mkfile.c
uspace/app/bdsh/cmds/modules/mount/mount.c
uspace/app/bdsh/cmds/modules/mv/mv.c
uspace/app/bdsh/cmds/modules/rm/rm.c
uspace/app/bdsh/cmds/modules/sleep/sleep.c
uspace/app/bdsh/cmds/modules/touch/touch.c
uspace/app/bdsh/cmds/modules/unmount/unmount.c
uspace/app/bdsh/compl.c
uspace/app/bdsh/exec.c
uspace/app/bdsh/input.c
uspace/app/bdsh/input.h
uspace/app/bdsh/scli.c
uspace/app/bdsh/scli.h
uspace/app/bdsh/test/toktest.c
uspace/app/bdsh/tok.c
uspace/app/bdsh/tok.h
uspace/app/bithenge/test.c
uspace/app/blkdump/blkdump.c
uspace/app/bnchmark/bnchmark.c
uspace/app/corecfg/corecfg.c
uspace/app/date/date.c
uspace/app/devctl/devctl.c
uspace/app/df/df.c
uspace/app/dnscfg/dnscfg.c
uspace/app/dnsres/dnsres.c
uspace/app/download/main.c
uspace/app/edit/edit.c
uspace/app/edit/search.c
uspace/app/edit/search.h
uspace/app/edit/sheet.c
uspace/app/edit/sheet.h
uspace/app/fdisk/fdisk.c
uspace/app/fontviewer/fontviewer.c
uspace/app/getterm/getterm.c
uspace/app/gunzip/gunzip.c
uspace/app/inet/inet.c
uspace/app/init/init.c
uspace/app/kill/kill.c
uspace/app/killall/killall.c
uspace/app/kio/kio.c
uspace/app/loc/loc.c
uspace/app/logset/main.c
uspace/app/mixerctl/mixerctl.c
uspace/app/mkbd/main.c
uspace/app/mkexfat/mkexfat.c
uspace/app/mkfat/mkfat.c
uspace/app/mkmfs/mkmfs.c
uspace/app/modplay/modplay.c
uspace/app/netecho/comm.c
uspace/app/netecho/comm.h
uspace/app/netecho/netecho.c
uspace/app/netstart/self_test.c
uspace/app/netstart/self_test.h
uspace/app/nic/nic.c
uspace/app/nterm/conn.c
uspace/app/nterm/conn.h
uspace/app/nterm/nterm.c
uspace/app/ping/ping.c
uspace/app/pkg/pkg.c
uspace/app/rcubench/rcubench.c
uspace/app/rcutest/rcutest.c
uspace/app/redir/redir.c
uspace/app/sbi/src/bigint.c
uspace/app/sbi/src/bigint.h
uspace/app/sbi/src/builtin/bi_char.c
uspace/app/sbi/src/builtin/bi_console.c
uspace/app/sbi/src/builtin/bi_string.c
uspace/app/sbi/src/input.c
uspace/app/sbi/src/input.h
uspace/app/sbi/src/lex.c
uspace/app/sbi/src/main.c
uspace/app/sbi/src/os/helenos.c
uspace/app/sbi/src/os/os.h
uspace/app/sbi/src/os/posix.c
uspace/app/sbi/src/program.c
uspace/app/sbi/src/program.h
uspace/app/sbi/src/run_expr.c
uspace/app/sbi/src/stype.c
uspace/app/sbi/src/stype.h
uspace/app/sportdmp/sportdmp.c
uspace/app/stats/stats.c
uspace/app/sysinfo/sysinfo.c
uspace/app/sysinst/futil.c
uspace/app/sysinst/futil.h
uspace/app/sysinst/sysinst.c
uspace/app/taskdump/elf_core.c
uspace/app/taskdump/fibrildump.c
uspace/app/taskdump/include/elf_core.h
uspace/app/taskdump/include/fibrildump.h
uspace/app/taskdump/include/symtab.h
uspace/app/taskdump/include/taskdump.h
uspace/app/taskdump/symtab.c
uspace/app/taskdump/taskdump.c
uspace/app/tester/chardev/chardev1.c
uspace/app/tester/hw/serial/serial1.c
uspace/app/tester/ipc/ping_pong.c
uspace/app/tester/mm/common.c
uspace/app/tester/mm/mapping1.c
uspace/app/tester/mm/pager1.c
uspace/app/tester/vfs/vfs1.c
uspace/app/tetris/scores.c
uspace/app/tetris/scores.h
uspace/app/tetris/screen.c
uspace/app/trace/ipcp.c
uspace/app/trace/ipcp.h
uspace/app/trace/trace.c
uspace/app/untar/main.c
uspace/app/untar/tar.c
uspace/app/untar/tar.h
uspace/app/usbinfo/hid.c
uspace/app/usbinfo/info.c
uspace/app/usbinfo/list.c
uspace/app/usbinfo/main.c
uspace/app/usbinfo/usbinfo.h
uspace/app/viewer/viewer.c
uspace/app/vlaunch/vlaunch.c
uspace/app/vuhid/device.c
uspace/app/vuhid/hids/bootkbd.c
uspace/app/vuhid/life.c
uspace/app/vuhid/main.c
uspace/app/vuhid/stdreq.c
uspace/app/vuhid/stdreq.h
uspace/app/vuhid/virthid.h
uspace/app/wavplay/dplay.c
uspace/app/wavplay/drec.c
uspace/app/wavplay/main.c
uspace/app/wavplay/wave.c
uspace/app/wavplay/wave.h
uspace/app/websrv/websrv.c
uspace/app/wifi_supplicant/wifi_supplicant.c
uspace/dist/src/c/demos/edit/edit.c
uspace/dist/src/c/demos/edit/search.c
uspace/dist/src/c/demos/edit/search.h
uspace/dist/src/c/demos/edit/sheet.c
uspace/dist/src/c/demos/edit/sheet.h
uspace/dist/src/c/demos/hello/hello.c
uspace/dist/src/c/demos/tetris/scores.c
uspace/dist/src/c/demos/tetris/scores.h
uspace/dist/src/c/demos/tetris/screen.c
uspace/dist/src/c/demos/tetris/screen.h
uspace/dist/src/c/demos/tetris/shapes.c
uspace/dist/src/c/demos/tetris/tetris.h
uspace/dist/src/c/demos/top/screen.c
uspace/dist/src/c/demos/top/screen.h
uspace/drv/audio/hdaudio/codec.c
uspace/drv/audio/hdaudio/codec.h
uspace/drv/audio/hdaudio/hdactl.c
uspace/drv/audio/hdaudio/hdactl.h
uspace/drv/audio/hdaudio/hdaudio.c
uspace/drv/audio/hdaudio/pcm_iface.c
uspace/drv/audio/hdaudio/stream.c
uspace/drv/audio/hdaudio/stream.h
uspace/drv/audio/sb16/dsp.c
uspace/drv/audio/sb16/dsp.h
uspace/drv/audio/sb16/main.c
uspace/drv/audio/sb16/mixer.c
uspace/drv/audio/sb16/mixer.h
uspace/drv/audio/sb16/mixer_iface.c
uspace/drv/audio/sb16/pcm_iface.c
uspace/drv/audio/sb16/sb16.c
uspace/drv/audio/sb16/sb16.h
uspace/drv/block/ahci/ahci.c
uspace/drv/block/ata_bd/ata_bd.c
uspace/drv/block/ata_bd/ata_bd.h
uspace/drv/block/ata_bd/main.c
uspace/drv/block/ata_bd/main.h
uspace/drv/block/ddisk/ddisk.c
uspace/drv/block/usbmast/bo_trans.c
uspace/drv/block/usbmast/bo_trans.h
uspace/drv/block/usbmast/main.c
uspace/drv/block/usbmast/scsi_ms.c
uspace/drv/block/usbmast/scsi_ms.h
uspace/drv/bus/adb/cuda_adb/cuda_adb.c
uspace/drv/bus/adb/cuda_adb/cuda_adb.h
uspace/drv/bus/adb/cuda_adb/main.c
uspace/drv/bus/isa/i8237.c
uspace/drv/bus/isa/i8237.h
uspace/drv/bus/isa/isa.c
uspace/drv/bus/pci/pciintel/pci.c
uspace/drv/bus/usb/ehci/ehci_endpoint.c
uspace/drv/bus/usb/ehci/ehci_endpoint.h
uspace/drv/bus/usb/ehci/ehci_rh.c
uspace/drv/bus/usb/ehci/ehci_rh.h
uspace/drv/bus/usb/ehci/endpoint_list.c
uspace/drv/bus/usb/ehci/endpoint_list.h
uspace/drv/bus/usb/ehci/hc.c
uspace/drv/bus/usb/ehci/hc.h
uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.c
uspace/drv/bus/usb/ehci/hw_struct/transfer_descriptor.h
uspace/drv/bus/usb/ehci/main.c
uspace/drv/bus/usb/ehci/res.c
uspace/drv/bus/usb/ehci/res.h
uspace/drv/bus/usb/ohci/endpoint_list.c
uspace/drv/bus/usb/ohci/endpoint_list.h
uspace/drv/bus/usb/ohci/hc.c
uspace/drv/bus/usb/ohci/hc.h
uspace/drv/bus/usb/ohci/hw_struct/completion_codes.h
uspace/drv/bus/usb/ohci/hw_struct/transfer_descriptor.h
uspace/drv/bus/usb/ohci/main.c
uspace/drv/bus/usb/ohci/ohci_endpoint.c
uspace/drv/bus/usb/ohci/ohci_endpoint.h
uspace/drv/bus/usb/ohci/ohci_rh.c
uspace/drv/bus/usb/ohci/ohci_rh.h
uspace/drv/bus/usb/uhci/hc.c
uspace/drv/bus/usb/uhci/hc.h
uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.c
uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.h
uspace/drv/bus/usb/uhci/main.c
uspace/drv/bus/usb/uhci/transfer_list.c
uspace/drv/bus/usb/uhci/transfer_list.h
uspace/drv/bus/usb/uhci/uhci_rh.c
uspace/drv/bus/usb/uhci/uhci_rh.h
uspace/drv/bus/usb/usbflbk/main.c
uspace/drv/bus/usb/usbhub/port.c
uspace/drv/bus/usb/usbhub/port.h
uspace/drv/bus/usb/usbhub/usbhub.c
uspace/drv/bus/usb/usbhub/usbhub.h
uspace/drv/bus/usb/usbmid/explore.c
uspace/drv/bus/usb/usbmid/main.c
uspace/drv/bus/usb/usbmid/usbmid.c
uspace/drv/bus/usb/usbmid/usbmid.h
uspace/drv/bus/usb/vhc/conndev.c
uspace/drv/bus/usb/vhc/devconn.c
uspace/drv/bus/usb/vhc/hub/hub.c
uspace/drv/bus/usb/vhc/hub/hub.h
uspace/drv/bus/usb/vhc/hub/virthub.c
uspace/drv/bus/usb/vhc/hub/virthub.h
uspace/drv/bus/usb/vhc/hub/virthubops.c
uspace/drv/bus/usb/vhc/main.c
uspace/drv/bus/usb/vhc/transfer.c
uspace/drv/bus/usb/vhc/vhcd.h
uspace/drv/char/i8042/i8042.c
uspace/drv/char/i8042/i8042.h
uspace/drv/char/i8042/main.c
uspace/drv/char/msim-con/main.c
uspace/drv/char/msim-con/msim-con.c
uspace/drv/char/msim-con/msim-con.h
uspace/drv/char/ns8250/ns8250.c
uspace/drv/char/pl050/pl050.c
uspace/drv/char/ski-con/main.c
uspace/drv/char/ski-con/ski-con.c
uspace/drv/char/ski-con/ski-con.h
uspace/drv/char/sun4v-con/main.c
uspace/drv/char/sun4v-con/sun4v-con.c
uspace/drv/char/sun4v-con/sun4v-con.h
uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c
uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.h
uspace/drv/fb/amdm37x_dispc/main.c
uspace/drv/fb/kfb/kfb.c
uspace/drv/fb/kfb/port.c
uspace/drv/fb/kfb/port.h
uspace/drv/hid/adb-kbd/adb-kbd.c
uspace/drv/hid/adb-kbd/adb-kbd.h
uspace/drv/hid/adb-kbd/ctl.c
uspace/drv/hid/adb-kbd/ctl.h
uspace/drv/hid/adb-kbd/main.c
uspace/drv/hid/adb-mouse/adb-mouse.c
uspace/drv/hid/adb-mouse/adb-mouse.h
uspace/drv/hid/adb-mouse/main.c
uspace/drv/hid/atkbd/atkbd.c
uspace/drv/hid/atkbd/atkbd.h
uspace/drv/hid/atkbd/main.c
uspace/drv/hid/ps2mouse/main.c
uspace/drv/hid/ps2mouse/ps2mouse.c
uspace/drv/hid/ps2mouse/ps2mouse.h
uspace/drv/hid/usbhid/blink1/blink1.c
uspace/drv/hid/usbhid/blink1/blink1.h
uspace/drv/hid/usbhid/generic/hiddev.c
uspace/drv/hid/usbhid/generic/hiddev.h
uspace/drv/hid/usbhid/kbd/kbddev.c
uspace/drv/hid/usbhid/kbd/kbddev.h
uspace/drv/hid/usbhid/kbd/kbdrepeat.c
uspace/drv/hid/usbhid/kbd/kbdrepeat.h
uspace/drv/hid/usbhid/main.c
uspace/drv/hid/usbhid/mouse/mousedev.c
uspace/drv/hid/usbhid/mouse/mousedev.h
uspace/drv/hid/usbhid/multimedia/multimedia.c
uspace/drv/hid/usbhid/multimedia/multimedia.h
uspace/drv/hid/usbhid/usbhid.c
uspace/drv/hid/usbhid/usbhid.h
uspace/drv/hid/xtkbd/main.c
uspace/drv/hid/xtkbd/xtkbd.c
uspace/drv/hid/xtkbd/xtkbd.h
uspace/drv/intctl/apic/apic.c
uspace/drv/intctl/apic/apic.h
uspace/drv/intctl/apic/main.c
uspace/drv/intctl/i8259/i8259.c
uspace/drv/intctl/i8259/i8259.h
uspace/drv/intctl/i8259/main.c
uspace/drv/intctl/icp-ic/icp-ic.c
uspace/drv/intctl/icp-ic/icp-ic.h
uspace/drv/intctl/icp-ic/main.c
uspace/drv/intctl/obio/main.c
uspace/drv/intctl/obio/obio.c
uspace/drv/intctl/obio/obio.h
uspace/drv/nic/ar9271/ar9271.c
uspace/drv/nic/ar9271/ath.h
uspace/drv/nic/ar9271/ath_usb.c
uspace/drv/nic/ar9271/ath_usb.h
uspace/drv/nic/ar9271/htc.c
uspace/drv/nic/ar9271/htc.h
uspace/drv/nic/ar9271/hw.c
uspace/drv/nic/ar9271/hw.h
uspace/drv/nic/ar9271/wmi.c
uspace/drv/nic/ar9271/wmi.h
uspace/drv/nic/e1k/e1k.c
uspace/drv/nic/ne2k/dp8390.c
uspace/drv/nic/ne2k/dp8390.h
uspace/drv/nic/ne2k/ne2k.c
uspace/drv/nic/rtl8139/driver.c
uspace/drv/nic/rtl8139/general.c
uspace/drv/nic/rtl8139/general.h
uspace/drv/nic/rtl8169/driver.c
uspace/drv/platform/amdm37x/amdm37x.c
uspace/drv/platform/amdm37x/amdm37x.h
uspace/drv/platform/amdm37x/main.c
uspace/drv/platform/icp/icp.c
uspace/drv/platform/mac/mac.c
uspace/drv/platform/malta/malta.c
uspace/drv/platform/msim/msim.c
uspace/drv/platform/pc/pc.c
uspace/drv/platform/ski/ski.c
uspace/drv/platform/sun4u/sun4u.c
uspace/drv/platform/sun4v/sun4v.c
uspace/drv/root/root/root.c
uspace/drv/root/virt/virt.c
uspace/drv/test/test1/test1.c
uspace/drv/test/test2/test2.c
uspace/drv/test/test3/test3.c
uspace/drv/time/cmos-rtc/cmos-rtc.c
uspace/lib/bithenge/include/bithenge/blob.h
uspace/lib/bithenge/include/bithenge/compound.h
uspace/lib/bithenge/include/bithenge/expression.h
uspace/lib/bithenge/include/bithenge/file.h
uspace/lib/bithenge/include/bithenge/print.h
uspace/lib/bithenge/include/bithenge/script.h
uspace/lib/bithenge/include/bithenge/sequence.h
uspace/lib/bithenge/include/bithenge/source.h
uspace/lib/bithenge/include/bithenge/transform.h
uspace/lib/bithenge/include/bithenge/tree.h
uspace/lib/bithenge/src/blob.c
uspace/lib/bithenge/src/common.h
uspace/lib/bithenge/src/compound.c
uspace/lib/bithenge/src/expression.c
uspace/lib/bithenge/src/failure.c
uspace/lib/bithenge/src/failure.h
uspace/lib/bithenge/src/file.c
uspace/lib/bithenge/src/helenos/block.c
uspace/lib/bithenge/src/helenos/block.h
uspace/lib/bithenge/src/helenos/common.h
uspace/lib/bithenge/src/linux/common.h
uspace/lib/bithenge/src/print.c
uspace/lib/bithenge/src/script.c
uspace/lib/bithenge/src/sequence.c
uspace/lib/bithenge/src/source.c
uspace/lib/bithenge/src/transform.c
uspace/lib/bithenge/src/tree.c
uspace/lib/block/block.c
uspace/lib/block/block.h
uspace/lib/c/arch/abs32le/src/stacktrace.c
uspace/lib/c/arch/amd64/src/stacktrace.c
uspace/lib/c/arch/arm32/src/stacktrace.c
uspace/lib/c/arch/ia32/src/stacktrace.c
uspace/lib/c/arch/ia64/src/stacktrace.c
uspace/lib/c/arch/mips32/src/stacktrace.c
uspace/lib/c/arch/ppc32/src/stacktrace.c
uspace/lib/c/arch/riscv64/src/stacktrace.c
uspace/lib/c/arch/sparc64/src/stacktrace.c
uspace/lib/c/generic/adt/circ_buf.c
uspace/lib/c/generic/adt/odict.c
uspace/lib/c/generic/arg_parse.c
uspace/lib/c/generic/as.c
uspace/lib/c/generic/async.c
uspace/lib/c/generic/bd.c
uspace/lib/c/generic/bd_srv.c
uspace/lib/c/generic/cap.c
uspace/lib/c/generic/clipboard.c
uspace/lib/c/generic/corecfg.c
uspace/lib/c/generic/ddi.c
uspace/lib/c/generic/device/clock_dev.c
uspace/lib/c/generic/device/hw_res.c
uspace/lib/c/generic/device/hw_res_parsed.c
uspace/lib/c/generic/device/led_dev.c
uspace/lib/c/generic/device/pio_window.c
uspace/lib/c/generic/devman.c
uspace/lib/c/generic/dhcp.c
uspace/lib/c/generic/dirent.c
uspace/lib/c/generic/dnsr.c
uspace/lib/c/generic/elf/elf_load.c
uspace/lib/c/generic/elf/elf_mod.c
uspace/lib/c/generic/event.c
uspace/lib/c/generic/fibril.c
uspace/lib/c/generic/fibril_synch.c
uspace/lib/c/generic/imath.c
uspace/lib/c/generic/inet.c
uspace/lib/c/generic/inet/addr.c
uspace/lib/c/generic/inet/host.c
uspace/lib/c/generic/inet/hostname.c
uspace/lib/c/generic/inet/hostport.c
uspace/lib/c/generic/inet/tcp.c
uspace/lib/c/generic/inet/udp.c
uspace/lib/c/generic/inetcfg.c
uspace/lib/c/generic/inetping.c
uspace/lib/c/generic/io/chardev.c
uspace/lib/c/generic/io/chardev_srv.c
uspace/lib/c/generic/io/con_srv.c
uspace/lib/c/generic/io/console.c
uspace/lib/c/generic/io/input.c
uspace/lib/c/generic/io/io.c
uspace/lib/c/generic/io/kio.c
uspace/lib/c/generic/io/klog.c
uspace/lib/c/generic/io/log.c
uspace/lib/c/generic/io/logctl.c
uspace/lib/c/generic/io/output.c
uspace/lib/c/generic/io/serial.c
uspace/lib/c/generic/io/table.c
uspace/lib/c/generic/io/visualizer.c
uspace/lib/c/generic/io/window.c
uspace/lib/c/generic/ipc.c
uspace/lib/c/generic/iplink.c
uspace/lib/c/generic/iplink_srv.c
uspace/lib/c/generic/irc.c
uspace/lib/c/generic/irq.c
uspace/lib/c/generic/loader.c
uspace/lib/c/generic/loc.c
uspace/lib/c/generic/malloc.c
uspace/lib/c/generic/ns.c
uspace/lib/c/generic/perm.c
uspace/lib/c/generic/pio_trace.c
uspace/lib/c/generic/private/async.h
uspace/lib/c/generic/rtld/module.c
uspace/lib/c/generic/rtld/rtld.c
uspace/lib/c/generic/smc.c
uspace/lib/c/generic/stacktrace.c
uspace/lib/c/generic/stdio.c
uspace/lib/c/generic/str.c
uspace/lib/c/generic/sysinfo.c
uspace/lib/c/generic/task.c
uspace/lib/c/generic/thread.c
uspace/lib/c/generic/time.c
uspace/lib/c/generic/udebug.c
uspace/lib/c/generic/uuid.c
uspace/lib/c/generic/vbd.c
uspace/lib/c/generic/vfs/mtab.c
uspace/lib/c/generic/vfs/vfs.c
uspace/lib/c/generic/vol.c
uspace/lib/c/include/adt/circ_buf.h
uspace/lib/c/include/adt/odict.h
uspace/lib/c/include/arg_parse.h
uspace/lib/c/include/as.h
uspace/lib/c/include/async.h
uspace/lib/c/include/bd.h
uspace/lib/c/include/bd_srv.h
uspace/lib/c/include/cap.h
uspace/lib/c/include/clipboard.h
uspace/lib/c/include/corecfg.h
uspace/lib/c/include/ddi.h
uspace/lib/c/include/device/clock_dev.h
uspace/lib/c/include/device/hw_res.h
uspace/lib/c/include/device/hw_res_parsed.h
uspace/lib/c/include/device/led_dev.h
uspace/lib/c/include/device/pio_window.h
uspace/lib/c/include/devman.h
uspace/lib/c/include/fibril.h
uspace/lib/c/include/fibril_synch.h
uspace/lib/c/include/futex.h
uspace/lib/c/include/imath.h
uspace/lib/c/include/inet/addr.h
uspace/lib/c/include/inet/dhcp.h
uspace/lib/c/include/inet/dnsr.h
uspace/lib/c/include/inet/host.h
uspace/lib/c/include/inet/hostname.h
uspace/lib/c/include/inet/hostport.h
uspace/lib/c/include/inet/inet.h
uspace/lib/c/include/inet/inetcfg.h
uspace/lib/c/include/inet/inetping.h
uspace/lib/c/include/inet/iplink.h
uspace/lib/c/include/inet/iplink_srv.h
uspace/lib/c/include/inet/tcp.h
uspace/lib/c/include/inet/udp.h
uspace/lib/c/include/io/chardev.h
uspace/lib/c/include/io/chardev_srv.h
uspace/lib/c/include/io/con_srv.h
uspace/lib/c/include/io/console.h
uspace/lib/c/include/io/input.h
uspace/lib/c/include/io/kio.h
uspace/lib/c/include/io/klog.h
uspace/lib/c/include/io/log.h
uspace/lib/c/include/io/logctl.h
uspace/lib/c/include/io/output.h
uspace/lib/c/include/io/serial.h
uspace/lib/c/include/io/table.h
uspace/lib/c/include/io/visualizer.h
uspace/lib/c/include/io/window.h
uspace/lib/c/include/ipc/event.h
uspace/lib/c/include/ipc/ipc.h
uspace/lib/c/include/ipc/irq.h
uspace/lib/c/include/irc.h
uspace/lib/c/include/loader/loader.h
uspace/lib/c/include/loc.h
uspace/lib/c/include/ns.h
uspace/lib/c/include/perm.h
uspace/lib/c/include/rtld/module.h
uspace/lib/c/include/rtld/rtld.h
uspace/lib/c/include/smc.h
uspace/lib/c/include/stacktrace.h
uspace/lib/c/include/str.h
uspace/lib/c/include/sys/time.h
uspace/lib/c/include/sysinfo.h
uspace/lib/c/include/task.h
uspace/lib/c/include/thread.h
uspace/lib/c/include/types/inet.h
uspace/lib/c/include/udebug.h
uspace/lib/c/include/uuid.h
uspace/lib/c/include/vbd.h
uspace/lib/c/include/vfs/vfs.h
uspace/lib/c/include/vfs/vfs_mtab.h
uspace/lib/c/include/vol.h
uspace/lib/c/test/adt/circ_buf.c
uspace/lib/c/test/io/table.c
uspace/lib/clui/nchoice.c
uspace/lib/clui/nchoice.h
uspace/lib/clui/tinput.c
uspace/lib/clui/tinput.h
uspace/lib/compress/gzip.c
uspace/lib/compress/gzip.h
uspace/lib/compress/inflate.c
uspace/lib/compress/inflate.h
uspace/lib/crypto/aes.c
uspace/lib/crypto/crypto.c
uspace/lib/crypto/crypto.h
uspace/lib/crypto/rc4.c
uspace/lib/draw/codec/tga.gz.c
uspace/lib/draw/font.c
uspace/lib/draw/font.h
uspace/lib/draw/font/bitmap_backend.c
uspace/lib/draw/font/bitmap_backend.h
uspace/lib/draw/font/embedded.c
uspace/lib/draw/font/embedded.h
uspace/lib/draw/font/pcf.c
uspace/lib/draw/font/pcf.h
uspace/lib/drv/generic/driver.c
uspace/lib/drv/generic/interrupt.c
uspace/lib/drv/generic/log.c
uspace/lib/drv/generic/remote_ahci.c
uspace/lib/drv/generic/remote_audio_mixer.c
uspace/lib/drv/generic/remote_audio_pcm.c
uspace/lib/drv/generic/remote_battery_dev.c
uspace/lib/drv/generic/remote_clock_dev.c
uspace/lib/drv/generic/remote_hw_res.c
uspace/lib/drv/generic/remote_ieee80211.c
uspace/lib/drv/generic/remote_led_dev.c
uspace/lib/drv/generic/remote_nic.c
uspace/lib/drv/generic/remote_pci.c
uspace/lib/drv/generic/remote_usb.c
uspace/lib/drv/generic/remote_usbhc.c
uspace/lib/drv/generic/remote_usbhid.c
uspace/lib/drv/include/ahci_iface.h
uspace/lib/drv/include/audio_mixer_iface.h
uspace/lib/drv/include/audio_pcm_iface.h
uspace/lib/drv/include/battery_iface.h
uspace/lib/drv/include/ddf/driver.h
uspace/lib/drv/include/ddf/interrupt.h
uspace/lib/drv/include/ddf/log.h
uspace/lib/drv/include/ieee80211_iface.h
uspace/lib/drv/include/nic_iface.h
uspace/lib/drv/include/ops/battery_dev.h
uspace/lib/drv/include/ops/clock_dev.h
uspace/lib/drv/include/ops/hw_res.h
uspace/lib/drv/include/ops/ieee80211.h
uspace/lib/drv/include/ops/led_dev.h
uspace/lib/drv/include/ops/nic.h
uspace/lib/drv/include/pci_dev_iface.h
uspace/lib/drv/include/usb_iface.h
uspace/lib/drv/include/usbhc_iface.h
uspace/lib/drv/include/usbhid_iface.h
uspace/lib/ext4/include/ext4/balloc.h
uspace/lib/ext4/include/ext4/bitmap.h
uspace/lib/ext4/include/ext4/directory.h
uspace/lib/ext4/include/ext4/directory_index.h
uspace/lib/ext4/include/ext4/extent.h
uspace/lib/ext4/include/ext4/filesystem.h
uspace/lib/ext4/include/ext4/hash.h
uspace/lib/ext4/include/ext4/ialloc.h
uspace/lib/ext4/include/ext4/inode.h
uspace/lib/ext4/include/ext4/ops.h
uspace/lib/ext4/include/ext4/superblock.h
uspace/lib/ext4/src/balloc.c
uspace/lib/ext4/src/bitmap.c
uspace/lib/ext4/src/directory.c
uspace/lib/ext4/src/directory_index.c
uspace/lib/ext4/src/extent.c
uspace/lib/ext4/src/filesystem.c
uspace/lib/ext4/src/hash.c
uspace/lib/ext4/src/ialloc.c
uspace/lib/ext4/src/inode.c
uspace/lib/ext4/src/ops.c
uspace/lib/ext4/src/superblock.c
uspace/lib/fdisk/include/fdisk.h
uspace/lib/fdisk/src/fdisk.c
uspace/lib/fmtutil/fmtutil.c
uspace/lib/fmtutil/fmtutil.h
uspace/lib/fs/libfs.c
uspace/lib/fs/libfs.h
uspace/lib/graph/graph.c
uspace/lib/graph/graph.h
uspace/lib/gui/button.c
uspace/lib/gui/label.c
uspace/lib/gui/terminal.c
uspace/lib/gui/window.c
uspace/lib/gui/window.h
uspace/lib/hound/include/hound/client.h
uspace/lib/hound/include/hound/protocol.h
uspace/lib/hound/include/hound/server.h
uspace/lib/hound/src/client.c
uspace/lib/hound/src/protocol.c
uspace/lib/http/include/http/http.h
uspace/lib/http/include/http/receive-buffer.h
uspace/lib/http/src/headers.c
uspace/lib/http/src/http.c
uspace/lib/http/src/receive-buffer.c
uspace/lib/http/src/request.c
uspace/lib/http/src/response.c
uspace/lib/ieee80211/include/ieee80211.h
uspace/lib/ieee80211/include/ieee80211_iface_impl.h
uspace/lib/ieee80211/include/ieee80211_impl.h
uspace/lib/ieee80211/include/ieee80211_private.h
uspace/lib/ieee80211/src/ieee80211.c
uspace/lib/ieee80211/src/ieee80211_iface_impl.c
uspace/lib/ieee80211/src/ieee80211_impl.c
uspace/lib/label/include/label/empty.h
uspace/lib/label/include/label/label.h
uspace/lib/label/include/types/liblabel.h
uspace/lib/label/src/dummy.c
uspace/lib/label/src/empty.c
uspace/lib/label/src/gpt.c
uspace/lib/label/src/label.c
uspace/lib/label/src/mbr.c
uspace/lib/label/test/label.c
uspace/lib/nettl/include/nettl/amap.h
uspace/lib/nettl/include/nettl/portrng.h
uspace/lib/nettl/src/amap.c
uspace/lib/nettl/src/portrng.c
uspace/lib/nic/include/nic.h
uspace/lib/nic/include/nic_addr_db.h
uspace/lib/nic/include/nic_ev.h
uspace/lib/nic/include/nic_impl.h
uspace/lib/nic/include/nic_rx_control.h
uspace/lib/nic/include/nic_wol_virtues.h
uspace/lib/nic/src/nic_addr_db.c
uspace/lib/nic/src/nic_driver.c
uspace/lib/nic/src/nic_ev.c
uspace/lib/nic/src/nic_impl.c
uspace/lib/nic/src/nic_rx_control.c
uspace/lib/nic/src/nic_wol_virtues.c
uspace/lib/pcm/include/pcm/format.h
uspace/lib/pcm/src/format.c
uspace/lib/pcut/include/pcut/asserts.h
uspace/lib/pcut/src/os/helenos.c
uspace/lib/pcut/tests/errno.c
uspace/lib/trackmod/protracker.c
uspace/lib/trackmod/protracker.h
uspace/lib/trackmod/trackmod.c
uspace/lib/trackmod/trackmod.h
uspace/lib/trackmod/xm.c
uspace/lib/trackmod/xm.h
uspace/lib/uri/uri.c
uspace/lib/uri/uri.h
uspace/lib/usb/include/usb/dev.h
uspace/lib/usb/src/dev.c
uspace/lib/usbdev/include/usb/dev/alternate_ifaces.h
uspace/lib/usbdev/include/usb/dev/device.h
uspace/lib/usbdev/include/usb/dev/driver.h
uspace/lib/usbdev/include/usb/dev/pipes.h
uspace/lib/usbdev/include/usb/dev/poll.h
uspace/lib/usbdev/include/usb/dev/recognise.h
uspace/lib/usbdev/include/usb/dev/request.h
uspace/lib/usbdev/src/altiface.c
uspace/lib/usbdev/src/devdrv.c
uspace/lib/usbdev/src/devpoll.c
uspace/lib/usbdev/src/driver.c
uspace/lib/usbdev/src/pipes.c
uspace/lib/usbdev/src/pipesinit.c
uspace/lib/usbdev/src/recognise.c
uspace/lib/usbdev/src/request.c
uspace/lib/usbhid/include/usb/hid/hiddescriptor.h
uspace/lib/usbhid/include/usb/hid/hidparser.h
uspace/lib/usbhid/include/usb/hid/hidpath.h
uspace/lib/usbhid/include/usb/hid/hidreport.h
uspace/lib/usbhid/include/usb/hid/request.h
uspace/lib/usbhid/src/hiddescriptor.c
uspace/lib/usbhid/src/hidparser.c
uspace/lib/usbhid/src/hidpath.c
uspace/lib/usbhid/src/hidreport.c
uspace/lib/usbhid/src/hidreq.c
uspace/lib/usbhost/include/usb/host/ddf_helpers.h
uspace/lib/usbhost/include/usb/host/hcd.h
uspace/lib/usbhost/include/usb/host/usb_bus.h
uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h
uspace/lib/usbhost/include/usb/host/utils/malloc32.h
uspace/lib/usbhost/src/ddf_helpers.c
uspace/lib/usbhost/src/hcd.c
uspace/lib/usbhost/src/usb_bus.c
uspace/lib/usbhost/src/usb_transfer_batch.c
uspace/lib/usbvirt/include/usbvirt/device.h
uspace/lib/usbvirt/include/usbvirt/ipc.h
uspace/lib/usbvirt/include/usbvirt/virthub_base.h
uspace/lib/usbvirt/src/ctrltransfer.c
uspace/lib/usbvirt/src/device.c
uspace/lib/usbvirt/src/ipc_dev.c
uspace/lib/usbvirt/src/ipc_hc.c
uspace/lib/usbvirt/src/private.h
uspace/lib/usbvirt/src/stdreq.c
uspace/lib/usbvirt/src/transfer.c
uspace/lib/usbvirt/src/virthub_base.c
uspace/srv/audio/hound/audio_data.c
uspace/srv/audio/hound/audio_data.h
uspace/srv/audio/hound/audio_device.c
uspace/srv/audio/hound/audio_device.h
uspace/srv/audio/hound/audio_sink.c
uspace/srv/audio/hound/audio_sink.h
uspace/srv/audio/hound/audio_source.c
uspace/srv/audio/hound/audio_source.h
uspace/srv/audio/hound/connection.c
uspace/srv/audio/hound/connection.h
uspace/srv/audio/hound/hound.c
uspace/srv/audio/hound/hound.h
uspace/srv/audio/hound/hound_ctx.c
uspace/srv/audio/hound/hound_ctx.h
uspace/srv/audio/hound/iface.c
uspace/srv/audio/hound/main.c
uspace/srv/bd/file_bd/file_bd.c
uspace/srv/bd/rd/rd.c
uspace/srv/bd/sata_bd/sata_bd.c
uspace/srv/bd/vbd/disk.c
uspace/srv/bd/vbd/disk.h
uspace/srv/bd/vbd/vbd.c
uspace/srv/clipboard/clipboard.c
uspace/srv/devman/client_conn.c
uspace/srv/devman/dev.c
uspace/srv/devman/dev.h
uspace/srv/devman/driver.c
uspace/srv/devman/driver.h
uspace/srv/devman/drv_conn.c
uspace/srv/devman/fun.c
uspace/srv/devman/fun.h
uspace/srv/devman/loc.c
uspace/srv/devman/loc.h
uspace/srv/devman/main.c
uspace/srv/devman/match.c
uspace/srv/fs/cdfs/cdfs.c
uspace/srv/fs/cdfs/cdfs_ops.c
uspace/srv/fs/exfat/exfat.c
uspace/srv/fs/exfat/exfat.h
uspace/srv/fs/exfat/exfat_bitmap.c
uspace/srv/fs/exfat/exfat_bitmap.h
uspace/srv/fs/exfat/exfat_directory.c
uspace/srv/fs/exfat/exfat_directory.h
uspace/srv/fs/exfat/exfat_fat.c
uspace/srv/fs/exfat/exfat_fat.h
uspace/srv/fs/exfat/exfat_idx.c
uspace/srv/fs/exfat/exfat_ops.c
uspace/srv/fs/ext4fs/ext4fs.c
uspace/srv/fs/fat/fat.c
uspace/srv/fs/fat/fat.h
uspace/srv/fs/fat/fat_directory.c
uspace/srv/fs/fat/fat_directory.h
uspace/srv/fs/fat/fat_fat.c
uspace/srv/fs/fat/fat_fat.h
uspace/srv/fs/fat/fat_idx.c
uspace/srv/fs/fat/fat_ops.c
uspace/srv/fs/locfs/locfs.c
uspace/srv/fs/locfs/locfs_ops.c
uspace/srv/fs/mfs/mfs.c
uspace/srv/fs/mfs/mfs.h
uspace/srv/fs/mfs/mfs_balloc.c
uspace/srv/fs/mfs/mfs_dentry.c
uspace/srv/fs/mfs/mfs_inode.c
uspace/srv/fs/mfs/mfs_ops.c
uspace/srv/fs/mfs/mfs_rw.c
uspace/srv/fs/tmpfs/tmpfs.c
uspace/srv/fs/tmpfs/tmpfs_dump.c
uspace/srv/fs/tmpfs/tmpfs_ops.c
uspace/srv/fs/udf/udf.c
uspace/srv/fs/udf/udf_file.c
uspace/srv/fs/udf/udf_file.h
uspace/srv/fs/udf/udf_idx.c
uspace/srv/fs/udf/udf_idx.h
uspace/srv/fs/udf/udf_ops.c
uspace/srv/fs/udf/udf_volume.c
uspace/srv/fs/udf/udf_volume.h
uspace/srv/hid/compositor/compositor.c
uspace/srv/hid/console/console.c
uspace/srv/hid/input/ctl/kbdev.c
uspace/srv/hid/input/ctl/stty.c
uspace/srv/hid/input/ctl/sun.c
uspace/srv/hid/input/input.c
uspace/srv/hid/input/kbd_ctl.h
uspace/srv/hid/input/kbd_port.h
uspace/srv/hid/input/layout.h
uspace/srv/hid/input/layout/ar.c
uspace/srv/hid/input/layout/cz.c
uspace/srv/hid/input/layout/us_dvorak.c
uspace/srv/hid/input/layout/us_qwerty.c
uspace/srv/hid/input/mouse_port.h
uspace/srv/hid/input/mouse_proto.h
uspace/srv/hid/input/port/chardev.c
uspace/srv/hid/input/proto/mousedev.c
uspace/srv/hid/isdv4_tablet/isdv4.c
uspace/srv/hid/isdv4_tablet/isdv4.h
uspace/srv/hid/isdv4_tablet/main.c
uspace/srv/hid/output/ctl/serial.c
uspace/srv/hid/output/ctl/serial.h
uspace/srv/hid/output/output.c
uspace/srv/hid/output/output.h
uspace/srv/hid/output/port/chardev.c
uspace/srv/hid/output/port/chardev.h
uspace/srv/hid/output/port/ega.c
uspace/srv/hid/output/port/ega.h
uspace/srv/hid/output/port/kfb.c
uspace/srv/hid/output/port/kfb.h
uspace/srv/hid/output/proto/vt100.c
uspace/srv/hid/output/proto/vt100.h
uspace/srv/hid/remcons/remcons.c
uspace/srv/hid/remcons/user.c
uspace/srv/hid/remcons/user.h
uspace/srv/hid/rfb/main.c
uspace/srv/hid/rfb/rfb.c
uspace/srv/hid/rfb/rfb.h
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
uspace/srv/hw/char/s3c24xx_uart/s3c24xx_uart.c
uspace/srv/klog/klog.c
uspace/srv/loader/main.c
uspace/srv/locsrv/category.c
uspace/srv/locsrv/category.h
uspace/srv/locsrv/locsrv.c
uspace/srv/logger/ctl.c
uspace/srv/logger/initlvl.c
uspace/srv/logger/level.c
uspace/srv/logger/logger.h
uspace/srv/logger/logs.c
uspace/srv/logger/main.c
uspace/srv/logger/writer.c
uspace/srv/net/dhcp/dhcp.c
uspace/srv/net/dhcp/dhcp.h
uspace/srv/net/dhcp/main.c
uspace/srv/net/dhcp/transport.c
uspace/srv/net/dhcp/transport.h
uspace/srv/net/dnsrsrv/dns_msg.c
uspace/srv/net/dnsrsrv/dns_msg.h
uspace/srv/net/dnsrsrv/dnsrsrv.c
uspace/srv/net/dnsrsrv/query.c
uspace/srv/net/dnsrsrv/query.h
uspace/srv/net/dnsrsrv/transport.c
uspace/srv/net/dnsrsrv/transport.h
uspace/srv/net/ethip/arp.c
uspace/srv/net/ethip/arp.h
uspace/srv/net/ethip/atrans.c
uspace/srv/net/ethip/atrans.h
uspace/srv/net/ethip/ethip.c
uspace/srv/net/ethip/ethip.h
uspace/srv/net/ethip/ethip_nic.c
uspace/srv/net/ethip/ethip_nic.h
uspace/srv/net/ethip/pdu.c
uspace/srv/net/ethip/pdu.h
uspace/srv/net/inetsrv/addrobj.c
uspace/srv/net/inetsrv/addrobj.h
uspace/srv/net/inetsrv/icmp.c
uspace/srv/net/inetsrv/icmp.h
uspace/srv/net/inetsrv/icmpv6.c
uspace/srv/net/inetsrv/icmpv6.h
uspace/srv/net/inetsrv/inet_link.c
uspace/srv/net/inetsrv/inet_link.h
uspace/srv/net/inetsrv/inetcfg.c
uspace/srv/net/inetsrv/inetping.c
uspace/srv/net/inetsrv/inetping.h
uspace/srv/net/inetsrv/inetsrv.c
uspace/srv/net/inetsrv/inetsrv.h
uspace/srv/net/inetsrv/ndp.c
uspace/srv/net/inetsrv/ndp.h
uspace/srv/net/inetsrv/ntrans.c
uspace/srv/net/inetsrv/ntrans.h
uspace/srv/net/inetsrv/pdu.c
uspace/srv/net/inetsrv/pdu.h
uspace/srv/net/inetsrv/reass.c
uspace/srv/net/inetsrv/reass.h
uspace/srv/net/inetsrv/sroute.c
uspace/srv/net/inetsrv/sroute.h
uspace/srv/net/loopip/loopip.c
uspace/srv/net/nconfsrv/iplink.c
uspace/srv/net/nconfsrv/iplink.h
uspace/srv/net/nconfsrv/nconfsrv.c
uspace/srv/net/slip/slip.c
uspace/srv/net/tcp/conn.c
uspace/srv/net/tcp/conn.h
uspace/srv/net/tcp/inet.c
uspace/srv/net/tcp/inet.h
uspace/srv/net/tcp/iqueue.c
uspace/srv/net/tcp/iqueue.h
uspace/srv/net/tcp/ncsim.c
uspace/srv/net/tcp/pdu.c
uspace/srv/net/tcp/pdu.h
uspace/srv/net/tcp/rqueue.c
uspace/srv/net/tcp/service.c
uspace/srv/net/tcp/service.h
uspace/srv/net/tcp/tcp.c
uspace/srv/net/tcp/test.c
uspace/srv/net/tcp/test/conn.c
uspace/srv/net/tcp/test/iqueue.c
uspace/srv/net/tcp/test/pdu.c
uspace/srv/net/tcp/test/rqueue.c
uspace/srv/net/tcp/test/tqueue.c
uspace/srv/net/tcp/test/ucall.c
uspace/srv/net/tcp/tqueue.c
uspace/srv/net/tcp/tqueue.h
uspace/srv/net/tcp/ucall.c
uspace/srv/net/udp/assoc.c
uspace/srv/net/udp/assoc.h
uspace/srv/net/udp/pdu.c
uspace/srv/net/udp/pdu.h
uspace/srv/net/udp/service.c
uspace/srv/net/udp/service.h
uspace/srv/net/udp/udp.c
uspace/srv/net/udp/udp_inet.c
uspace/srv/net/udp/udp_inet.h
uspace/srv/ns/clonable.c
uspace/srv/ns/clonable.h
uspace/srv/ns/ns.c
uspace/srv/ns/service.c
uspace/srv/ns/service.h
uspace/srv/ns/task.c
uspace/srv/ns/task.h
uspace/srv/taskmon/taskmon.c
uspace/srv/test/chardev-test/main.c
uspace/srv/vfs/vfs.c
uspace/srv/vfs/vfs.h
uspace/srv/vfs/vfs_file.c
uspace/srv/vfs/vfs_ipc.c
uspace/srv/vfs/vfs_lookup.c
uspace/srv/vfs/vfs_node.c
uspace/srv/vfs/vfs_ops.c
uspace/srv/vfs/vfs_pager.c
uspace/srv/vfs/vfs_register.c
uspace/srv/volsrv/empty.c
uspace/srv/volsrv/empty.h
uspace/srv/volsrv/mkfs.c
uspace/srv/volsrv/mkfs.h
uspace/srv/volsrv/part.c
uspace/srv/volsrv/part.h
uspace/srv/volsrv/volsrv.c