meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| sw:yocto:bitbake:issues:add_watch [2022/11/01 16:34] – niziak | sw:yocto:bitbake:issues:add_watch [2022/11/13 16:40] (current) – niziak | ||
|---|---|---|---|
| Line 12: | Line 12: | ||
| Solution is to increase '' | Solution is to increase '' | ||
| <code bash> | <code bash> | ||
| + | or even higher values. | ||
| + | |||
| + | How to monitor used watches: | ||
| + | <code bash> | ||
| + | find /proc/*/fd -lname anon_inode: | ||
| + | cut -d/ -f3 | | ||
| + | xargs -I ' | ||
| + | uniq -c | | ||
| + | sort -nr | ||
| + | </ | ||
| + | from [[https:// | ||