Skip to content

Commit 6c0887f

Browse files
authored
Merge pull request #10 from Simple-Robotics/topic/stack-size
Add stack size extraction
2 parents 108d49b + 0bfeb86 commit 6c0887f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,3 +328,16 @@ Then, when running CMake **for the first time** use the following command:
328328
```bash
329329
CC=clang CXX=clang++ cmake ..
330330
```
331+
## Get stack size
332+
333+
The stack of a program is limited in memory space available. One way to get this value is to run in your favorite terminal:
334+
335+
```bash
336+
ulimit -s
337+
```
338+
339+
More information on the current configuration can be obtained via:
340+
341+
```bash
342+
ulimit -a
343+
```

0 commit comments

Comments
 (0)