The readme states
Developer activities and documentation are centralized in http://nanos.ac.upc.edu
This page seems to be offline.
The reason I am looking for more detailed documentation is the following paragraph, also from the readme:
Some benchmarks are coded following a recursive model which makes an intensive use of stack
frames. It is usually needed to increase default stack sizes when working with high recursion
levels. Main stack size can be increased using ulimit -s' linux command. Thread stacks are usually controlled through runtime specific environment variable (e.g. Intel C Compiler uses KMP_STACKSIZE=value' for this purpose).
I am experiencing this problem for the uts kernel. It segfaults unless I increase the main stack size. What I am wondering is whether there are any estimates as to how large the main stack and thread stacks need to be for a given input size.
The readme states
The reason I am looking for more detailed documentation is the following paragraph, also from the readme:
I am experiencing this problem for the uts kernel. It segfaults unless I increase the main stack size. What I am wondering is whether there are any estimates as to how large the main stack and thread stacks need to be for a given input size.