summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Handle bug #6500 fallout.David Smith2008-05-284-66/+152
| | | | | | | | | | | | | | | | | | | | | | | 2008-05-28 David Smith <dsmith@redhat.com> * tapsets.cxx (utrace_derived_probe_group::emit_probe_decl): Instead of adding clone handlers, just call the probes directly. (utrace_derived_probe_group::emit_module_decls): For syscall probes, on exec detach the parent's utrace engine from the child. 2008-05-28 David Smith <dsmith@redhat.com> * task_finder.c (__stp_utrace_attach_match_filename): Added register_p parameter, which is passed on to the callback. Only adds death notification if register_p is 1. If register_p is 0, removes death notification. (__stp_utrace_attach_match_tsk): Moved code from __stp_utrace_task_finder_report_clone that handles the details of grabbing a task's path. (__stp_utrace_task_finder_report_clone): Calls new __stp_utrace_attach_match_tsk(). (__stp_utrace_task_finder_report_exec): Notifies upper layer that it might need to detach from newly exec'ed process.`
* Minor improvement to multi-threaded support.David Smith2008-05-284-10/+44
| | | | | | | | | | | | | | | | | | | 2008-05-21 David Smith <dsmith@redhat.com> * tapsets.cxx (utrace_derived_probe_group::emit_module_decls): Added new 'event_flag' parameter to task_finder callback. Only calls probe handlers if we received the correct event. 2008-05-21 David Smith <dsmith@redhat.com> * task_finder.c (__stp_utrace_attach_match_filename): Added event_flag parameter of event to pass to callback. (__stp_utrace_task_finder_target_death): Ditto. (__stp_utrace_task_finder_report_clone): Calls __stp_utrace_attach_match_filename() with new argument. (__stp_utrace_task_finder_report_exec): Ditto. (stap_start_task_finder): Calls callback with an invalid event_flag since this callback call isn't related to an event.
* Merge branch 'master' of ssh://sources.redhat.com/git/systemtapFrank Ch. Eigler2008-05-2810-44/+136
|\ | | | | | | | | | | | | * 'master' of ssh://sources.redhat.com/git/systemtap: Create user based cache dir in testsuite. Refresh cscope.files. Add prototypes for using the 2.6.26 probe_kernel_* functions.
| * Create user based cache dir in testsuite.Mark Wielaard2008-05-284-5/+16
| |
| * Refresh cscope.files.Josh Stone2008-05-271-1/+1
| |
| * Add prototypes for using the 2.6.26 probe_kernel_* functions.Josh Stone2008-05-275-38/+120
| | | | | | | | | | | | | | | | | | For now, the autoconf for the new code is disabled, because it shows poorer performance than our existing dereferencing functions. This is probably because ours get inlined and optimized. The code is being committed so that we may re-evaluate its usefulness in the future. This addresses bugzilla 6432.
* | Revert "testsuite: use catch{close}catch{wait} to ensure child process ↵Frank Ch. Eigler2008-05-2846-70/+82
|/ | | | | | pipe/zombie cleanup" This reverts commit 7938bd829dfd82c40b35d536b5913e666c1454d2.
* normalize test case PASS messageFrank Ch. Eigler2008-05-271-1/+1
|
* testsuite: use catch{close}catch{wait} to ensure child process pipe/zombie ↵Frank Ch. Eigler2008-05-2746-82/+70
| | | | cleanup
* Fix regparm() on i686 & x86_64.Josh Stone2008-05-272-4/+4
| | | | | It doesn't seem that regparm() is actually used, but I saw compilation errors when I compiled with -u.
* stmtvars.exp regexp tweakFrank Ch. Eigler2008-05-262-6/+9
|
* Only include fdtable.h for kernel versions > 2.6.25.Mark Wielaard2008-05-262-0/+5
|
* Include fdtable.h in task.stp for 2.6.26 and format signal.stpwenji2008-05-263-6/+11
|
* Correct signal.stp for 2.6.26wenji2008-05-262-5/+22
|
* Merge branch 'master' of ssh://wenji@sources.redhat.com/git/systemtapwenji2008-05-260-0/+0
|\
| * PR6550: add comment justifying "execrc"Frank Ch. Eigler2008-05-242-0/+4
| |
| * PR6550: also EXTRA_DIST the little "execrc" helper script fileFrank Ch. Eigler2008-05-242-2/+2
| |
| * PR6550: --enable-dejazilla: optional automatic test result reportingFrank Ch. Eigler2008-05-248-24/+94
| |
| * Fixed arg #3 type in nd_syscall.accept.Jim Keniston2008-05-231-1/+1
| |
| * Address powerpc dwarfless test failures.Jim Keniston2008-05-232-9/+57
| |
| * tapset cleanup: nfs kernel?,module? -> kernel!,moduleFrank Ch. Eigler2008-05-233-80/+89
| |
| * testsuite cleanup: kfailing some FOO-all-probes testsFrank Ch. Eigler2008-05-234-2/+13
| |
| * rpc tapset cleanupFrank Ch. Eigler2008-05-232-81/+91
| |
| * Srinivasa DS <srinivasa@in.ibm.com>,PR6429 Inerim fix to avoid compilation ↵Srikar Dronamraju2008-05-232-0/+25
| | | | | | | | error of systemtap module
* | PR6550: add comment justifying "execrc"Frank Ch. Eigler2008-05-252-0/+4
| |
* | PR6550: also EXTRA_DIST the little "execrc" helper script fileFrank Ch. Eigler2008-05-252-2/+2
| |
* | PR6550: --enable-dejazilla: optional automatic test result reportingFrank Ch. Eigler2008-05-258-24/+94
| |
* | Fixed arg #3 type in nd_syscall.accept.Jim Keniston2008-05-251-1/+1
| |
* | Address powerpc dwarfless test failures.Jim Keniston2008-05-252-9/+57
| |
* | tapset cleanup: nfs kernel?,module? -> kernel!,moduleFrank Ch. Eigler2008-05-253-80/+89
| |
* | testsuite cleanup: kfailing some FOO-all-probes testsFrank Ch. Eigler2008-05-254-2/+13
| |
* | rpc tapset cleanupFrank Ch. Eigler2008-05-252-81/+91
| |
* | Srinivasa DS <srinivasa@in.ibm.com>,PR6429 Inerim fix to avoid compilation ↵Srikar Dronamraju2008-05-252-0/+25
| | | | | | | | error of systemtap module
* | Narrow the regexp matching in stmtvars.expwenji2008-05-221-2/+2
|/
* PR5643: fix .statement(NUM) regressionWenji Huang2008-05-222-0/+14
|
* powerpc register+arg accessAnanth N Mavinakayanahalli2008-05-223-0/+251
|
* Fix assignment optimization expected results.Stan Cox2008-05-212-10/+1
|
* PR6538: more testsuite tweaks for read-only warningsFrank Ch. Eigler2008-05-2111-13/+21
|
* PR6538: more tapset fixesFrank Ch. Eigler2008-05-212-1/+6
|
* PR6538: explain why absentstats.stp logs will contain warningsFrank Ch. Eigler2008-05-211-0/+4
|
* Merge branch 'master' of ssh://sources.redhat.com/git/systemtapFrank Ch. Eigler2008-05-217-8/+45
|\ | | | | | | | | | | * 'master' of ssh://sources.redhat.com/git/systemtap: Use pointer_arg to fetch arguments for syscall.utime and compat_utime. Optimize compound and binary expression assignments.
| * Use pointer_arg to fetch arguments for syscall.utime and compat_utime.Mark Wielaard2008-05-212-8/+13
| |
| * Optimize compound and binary expression assignments.Stan Cox2008-05-215-0/+32
| |
* | PR6538: fix treatment of initialized globalsFrank Ch. Eigler2008-05-213-4/+8
| |
* | Merge branch 'master' of ssh://sources.redhat.com/git/systemtapFrank Ch. Eigler2008-05-212-3/+9
|\| | | | | | | | | * 'master' of ssh://sources.redhat.com/git/systemtap: Check new (sub) functions of _struct_utimbuf_* and _struct_compat_utimbuf_*.
| * Check new (sub) functions of _struct_utimbuf_* and _struct_compat_utimbuf_*.Mark Wielaard2008-05-212-2/+11
| |
* | PR6538: tapset changesFrank Ch. Eigler2008-05-205-14/+16
| |
* | PR6538: testsuite changesFrank Ch. Eigler2008-05-206-12/+21
| |
* | PR5001: fix test suite collateral damageFrank Ch. Eigler2008-05-202-2/+5
| |
* | PR6538: warn about read-only variablesFrank Ch. Eigler2008-05-203-6/+68
|/