summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Avoided to call distutils.core.setup() twice which caused setup.py to generat...release-0.1.0Giampaolo Rodola'2009-01-271-40/+32
* Modified release version (0.1.0)Giampaolo Rodola'2009-01-271-1/+1
* Added HISTORY file.Giampaolo Rodola'2009-01-271-0/+5
* Added LICENSE file (BSD).Giampaolo Rodola'2009-01-272-0/+28
* Updated index.html.Giampaolo Rodola'2009-01-271-5/+8
* Modified psutil.py so that when run as stand alone script it provides a ps-li...Giampaolo Rodola'2009-01-271-3/+9
* Returns empty list instead of "<unknown>" for failure on fetching commandlineJay Loden2009-01-271-1/+1
* Determined cmdline by using the list comprehension suggested by Jay.Giampaolo Rodola'2009-01-271-5/+1
* Fix issue # 6: trim unnecessary trailing characters which may occur in cmdlin...Giampaolo Rodola'2009-01-272-3/+7
* Fix Issue #5 (can't determine name/path for low pid processes)Giampaolo Rodola'2009-01-271-3/+18
* Converted wiki to static HTML doc.Giampaolo Rodola'2009-01-273-0/+81
* Reverted a change I accidentally made in r64 against kill_process().Giampaolo Rodola'2009-01-272-0/+4
* Merging with Jay's r63 commit I accidentally conflicted with.Giampaolo Rodola'2009-01-271-1/+1
* Code base cleanup (*.py files only).Giampaolo Rodola'2009-01-276-91/+110
* Fixed path in setup.py for OS X and moved infoTuple declaration to afterJay Loden2009-01-272-3/+5
* Added shell32.lib to libraries for linking, needed to compile usingJay Loden2009-01-261-1/+1
* removed WMIC code, added proper NtQueryInformationProcess code withJay Loden2009-01-263-18/+135
* Added test_fetch_all to test all retrievable process information available so...Giampaolo Rodola'2009-01-231-1/+9
* (Linux) put os.readlink(/proc/pid/exe) inside a try/except statement since I ...Giampaolo Rodola'2009-01-232-9/+7
* Updated Linux code to return just the path for the path attribute, rather thanJay Loden2009-01-231-3/+4
* Fixed some path errors in the test code (cmdline returns a list not string) andJay Loden2009-01-232-5/+5
* Cleaned up WMIC command parsing code using better options for formattingJay Loden2009-01-231-6/+4
* removed unneeded include_dirs from setup.pyJay Loden2009-01-231-1/+0
* Fixed Linux implementation which was failing due to the "import psutil"Jay Loden2009-01-232-3/+2
* Temporary WMIC hack tested and verified functioning on XP, needs cleanup and ...Jay Loden2009-01-234-12/+15
* Ugly hack to use WMIC to get command line for nowJay Loden2009-01-233-3/+20
* Reverted to revision 48, windows cmdline-fetching code was too dependent on e...Jay Loden2009-01-233-442/+1
* Code for Win32 compiles but I'm getting a crash when attmepting to run itJay Loden2009-01-233-32/+39
* Working on getting command line for Win32, probably does not compile, still t...Jay Loden2009-01-233-0/+435
* Where available rely on os.kill() instead of Process.kill() for killing orpha...Giampaolo Rodola'2009-01-221-3/+8
* Defined a new DEVNULL global constant containing the dummy /dev/null file obj...Giampaolo Rodola'2009-01-221-20/+8
* Fix issue #2.Giampaolo Rodola'2009-01-221-8/+11
* Renamed "args" attribute to "cmdline".Giampaolo Rodola'2009-01-223-12/+13
* Added get_args() support for Linux.Giampaolo Rodola'2009-01-222-6/+11
* Fixed lib references in setup.py for Windows, and made changes to variableJay Loden2009-01-132-12/+21
* updated kill() call for WindowsJay Loden2009-01-131-1/+1
* Removed psutil/ for windows build, breaks build process...Jay Loden2009-01-131-1/+1
* Fixed unintential cast from int to PyObjectJay Loden2009-01-131-4/+4
* Use PyInt_FromLong() instead of Py_BuildValue()Jay Loden2009-01-131-2/+3
* Fixed more compilation errorsJay Loden2009-01-131-7/+8
* Fixed some compilation errors in the C source codeJay Loden2009-01-131-2/+3
* Added Win32 kill_process() including needed Set/Unset SeDebug code to allowJay Loden2009-01-136-10/+161
* Removed a perror() call used for debugging purposesJay Loden2009-01-121-1/+1
* Test script problems appear to have been caused by setup.py building the CJay Loden2009-01-123-4/+9
* Added argument listing support for OS X and added test_args() to test suite.Jay Loden2009-01-124-6/+228
* Implemented first pass of get_process_info() for OS X, fetches theJay Loden2008-08-142-26/+74
* Implemented process name retrieval under win32daveregs2008-07-213-12/+35
* Fixed build problem. Slashes break distutils build and should not be used in...daveregs2008-07-211-2/+2
* Began adding process info retrieval functionality to the windows module. Did...daveregs2008-07-202-20/+37
* - Add a preliminary test suite testing all the current methods implemented fo...Giampaolo Rodola'2008-05-063-2/+78