1. 5647cf8 Use macros for gcc attributes by Dmitry V. Levin · 9 years ago
  2. 364728d Move the comment about termination logic where it belongs by Denys Vlasenko · 9 years ago
  3. 4bb2ffd startup_tcb() never fails, remove code which checks for failures by Denys Vlasenko · 9 years ago
  4. 8497b62 Show the syscall name in "resuming interrupted call" message by Denys Vlasenko · 9 years ago
  5. 1dbd39e Fix stack buffer overflow when specified command is too long by Dmitry V. Levin · 9 years ago
  6. 23ce9e4 Remove support for systems without PTRACE_SETOPTIONS by Dmitry V. Levin · 9 years ago
  7. 0f4ad30 Fix build with old kernel headers by Dmitry V. Levin · 9 years ago
  8. e9bfff6 Do not reset get_regs_error unnecessarily by Dmitry V. Levin · 9 years ago
  9. 5503dd2 Move regs-related macros and declarations from defs.h to regs.h by Dmitry V. Levin · 9 years ago
  10. fadf379 Move all ptrace-related macros and declarations from defs.h to ptrace.h by Dmitry V. Levin · 9 years ago
  11. 2cd488b When the process stared by strace exits/terminates, forget its pid by Dmitry V. Levin · 9 years ago
  12. aa80192 -b execve: avoid misleading warning about unknown pid by Dmitry V. Levin · 9 years ago
  13. e690813 -b execve: do not use struct tcb after detach by Dmitry V. Levin · 9 years ago
  14. 4b4ec12 trace: split into several functions by Dmitry V. Levin · 9 years ago
  15. 025b358 Replace MAXPATHLEN with PATH_MAX by Dmitry V. Levin · 9 years ago
  16. 2f6510c Add -yy option: print ip and port associated with socket descriptors by Dmitry V. Levin · 10 years ago
  17. 3ed5d02 Fix compilation warnings reported by gcc -Wsign-compare by Dmitry V. Levin · 10 years ago
  18. 45e7b18 Prepare for -yy option support by Dmitry V. Levin · 10 years ago
  19. 2734a70 Document -k option as experimental by Dmitry V. Levin · 10 years ago
  20. 2727aae Warn about flags that have no effect with -c by Dmitry V. Levin · 10 years ago
  21. 2b09df9 unwind: call unwind_tcb_fin before printing detached message by Masatake YAMATO · 10 years ago
  22. 6141392 unwind: give all exported functions "unwind_" prefix by Masatake YAMATO · 10 years ago
  23. 7721499 unwind: delete mmap cache in free_libunwind_ui by Masatake YAMATO · 10 years ago
  24. 327064b Add -k option to print stack trace after each syscall by Luca Clementi · 11 years ago
  25. e53bf23 Optionally produce stats on syscall latency by Mark Hills · 10 years ago
  26. 329fa39 Make int3 example in comments more cut-n-pastable by Denys Vlasenko · 10 years ago
  27. d354130 Fix build with Bionic libc by Dmitry V. Levin · 10 years ago
  28. 0506f0f Stop using _LFS64_LARGEFILE by Dmitry V. Levin · 11 years ago
  29. a34dead powerpc: fix iflag build issue (static -> extern) by Anton Blanchard · 11 years ago
  30. c169d94 PTRACE_SEIZE can set ptrace options immediately, use this feature by Denys Vlasenko · 11 years ago
  31. 7c41ce2 If -o|logger is in use, exit trace loop if nprocs == 0. by Denys Vlasenko · 11 years ago
  32. d2e1f42 Exit trace loop if got ECHILD, not if nprocs == 0. by Denys Vlasenko · 11 years ago
  33. 6162a3f Add paranoia check before passing a long to pid2tcb(int pid) by Denys Vlasenko · 11 years ago
  34. 38eab5d In debug output, show waitpid status with 6 hex digits, not 4 by Denys Vlasenko · 11 years ago
  35. 519af5a Replace suspicious popen_pid assignment with an obviously correct one by Denys Vlasenko · 11 years ago
  36. d0ffdf4 Convert trace() from returning int to returning void by Denys Vlasenko · 11 years ago
  37. 5a2483b Remove ia64-specific printing of current address on signal delivery by Denys Vlasenko · 11 years ago
  38. 752e5a0 Change upeek() to take pid, not full tcp. by Denys Vlasenko · 11 years ago
  39. c8511f0 In -f mode, do not assume that new pid is stopped - handle exits too by Denys Vlasenko · 11 years ago
  40. e8681c9 Set strace_child only in the right branch by Denys Vlasenko · 11 years ago
  41. fadbf66 Get rid of TCB_INUSE and TCB_STRACE_CHILD by Denys Vlasenko · 11 years ago
  42. 1b2bfbc Fix debug output of wait4 result (was reusing buf[] on unknown events) by Denys Vlasenko · 11 years ago
  43. 4e020c0 Show PTRACE_EVENT_STOP correctly in debug output by Denys Vlasenko · 11 years ago
  44. 71d3d29 Panic a bit less when we see an unknown pid by Denys Vlasenko · 11 years ago
  45. e2567d5 detach(): Reorganize code. Logic is the same. by Denys Vlasenko · 11 years ago
  46. a2de9da Eat pending SIGSTOP _before_ PTRACE_DETACH in detach() by Denys Vlasenko · 11 years ago
  47. fdfa47a detach(): warn if we see ECHILD from waitpid by Denys Vlasenko · 11 years ago
  48. 4a9ba98 Improve error messages in detach() by Denys Vlasenko · 11 years ago
  49. 725dd42 Remove workarounds for ancient kernels lacking __WALL by Denys Vlasenko · 11 years ago
  50. 69e27ef USE_SEIZE: fix detaching from stopped processes by Denys Vlasenko · 11 years ago
  51. f1669e7 Cleanups. No logic changes. by Denys Vlasenko · 11 years ago
  52. e8ff4c6 Do not suppress signal delivery messages with -qq by Dmitry V. Levin · 11 years ago
  53. 1d2435b NOMMU: do not hide startup syscalls unless in -D mode by Dmitry V. Levin · 11 years ago
  54. 882478a Make -D mode work when the Yama LSM is enabled by Dmitry V. Levin · 11 years ago
  55. 2a3d275 Hide startup syscalls. by Denys Vlasenko · 11 years ago
  56. 01997cf Allow -q to be repeated for very quiet output by Daniel P. Berrange · 11 years ago
  57. c8938e0 Use 64-bit versions of stat, readdir and setrlimit functions when available by Dmitry V. Levin · 11 years ago
  58. 38cfe7c Remove variable tracing_paths and check in pathtrace_match by Denys Vlasenko · 11 years ago
  59. 7239dbc Use dynamically-sized selected[] array for -P PATH by Denys Vlasenko · 11 years ago
  60. 22efaf0 Make -b take SYSCALL param, document it in --help and in manpage. by Denys Vlasenko · 11 years ago
  61. 905e8e0 Mass replace error_msg("%s", "literal") -> error_msg("literal") by Denys Vlasenko · 11 years ago
  62. 05f3251 Assorted NOMMU fixes by Denys Vlasenko · 11 years ago
  63. 38e79bb Shorten help text - no need to show deprecated option -F by Denys Vlasenko · 11 years ago
  64. a9fe13c Create and use struct_sysent and struct_ioctlent typedefs. by Denys Vlasenko · 11 years ago
  65. 74ec14f Eliminate many SCNO_IS_VALID checks by Denys Vlasenko · 11 years ago
  66. f909c8d Fix NOMMU + daemonized tracer SEGV by Denys Vlasenko · 11 years ago
  67. 5c9d8f4 Make it possible to to do test builds for NOMMU architectures by Denys Vlasenko · 11 years ago
  68. eec8d5d [X86] Use ptrace(PTRACE_GETREGSET, NT_PRSTATUS) to get registers. by Denys Vlasenko · 11 years ago
  69. 8d4ca0c Shortcut tests for fork/exec syscalls by Denys Vlasenko · 11 years ago
  70. ce7d953 Optimize out PTRACE_PEEKUSER with -i by Denys Vlasenko · 11 years ago
  71. 9a71bcd Use perror_msg instead of perror by Dmitry V. Levin · 12 years ago
  72. 978fbc9 Trivial fixes, no code changes. by Denys Vlasenko · 12 years ago
  73. 508279c Always check setreuid return code by Dmitry V. Levin · 12 years ago
  74. cf53436 Close pipe and wait for the pipe process termination by Dmitry V. Levin · 12 years ago
  75. 26bc060 Enable usage of PTRACE_SEIZE by Denys Vlasenko · 12 years ago
  76. c59b3f1 Remove outdated comment about suspending new tracees by Denys Vlasenko · 12 years ago
  77. 0dbc80d Fix kernel release string parsing by Dmitry V. Levin · 12 years ago
  78. 6e4f3c1 Add custom (faster) vfprintf implementation (disabled by default) by Denys Vlasenko · 12 years ago
  79. 142aee0 Trivial speed optimization by Denys Vlasenko · 12 years ago
  80. 7ff5ed9 Fix indefinite hang on no-mmu systems by Mike Frysinger · 12 years ago
  81. df79013 Remove unreachable code by Denys Vlasenko · 12 years ago
  82. c5ccfa4 Tweak help text and manpage (added -In to manpage) by Denys Vlasenko · 12 years ago
  83. ccee169 Robustify parsing of numbers from strings by Dmitry V. Levin · 12 years ago
  84. 6764f8f Simplify current tcp switching and current column handling by Denys Vlasenko · 12 years ago
  85. 8511f2a Make threaded execve handling code more reabable and somewhat simpler by Denys Vlasenko · 12 years ago
  86. b5e0908 Show "+++ exited..." with -C by Denys Vlasenko · 12 years ago
  87. a44f969 Replace reprinting decision logic by Denys Vlasenko · 12 years ago
  88. 2350675 Report some ptrace failures; nuke tcp->ptrace_errno by Denys Vlasenko · 12 years ago
  89. 852f98a Make ptrace_restart() static. No code changes by Denys Vlasenko · 12 years ago
  90. 3e3490a Indentation and whitespace fixes. No code changes. by Denys Vlasenko · 12 years ago
  91. 9c3861d Remove another "interrupt to quit" message by Denys Vlasenko · 12 years ago
  92. 3db3b26 Fix "strace -oFILE -ff -p<nonexistant_pid>" behavior by Denys Vlasenko · 12 years ago
  93. 800ec8f Make alloc_tcb and droptcb static. No code changes. by Denys Vlasenko · 12 years ago
  94. a6d91de Tidy up includes and copyright notices, fix indentation by Denys Vlasenko · 12 years ago
  95. a509054 Simplify SIGCHLD handler setting by Denys Vlasenko · 12 years ago
  96. 2c4fb90 When reporting signals, use short signal names (SIGfoo) instead of strerror by Denys Vlasenko · 12 years ago
  97. 6e0bfd1 Fix lame kernel version checking code by Denys Vlasenko · 12 years ago
  98. 61e7aad Experimental support for "detach on execve" feature by Denys Vlasenko · 12 years ago
  99. 3e084ac Simple fixes. by Denys Vlasenko · 12 years ago
  100. bcde70a Remove extra include directives. No code changes. by Denys Vlasenko · 12 years ago