summaryrefslogtreecommitdiffstats
path: root/tapset/process.stp
Commit message (Collapse)AuthorAgeFilesLines
* PR9953: split up the two process.* tapsetsJosh Stone2009-04-141-115/+0
| | | | | | | The overlapping process.* tapsets are now separated. Those probe points documented in stapprobes(3stap) remain the same. Those that were formerly in stapprobes.process(3stap) have been renamed to kprocess, to reflect their kernel perspective on processes.
* fixed format of non-grabbable comments (for Tapset Reference Guide), added ↵ddomingo2009-03-161-1/+3
| | | | tapsetdescription for man page generator (in development)
* Merge branch 'master' of ssh://sources.redhat.com/git/systemtapddomingo2009-02-101-1/+1
|\
| * process.create: fix the new_pid read orderJosh Stone2009-02-091-1/+1
| | | | | | | | | | | | | | | | | | | | * process.stp (process.create): Read the task pid *after* the task pointer is checked for errors. This is to fix a problem reported on the mailing list: http://sources.redhat.com/ml/systemtap/2009-q1/msg00403.html CC: Luis Fernando Muñoz Mejías <Luis.Fernando.Munoz.Mejias@cern.ch>
* | minor revisionsddomingo2009-02-091-6/+5
|/
* Add kernel-doc compatible comments and pull process tapset into reference doc.William Cohen2008-11-261-36/+33
|
* document process.*, tcp.*, udp.* into stapprobes(5)guanglei2006-08-101-0/+3
|
* 2006-08-09 Josh Stone <joshua.i.stone@intel.com>jistone2006-08-101-63/+1
| | | | | | | | | * tapset/signal.stp: Create a new tapset that addresses process signals. Much of this was contributed by Manoj Pattabhiraman (IBM). * tapset/process.stp: Remove aliases that now belong in signal tapset * examples/small_demos/proc_snoop.stp, testsuite/buildok/process_test.stp: Rename process.signal_* to new signal.* tapset.
* 2006-06-06 Josh Stone <joshua.i.stone@intel.com>jistone2006-06-061-2/+2
| | | | * process.stp (create, exec_complete): replace retval() with $return
* 2006-06-02 Josh Stone <joshua.i.stone@intel.com>jistone2006-06-021-20/+8
| | | | | | | * process.stp (exec, exec_complete): conditionally include compat_do_execve for 64-bit kernels * process.stp (handle_signal): use optional probes to alternate between function or inline
* 2006-05-17 Josh Stone <joshua.i.stone@intel.com>jistone2006-05-181-11/+11
| | | | | | | * process.stp: Rename signal.send to signal_send and process.complete to process_complete, to allow process.* to work properly. * process.stp (_IS_ERR): declare parameter type * process.stp (process.create): correct new_pid assignment
* I break LKET into layered structure. The first layer is those generic tapsets.guanglei2006-05-181-0/+7
| | | | | | The second layer is tracing specific. I checked into CVS those generic tapsets at the first step.
* 2006-05-09 Josh Stone <joshua.i.stone@intel.com>jistone2006-05-101-0/+181
* task.stp: functions to retrieve task information * process.stp: tapset for process-related events