1config BR2_PACKAGE_LATENCYTOP 2 bool "latencytop" 3 depends on BR2_USE_WCHAR # libglib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 5 depends on BR2_USE_MMU # libglib2 6 select BR2_PACKAGE_NCURSES 7 select BR2_PACKAGE_LIBGLIB2 8 help 9 There are many types and causes of latency. LatencyTOP 10 focuses on the type of latency that causes skips in audio, 11 stutters in your desktop experience or that overloads your 12 server (while you have plenty of CPU power left). 13 14 LatencyTOP focuses on the cases where the applications want 15 to run and execute useful code, but there's some resource 16 that's not currently available (and the kernel then blocks 17 the process). This is done both on a system level and on a 18 per process level, so that you can see what's happening to 19 the system, and which process is suffering and/or causing 20 the delays. 21 22 http://www.latencytop.org 23 24comment "latencytop needs a toolchain w/ wchar, threads" 25 depends on BR2_USE_MMU 26 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 27