Differences between revisions 2 and 5 (spanning 3 versions)
Revision 2 as of 2018-02-26 17:18:24
Size: 892
Editor: eSyr
Comment:
Revision 5 as of 2020-02-04 22:14:47
Size: 826
Editor: DmitryLevin
Comment: fix typo
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
strace is a diagnostic, debugging and instructional userspace tracer for Linux. It is used to monitor and tamper interactions between userspace processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. The operation of strace is made possible by the kernel feature known as [[http://man7.org/linux/man-pages/man2/ptrace.2.html|ptrace]]. `strace` is a diagnostic, debugging and instructional userspace tracer for Linux. It is used to monitor and tamper interactions between userspace processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. The operation of `strace` is made possible by the kernel feature known as [[http://man7.org/linux/man-pages/man2/ptrace.2.html|ptrace]].
Line 8: Line 8:
strace participates in the [[GoogleSummerOfCode2018|Google Summer Of Code 2018]],
participated in the [[GoogleSummerOfCode2017|Google Summer Of Code 2017]],
the [[GoogleSummerOfCode2016|Google Summer Of Code 2016]],
the [[GoogleSummerOfCode2015|Google Summer Of Code 2015]],
and the [[GoogleSummerOfCode2014|Google Summer Of Code 2014]].
`strace` participated in the Google Summer Of Code in the years
[[GoogleSummerOfCode2019|2019]],
[[GoogleSummerOfCode2018|2018]],
[[GoogleSummerOfCode2017|2017]],
[[GoogleSummerOfCode2016|2016]],
[[GoogleSummerOfCode2015|2015]],
and [[GoogleSummerOfCode2014|2014]].

strace is a diagnostic, debugging and instructional userspace tracer for Linux. It is used to monitor and tamper interactions between userspace processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. The operation of strace is made possible by the kernel feature known as ptrace.

Want to get involved? Check out the Guide for new contributors.

The current maintainer is Dmitry Levin.


strace participated in the Google Summer Of Code in the years 2019, 2018, 2017, 2016, 2015, and 2014.

Home (last edited 2023-02-13 15:52:00 by DmitryLevin)