124 Embedded Linux System Design and Development
BOA: An embedded single-tasking http server available from http://www.
boa.org/
mini_httpd: A small Web server meant for low and medium Web traffic.
It can be downloaded from http://www.acme.com/
GoAhead: It is a popular open source Web server meant for embedded
systems and can be downloaded from http://www.goahead.com
4.10 Tuning Kernel Memory
This section explains techniques to reduce memory usage by the kernel. The
Linux kernel does not participate in paging and hence the entire kernel (code,
data, and stack) always resides in main memory. Before going into the
optimization techniques, let us understand how to estimate the memory utilized
by the kernel. You can find the static memory that will be ...