1. f88837a Do post-attach initialization earlier; fix "we ignore SIGSTOP on NOMMU" bug by Denys Vlasenko · 13 years ago
  2. d116a73 Get rid of TCB_ATTACH_DONE by Denys Vlasenko · 13 years ago
  3. 381dbc2 Set TCB_STARTUP only _after_ we attached. by Denys Vlasenko · 13 years ago
  4. 6cda73f Simple optimizations in trace() by Denys Vlasenko · 13 years ago
  5. 014ca3a Trivial fixes on error paths by Denys Vlasenko · 13 years ago
  6. ab034fb Reformat setuid-ing code in startup_child() by Denys Vlasenko · 13 years ago
  7. 2e968c0 Minor tweaks in startup_child(). Logic isn't changed (but code is) by Denys Vlasenko · 13 years ago
  8. 60fe8c1 Use tprints with literal strings, it may be faster than tprintf by Denys Vlasenko · 13 years ago
  9. 5940e65 Fix "format not a string literal" warning caused by tprintf(str) by Denys Vlasenko · 13 years ago
  10. 1d46ba5 Make out-of-memory handling more uniform by Denys Vlasenko · 13 years ago
  11. a673f3f Do not include <limits.h> by Dmitry V. Levin · 13 years ago
  12. 102ec49 Optimize tabto() by Denys Vlasenko · 13 years ago
  13. 06602d9 Rename some functions, delete unused one. No code changes by Denys Vlasenko · 13 years ago
  14. 9a36ae5 get_scno is an unholy mess, make it less horrible by Denys Vlasenko · 13 years ago
  15. b88f961 Straighten up confused comments/messages about post-execve SIGTRAP handling by Denys Vlasenko · 13 years ago
  16. 2ecba32 Optimize out dummy PC printing on signal delivery by Denys Vlasenko · 13 years ago
  17. 0890c8a Cosmetic improvement in ifdefs. No code changes by Denys Vlasenko · 13 years ago
  18. 8dc0c8c Exclude tcp->pfd from non-procfs systems by Denys Vlasenko · 13 years ago
  19. cfd364b Small optimizations related to memory allocation by Denys Vlasenko · 13 years ago
  20. 5d64581 Improve code readability by avoiding assignments inside if() by Denys Vlasenko · 13 years ago
  21. 04f8b48 Fix PTRACE_SETOPTIONS tests by Dmitry V. Levin · 13 years ago
  22. 44f87ef Remove tcp->parent and TCB_CLONE_THREAD. by Denys Vlasenko · 13 years ago
  23. 833fb13 Remove TCB_SUSPENDED constant and related code. by Denys Vlasenko · 13 years ago
  24. 19cdada Do not detach when we think tracee is going to die. by Denys Vlasenko · 13 years ago
  25. 26d1b1e Slight optimization and cleanup in trace() by Denys Vlasenko · 13 years ago
  26. 5bd67c8 Fix compilation on 2.4.20 kernel based system by Denys Vlasenko · 13 years ago
  27. 13d22f1 Trivial cleanups by Denys Vlasenko · 13 years ago
  28. e18314e Remove redundant include <stdarg.h> by Denys Vlasenko · 13 years ago
  29. 178de00 Clean up two old comments by Denys Vlasenko · 13 years ago
  30. ead73bd Make a few variables static. by Denys Vlasenko · 13 years ago
  31. f95397a Add debug output in initial attachment code by Denys Vlasenko · 13 years ago
  32. 1d5f12e Better debug logging of allocations and waitpit results by Denys Vlasenko · 13 years ago
  33. 65d7c4d Remove TCB_FOLLOWFORK by Denys Vlasenko · 13 years ago
  34. 4f12af2 Make initial tcb allocation more readable. No logic changes. by Denys Vlasenko · 13 years ago
  35. cb2ad00 Use [p]error_msg[_and_die] where appropriate. No logic changes. by Denys Vlasenko · 13 years ago
  36. 7b609d5 Whitespace cleanups. No code changes. by Denys Vlasenko · 13 years ago
  37. 3d5ed41 Make strace_fopen abort on error by Denys Vlasenko · 13 years ago
  38. 1f532ab Make set_cloexec_flag abort on error by Denys Vlasenko · 13 years ago
  39. 7dd2338 Make strace_popen abort on error by Denys Vlasenko · 13 years ago
  40. 2b60c35 Delete fork_tcb() by Denys Vlasenko · 13 years ago
  41. 18da273 Simplify expand_tcbtab and alloc_tcb by Denys Vlasenko · 13 years ago
  42. b56d6d3 Remove write-only nchildren member from struct tcb by Denys Vlasenko · 13 years ago
  43. f0a5f6d Remove write-only nzombies member from struct tcb by Denys Vlasenko · 13 years ago
  44. f44cce4 Fix regression introduced by "Properly handle real SIGTRAPs" change by Denys Vlasenko · 13 years ago
  45. 0df9ed4 Do not suspend waitpid. by Denys Vlasenko · 13 years ago
  46. 44d0532 * strace.c (verror_msg): Rewrite without use of heap memory allocation by Dmitry V. Levin · 13 years ago
  47. e62df00 Print at least one space between SYSCALL(ARGS) and = RESULT if tracee is killed by Denys Vlasenko · 13 years ago
  48. b63256e Whitespace cleanups. no code changes. by Denys Vlasenko · 13 years ago
  49. 1201426 "Modernize" all old-style function parameter declarations by Denys Vlasenko · 13 years ago
  50. 7542276 Cleanups on top of "handle SIGTRAP properly" change, based on Dmitry's comments. by Denys Vlasenko · 13 years ago
  51. 35aba6a Identifier "errno" may be a macro, it's unsafe to use it by Denys Vlasenko · 13 years ago
  52. f8bc065 Don't perform TCB_WAITEXECVE wait if not needed. by Denys Vlasenko · 13 years ago
  53. 3454e4b Properly handle real SIGTRAPs. by Denys Vlasenko · 13 years ago
  54. 8a08277 Add ability to print file descriptor paths and filter by those paths by Grant Edwards · 13 years ago
  55. 6b7a261 Show more details about signals received by traced processess by Dmitry V. Levin · 13 years ago
  56. c15dfc7 Get rid of PT_GETSIGINFO by Dmitry V. Levin · 13 years ago
  57. 2fabd0e Fix PTRACE_GETEVENTMSG usage and enhance test_ptrace_setoptions() by Dmitry V. Levin · 13 years ago
  58. 21ccf5e Test PTRACE_O_TRACECLONE and PTRACE_O_TRACEVFORK along with PTRACE_O_TRACEFORK by Dmitry V. Levin · 13 years ago
  59. 8044bc1 Fix strace -f -o '|command' hangup by Dmitry V. Levin · 14 years ago
  60. b146744 Cleanup test_ptrace_setoptions() by Dmitry V. Levin · 14 years ago
  61. ca8ab8d Handle followfork using ptrace_setoptions if available by Wang Chao · 14 years ago
  62. b13c0de Test how PTRACE_SETOPTIONS support works by Wang Chao · 14 years ago
  63. 54e931f Clean up pid2tcb usage by Roland McGrath · 14 years ago
  64. 30145dd Fix const-correctness issues uncovered by gcc -Wwrite-strings by Dmitry V. Levin · 14 years ago
  65. 21b8db4 Drop nclone_detached and related flags by Wang Chao · 14 years ago
  66. d322a4b Forbid using mutually exclusive options -D and -p together by Wang Chao · 14 years ago
  67. 372cc84 Balance braces by Andreas Schwab · 14 years ago
  68. b87d30c Document -C/-D by Andreas Schwab · 14 years ago
  69. e3a7ef5 Implement -C option to combine regular and -c output by Dmitry V. Levin · 14 years ago
  70. e5e6085 Remove dead code by Dmitry V. Levin · 14 years ago
  71. 840d85b Don't kill the process when detaching by Andreas Schwab · 14 years ago
  72. e5355de Remove support for pre-C89 by Andreas Schwab · 15 years ago
  73. ccdff48 Maintain separate print column for each process by Andreas Schwab · 15 years ago
  74. c1a5b7e Add support for Linux/no-mmu with vfork by Mike Frysinger · 15 years ago
  75. eb9e2e8 Revert unapproved commits. by Roland McGrath · 15 years ago
  76. 4ac9d62 * strace.c (handle_stopped_tcbs): Fix cast for 4th argument passed to ptrace(). by Dmitry V. Levin · 15 years ago
  77. 246f42f * strace.c (collect_stopped_tcbs): Do not enable/disable signals by Denys Vlasenko · 15 years ago
  78. 1e20921 As it turned out, "if (interrupted) break;" is needed in both loops, by Denys Vlasenko · 15 years ago
  79. aab52ca Remove "better attach to SIGSTOP", it is not correct... (^C fix remains). by Denys Vlasenko · 15 years ago
  80. 222713a * strace.c (startup_attach): Take care to correctly attach by Denys Vlasenko · 15 years ago
  81. 5ae2b7c AVR32 support by Hans-Christian Egtvedt by Denys Vlasenko · 15 years ago
  82. 8ed5727 By Hans-Christian Egtvedt (hans-christian.egtvedt AT atmel.com): by Denys Vlasenko · 15 years ago
  83. 4dedd56 Replace many more bare ptrace calls with calls to wrappers by Denys Vlasenko · 15 years ago
  84. 84e20af Cleanup after tcb table expansion simplification. by Denys Vlasenko · 15 years ago
  85. 3bb7cd6 * defs.h: Correct the comment about TCB_SUSPENDED. by Denys Vlasenko · 15 years ago
  86. 7a8bf06 * strace.c (newoutf): Prevent -o FILENAME overflowing the stack. by Denys Vlasenko · 15 years ago
  87. 7e0615f * process.c (internal_clone): Check and complain if pid value by Denys Vlasenko · 15 years ago
  88. 47ce6df * strace.c (collect_stopped_tcbs): Guard against the case when by Denys Vlasenko · 15 years ago
  89. 2c8a258 * strace.c (collect_stopped_tcbs): Do not return NULL when ECHILD by Denys Vlasenko · 15 years ago
  90. 418d66a Two cleanups: tcb table expansion failure is not really a survivable by Denys Vlasenko · 15 years ago
  91. 1d5b113 * defs.h: Update a comment. No code changes. by Denys Vlasenko · 15 years ago
  92. f9a7e63 * process.c: Add a comment. No code changes. by Denys Vlasenko · 15 years ago
  93. f535b54 Fixes for ptrace() argument parsing. by Denys Vlasenko · 15 years ago
  94. 215cc27 * defs.h: Add new struct tcb fields: wait_status, next_need_service. by Denys Vlasenko · 15 years ago
  95. ef2fbf8 Output format fixes, improving the situation after recent by Denys Vlasenko · 15 years ago
  96. 0861ecb * strace.c: Fix compile failure: on some systems PTRACE_O_xxx by Denys Vlasenko · 15 years ago
  97. ecfe2f1 Experimental support for -D option. by Denys Vlasenko · 15 years ago
  98. 96d5a76 * defs.h: Remove sigtrap80 field from struct tcb. by Denys Vlasenko · 15 years ago
  99. b1efe53 Fix build breakage from my previous commit. by Denys Vlasenko · 15 years ago
  100. 1e3ce32 Make strace correctly handle SIGTRAP produced by e.g. by Denys Vlasenko · 15 years ago