summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* windows progressrich-exceptionsGiampaolo Rodola2019-02-242-13/+13
|
* Merge branch 'master' into rich-exceptionsGiampaolo Rodola2019-02-241-240/+204
|\
| * win connections refactoringGiampaolo Rodola2019-02-241-36/+14
| |
| * win connections refactoringGiampaolo Rodola2019-02-241-221/+207
| |
* | windows implementationGiampaolo Rodola2019-02-243-47/+65
| |
* | refactor psutil_get_argmaxGiampaolo Rodola2019-02-241-6/+3
| |
* | refactor pids() function on OSXGiampaolo Rodola2019-02-242-30/+33
| |
* | Merge branch 'master' into rich-exceptionsGiampaolo Rodola2019-02-2411-84/+139
|\ \
| * \ Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-02-249-82/+135
| |\ \ | | |/
| | * fix compilation warningGiampaolo Rodola2019-02-241-0/+2
| | |
| | * revert previous changeGiampaolo Rodola2019-02-211-2/+2
| | |
| | * remove deprecated WSAAddressToStringA causing a compiler warning and use ↵Giampaolo Rodola2019-02-211-10/+9
| | | | | | | | | | | | UNICODE version instead
| | * fix windows testGiampaolo Rodola2019-02-212-3/+6
| | |
| | * move custom object defs from ntextapi.h to global.hGiampaolo Rodola2019-02-212-45/+42
| | |
| | * set Windows version constants globally; get rid of deprecated GetVersionExGiampaolo Rodola2019-02-215-27/+79
| | |
| * | fix #1427: [OSX] Process cmdline() and environ() may erroneously raise ↵Giampaolo Rodola2019-02-242-2/+4
| |/ | | | | | | OSError on failed malloc().
* | OSX implementationGiampaolo Rodola2019-02-241-9/+17
| |
* | linux implementationGiampaolo Rodola2019-02-241-3/+4
| |
* | add C convenience function to include the low-level syscall which caused the ↵Giampaolo Rodola2019-02-244-55/+103
| | | | | | | | exception (FreeBSD)
* | skip failing test on FreeBSDGiampaolo Rodola2019-02-181-1/+3
|/
* Windows / speeup: dynamically load libraries on startup and never again (#1422)Giampaolo Rodola2019-02-2110-631/+581
| | | Windows / speeup: dynamically load libraries on startup and never again.
* update docGiampaolo Rodola2019-02-213-29/+32
|
* win test: skip cd-dorm for disk_usage() (cuase device busy error)Giampaolo Rodola2019-02-201-0/+4
|
* fix #1420: use PyErr_SetFromWindowsErrWithFilename for disk_usage() in case ↵Giampaolo Rodola2019-02-192-1/+6
| | | | of error
* fix #1419: Process.environ() raise NotImplementedError for 32-bit-WoW processGiampaolo Rodola2019-02-193-67/+19
|
* merge from masterGiampaolo Rodola2019-02-196-210/+119
|\
| * Windows / refactoring: utility functions for LoadLibraryA and GetProcAddress ↵Giampaolo Rodola2019-02-196-213/+121
| | | | | | | | | | (#1417) Windows / refactoring: add utility functions for LoadLibraryA and GetProcAddress. Centralize logic in one place.
* | fix compilation warnings on winGiampaolo Rodola2019-02-192-3/+2
|/
* #1394 / win / exe: use QueryFullProcessImageNameW to get the exe() (#1413)Giampaolo Rodola2019-02-174-12/+63
| | | #1394 / win / exe: use QueryFullProcessImageNameW to get the exe()
* force appveyor runrelease-5.5.1Giampaolo Rodola2019-02-151-1/+1
|
* pre-releaseGiampaolo Rodola2019-02-151-1/+1
|
* pre-releaseGiampaolo Rodola2019-02-153-2/+5
|
* Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-02-153-3/+6
|\
| * give CREDITS to @wiggin15 for #1408Giampaolo Rodola2019-02-142-1/+3
| |
| * Fix #1408: add missing header that defines m_len on AIX 64-bit mode (#1409)wiggin152019-02-141-2/+3
| |
* | #1398 #1348 / win / cmdline: refactor code so that the 2 cmdline() ↵Giampaolo Rodola2019-02-155-25/+51
|/ | | | implementations can be called separately (and tested separately)
* win / cmdline: add free() and CloseHandle() callsGiampaolo Rodola2019-02-041-3/+10
|
* fix #1402: move psutil exceptions back into __init__.pyGiampaolo Rodola2019-02-0410-122/+156
|
* #1348: give CREDITS to @EccoTheFlinstones + some minor style changesGiampaolo Rodola2019-02-033-31/+39
|
* Starting from windows 8.1, get commandline content using ↵EccoTheFlintstone2019-02-032-25/+183
| | | | | NtQueryInformationProcess (see #1384) (#1398) #1384, #1398: on windows 8.1, get cmdline() using NtQueryInformationProcess in case the original method fails with ACCESS_DENIED
* update docGiampaolo Rodola2019-02-012-6/+2
|
* #1394 / windows / process exe(): convert errno 0 into ERROR_ACCESS_DENIED; ↵Giampaolo Rodola2019-01-254-3/+22
| | | | errno 0 occurs when the Python process runs in 'Virtual Secure Mode'
* pre-releaserelease-5.5.0Giampaolo Rodola2019-01-232-1/+5
|
* fix win num_handles() testGiampaolo Rodola2019-01-231-4/+4
|
* update readmeGiampaolo Rodola2018-12-252-2/+6
|
* fix #1111: use a lock to make Process.oneshot() thread safeGiampaolo Rodola2018-12-133-41/+51
|
* pdate HISTORYGiampaolo Rodola2018-12-131-0/+2
|
* #1373: different approach to oneshot() cache (pass Process instances around ↵Giampaolo Rodola2018-12-1310-54/+70
| | | | - which is faster)
* use PROCESS_QUERY_LIMITED_INFORMATION also for username()Giampaolo Rodola2018-12-111-1/+2
|
* Linux: refactor _parse_stat_file() and return a dict instead of a list (+ ↵Giampaolo Rodola2018-12-101-17/+30
| | | | maintainability)