summaryrefslogtreecommitdiffstats
path: root/runtime/procfs.c
Commit message (Collapse)AuthorAgeFilesLines
* 2.6.29rc build fix: autoconf for proc_dir_entry->owner going awayFrank Ch. Eigler2009-02-061-1/+5
|
* Use 'static' as much as possibleJosh Stone2009-01-281-5/+5
| | | | | | | | | | This change just inserts 'static' on runtime, tapset, and generated C functions and globals, so the compiler can do a better job of optimizing. My tests with small scripts show ~10% reduction in compile time and ~20% reduction in module size. Larger scripts may show less benefit, but I expect purely positive results.
* Remove debug output from warning in procfs.Mark Wielaard2008-10-041-2/+2
|
* procfs dir_entry count warning on removal depends on kernel version.Mark Wielaard2008-10-041-3/+10
|
* From srinivasa@in.ibm.com, To make systemtap to work with register rename ↵srinivasa2008-01-181-0/+6
| | | | patch for x86/x86_64
* 2007-09-19 Martin Hunt <hunt@redhat.com>hunt2007-09-191-3/+19
| | | | | | | | | | PR 5042 * procfs.c (_stp_rmdir_proc_module): Warn if removal of /proc/systemtap/module is deferred. Do not defer removal of /proc/systemtap. (_stp_mkdir_proc_module): Call path_release(). Set ownership of /proc/systemtap/module to force deletion to be deferred. (_stp_create_procfs): Set owner of all path components.
* Remove debug.hunt2007-09-141-1/+0
|
* 2007-09-14 Martin Hunt <hunt@redhat.com>hunt2007-09-141-6/+11
| | | | | * procfs.c (_stp_create_procfs): Be sure that directories in the path are really directories and not files.
* 2007-09-13 David Smith <dsmith@redhat.com>dsmith2007-09-131-10/+7
| | | | | | | | * procfs.c (_stp_procfs_dir_lookup): Added 'const' qualifier to 'dir' parameter. (_stp_create_procfs): Added 'const' qualifier to 'path' parameter. Removed debug prints. (_stp_close_procfs): Removed debug prints.
* 2007-09-10 Martin Hunt <hunt@redhat.com>hunt2007-09-101-0/+177
* procfs.c: New file. Common runtime procfs functions.