genode/ports/src/noux/net
Josef Söntgen 837f913094 Noux: more useful gettimeofday() implementation
There are certain programs that need gettimeofday(), e.g.
network-related tools like ping(1) etc. but also filesystem-related
programs like find(1) etc. and of course time-related programs like
date(1).

As there is currently no interface in Genode for actually using clock
devices like RTC on x86 (though there is a driver for it) we "abuse"
the timeout_scheduler thread to at least provide flow-of-time.

Noux: add clock_gettime() implementation

For now, only CLOCK_SECOND is supported.

Noux: add utimes() dummy

Fixes #401
2012-10-24 11:34:39 +02:00
..
net.cc Noux: more useful gettimeofday() implementation 2012-10-24 11:34:39 +02:00
README Initial version of networking support for Noux 2012-05-29 13:54:59 +02:00
socket_descriptor_registry.h Noux/net: add reset_all() method to sd registry 2012-08-22 09:51:30 +02:00
socket_io_channel.h Add support for symbolic links 2012-10-08 15:05:02 +02:00
target.mk Move 'Child' API implementation to library 2012-10-09 13:45:33 +02:00

This directory contains the implementation of network related stuff for noux.

Currently network support is provided by using the libc and lwip directly
(only for initialization of the actual network subsystem).