| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | port GetExtendedUpdTablewin-loadlib-refact | Giampaolo Rodola | 2019-02-19 | 3 | -28/+18 |
| | | |||||
| * | port GetExtendedTcpTable | Giampaolo Rodola | 2019-02-19 | 3 | -10/+14 |
| | | |||||
| * | refactory | Giampaolo Rodola | 2019-02-19 | 1 | -15/+11 |
| | | |||||
| * | move definition into global.c | Giampaolo Rodola | 2019-02-19 | 2 | -5/+4 |
| | | |||||
| * | port process_info.c | Giampaolo Rodola | 2019-02-19 | 1 | -10/+7 |
| | | |||||
| * | port process_info.c | Giampaolo Rodola | 2019-02-19 | 1 | -25/+16 |
| | | |||||
| * | port process_handles.c | Giampaolo Rodola | 2019-02-19 | 1 | -8/+4 |
| | | |||||
| * | port GetTickCount64 | Giampaolo Rodola | 2019-02-19 | 2 | -4/+4 |
| | | |||||
| * | port GetActiveProcessorCount | Giampaolo Rodola | 2019-02-19 | 3 | -12/+14 |
| | | |||||
| * | port GetActiveProcessorCount | Giampaolo Rodola | 2019-02-19 | 3 | -7/+15 |
| | | |||||
| * | port NtQuerySystemInformation | Giampaolo Rodola | 2019-02-19 | 3 | -18/+14 |
| | | |||||
| * | use shorter conditional syntax | Giampaolo Rodola | 2019-02-19 | 1 | -3/+3 |
| | | |||||
| * | add exit logic | Giampaolo Rodola | 2019-02-19 | 1 | -1/+2 |
| | | |||||
| * | port NtSetInformationProcess | Giampaolo Rodola | 2019-02-19 | 3 | -6/+8 |
| | | |||||
| * | port NtQueryInformationProcess | Giampaolo Rodola | 2019-02-19 | 3 | -9/+14 |
| | | |||||
| * | port RtlIpv4AddressToStringA | Giampaolo Rodola | 2019-02-19 | 3 | -10/+35 |
| | | |||||
| * | add a new global.c file and call it on module import | Giampaolo Rodola | 2019-02-19 | 3 | -7/+54 |
| | | |||||
| * | Windows / refactoring: utility functions for LoadLibraryA and GetProcAddress ↵ | Giampaolo Rodola | 2019-02-19 | 5 | -212/+115 |
| | | | | | | (#1417) Windows / refactoring: add utility functions for LoadLibraryA and GetProcAddress. Centralize logic in one place. | ||||
| * | #1394 / win / exe: use QueryFullProcessImageNameW to get the exe() (#1413) | Giampaolo Rodola | 2019-02-17 | 3 | -12/+52 |
| | | | | #1394 / win / exe: use QueryFullProcessImageNameW to get the exe() | ||||
| * | pre-release | Giampaolo Rodola | 2019-02-15 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of github.com:giampaolo/psutil | Giampaolo Rodola | 2019-02-15 | 1 | -2/+3 |
| |\ | |||||
| | * | Fix #1408: add missing header that defines m_len on AIX 64-bit mode (#1409) | wiggin15 | 2019-02-14 | 1 | -2/+3 |
| | | | |||||
| * | | #1398 #1348 / win / cmdline: refactor code so that the 2 cmdline() ↵ | Giampaolo Rodola | 2019-02-15 | 5 | -25/+51 |
| |/ | | | | implementations can be called separately (and tested separately) | ||||
| * | win / cmdline: add free() and CloseHandle() calls | Giampaolo Rodola | 2019-02-04 | 1 | -3/+10 |
| | | |||||
| * | fix #1402: move psutil exceptions back into __init__.py | Giampaolo Rodola | 2019-02-04 | 9 | -121/+154 |
| | | |||||
| * | #1348: give CREDITS to @EccoTheFlinstones + some minor style changes | Giampaolo Rodola | 2019-02-03 | 1 | -30/+32 |
| | | |||||
| * | Starting from windows 8.1, get commandline content using ↵ | EccoTheFlintstone | 2019-02-03 | 2 | -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 | ||||
| * | #1394 / windows / process exe(): convert errno 0 into ERROR_ACCESS_DENIED; ↵ | Giampaolo Rodola | 2019-01-25 | 3 | -3/+12 |
| | | | | | errno 0 occurs when the Python process runs in 'Virtual Secure Mode' | ||||
| * | fix win num_handles() test | Giampaolo Rodola | 2019-01-23 | 1 | -4/+4 |
| | | |||||
| * | fix #1111: use a lock to make Process.oneshot() thread safe | Giampaolo Rodola | 2018-12-13 | 2 | -41/+50 |
| | | |||||
| * | #1373: different approach to oneshot() cache (pass Process instances around ↵ | Giampaolo Rodola | 2018-12-13 | 10 | -54/+70 |
| | | | | | - which is faster) | ||||
| * | use PROCESS_QUERY_LIMITED_INFORMATION also for username() | Giampaolo Rodola | 2018-12-11 | 1 | -1/+2 |
| | | |||||
| * | Linux: refactor _parse_stat_file() and return a dict instead of a list (+ ↵ | Giampaolo Rodola | 2018-12-10 | 1 | -17/+30 |
| | | | | | maintainability) | ||||
| * | fix #1357: do not expose Process' memory_maps() and io_counters() methods if ↵ | Giampaolo Rodola | 2018-12-10 | 1 | -11/+4 |
| | | | | | not supported by the kernel | ||||
| * | #1376 Windows: check if variable is NULL before free()ing it | Giampaolo Rodola | 2018-12-10 | 1 | -5/+8 |
| | | |||||
| * | enforce lack of support for Win XP | Giampaolo Rodola | 2018-12-08 | 1 | -2/+1 |
| | | |||||
| * | fix #1370: improper usage of CloseHandle() may lead to override the original ↵ | Giampaolo Rodola | 2018-12-08 | 2 | -25/+53 |
| | | | | | error code resulting in raising a wrong exception | ||||
| * | (Windows) use PROCESS_QUERY_LIMITED_INFORMATION access rights (#1376) | Giampaolo Rodola | 2018-12-08 | 3 | -36/+28 |
| | | | | #1376 / Windows / OpenProcess - use PROCESS_QUERY_LIMITED_INFORMATION wherever possible. This results in less AccessDenied exceptions being thrown for system processes. | ||||
| * | revert 5398c48047d424af97644879fb4eaa7aad432f58; let's do it in a separate ↵ | Giampaolo Rodola | 2018-12-08 | 1 | -36/+33 |
| | | | | | branch | ||||
| * | #1111 make Process.oneshot() thread-safe | Giampaolo Rodola | 2018-12-08 | 1 | -33/+36 |
| | | |||||
| * | sort HISTORY | Giampaolo Rodola | 2018-12-05 | 1 | -1/+1 |
| | | |||||
| * | fix ionice set not working on windows x64 due to LENGTH_MISMATCH (#1368) | EccoTheFlintstone | 2018-12-03 | 1 | -5/+6 |
| | | | | Fix Process().ionice(0/1/2) length mismatch on Windows | ||||
| * | make flake8 happy | Giampaolo Rodola | 2018-12-01 | 1 | -1/+1 |
| | | |||||
| * | give CREDITS to @amanusk for #1369 / #1352 and update doc | Giampaolo Rodola | 2018-12-01 | 4 | -14/+15 |
| | | |||||
| * | Merge branch 'master' of github.com:giampaolo/psutil | Giampaolo Rodola | 2018-12-01 | 6 | -1/+81 |
| |\ | |||||
| | * | Add CPU frequency support for FreeBSD (#1369) | Alex Manuskin | 2018-12-01 | 6 | -1/+81 |
| | | | | | | | | | Add CPU frequency support for FreeBSD (patch by @amanusk) | ||||
| * | | #1359: add test case for cpu_count(logical=False) against lscpu utility | Giampaolo Rodola | 2018-11-08 | 1 | -0/+10 |
| |/ | |||||
| * | Merge branch 'master' of github.com:giampaolo/psutil | Giampaolo Rodola | 2018-11-07 | 1 | -1/+3 |
| |\ | |||||
| | * | Fix #1354 [Linux] disk_io_counters() fails on Linux kernel 4.18+ (#1360) | Koen Kooi | 2018-11-05 | 1 | -1/+3 |
| | | | | | | | | | Linux kernel 4.18+ added 4 fields, ingore them and parse the rest as usual. | ||||
| * | | disable false positive mem test on travis + osx | Giampaolo Rodola | 2018-11-07 | 1 | -0/+1 |
| | | | |||||
