Results 1 - 7 of 7
Car Linux Object (CarLinO) is a framework, written in C++, for launch and control all others processes in the automotive embedded systems. Moreover CarLinO provides a graphic support based on OpenGL for the applications.
GNU profiler, gprof, was written by Jay Fenlason. You can use it to determine which parts of a program are taking most of the execution time. It enables your ability to spot bugs that had otherwise been unnoticed.
strace is a system call tracer, i.e. a debugging tool which prints out a trace of all the system calls made by a another process/program.
LTT stands for Linux Trace Toolkit. It is a full-feature tracing system for the Linux kernel. It includes both the kernel components required for tracing and the user-level tools required to view the traces.
KGDB is a source level debugger for Linux kernel. It is used along with gdb to debug Linux kernel. Using KGDB, kernel developers can debug a kernel similar to application programs. KGDB is a kernel patch. It is available for i386, x86_64, ppc and s390 architectures.
Gcov is a test coverage tool. You can use it with GNU CC to analyze your programs in order to make the programs more efficient. You can use gcov as a profiling tool.
Dprobes is the short for Dynamic Probes. As a Linux debugging facility, Dprobe will operate under the most extreme software conditions. By the technique of debugging in both kernel and user space, the users are able to insert "probes" in running programs.