Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | #1672, #1682: SIZEOF_INT is not available on pypy3; assume that on systems ↵ | Giampaolo Rodola | 2020-02-09 | 2 | -9/+16 | |
| | | | | | | | | where pid_t size can't be determined at runtime pid_t is an int | |||||
| * | [Linux] disk_io_counters() ValueError when parsing /sys/block (#1684) | Giampaolo Rodola | 2020-02-09 | 3 | -22/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: ``` ====================================================================== ERROR: psutil.tests.test_linux.TestSystemDiskIoCounters.test_emulate_use_sysfs ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/giampaolo/svn/psutil/psutil/tests/test_linux.py", line 1195, in test_emulate_use_sysfs wsysfs = psutil.disk_io_counters(perdisk=True) File "/home/giampaolo/svn/psutil/psutil/__init__.py", line 2065, in disk_io_counters rawdict = _psplatform.disk_io_counters(**kwargs) File "/home/giampaolo/svn/psutil/psutil/_pslinux.py", line 1124, in disk_io_counters for entry in gen: File "/home/giampaolo/svn/psutil/psutil/_pslinux.py", line 1110, in read_sysfs wbytes, wtime, _, busy_time, _) = map(int, fields) ValueError: too many values to unpack (expected 11) ``` | |||||
| * | fix #1650 [Linux] sensors_temperatures() no longer emit warnings on file not ↵ | Giampaolo Rodola | 2020-02-09 | 3 | -5/+15 | |
| | | | | | | | | found (print debug msg instead) | |||||
| * | update doc | Giampaolo Rodola | 2020-02-07 | 1 | -1/+1 | |
| | | ||||||
| * | fix #1674, SunOS: disk_partitions() may raise OSError. | Giampaolo Rodola | 2020-02-07 | 2 | -2/+7 | |
| | | ||||||
| * | Reference exact CVE in HISTORY for 5.6.6 (#1653) | Adam Johnson | 2020-02-05 | 1 | -1/+3 | |
| | | ||||||
| * | [Windows] speedup connections (#1679) | Giampaolo Rodola | 2020-02-05 | 2 | -49/+60 | |
| | | ||||||
| * | Merge branch 'master' of github.com:giampaolo/psutil | Giampaolo Rodola | 2020-02-04 | 2 | -93/+73 | |
| |\ | ||||||
| * | | #1610: clarify in the doc what cpu_count means | Giampaolo Rodola | 2020-02-04 | 1 | -2/+4 | |
| | | | ||||||
* | | | Merge branch 'master' of https://github.com/giampaolo/psutil | Giampaolo Rodola | 2020-02-03 | 1 | -92/+72 | |
|\ \ \ | | |/ | |/| | ||||||
| * | | [Windows] connections() refactoring (#1678) | Giampaolo Rodola | 2020-02-01 | 2 | -93/+73 | |
| |/ | ||||||
* | | print-ad.py: double sort | Giampaolo Rodola | 2020-02-01 | 1 | -1/+1 | |
|/ | ||||||
* | [Windows] use NtQuerySystemInformation to determine process exe() (#1677) | Giampaolo Rodola | 2020-02-01 | 10 | -121/+104 | |
| | ||||||
* | small C refactoring | Giampaolo Rodola | 2020-02-01 | 2 | -21/+5 | |
| | ||||||
* | update HISTORY | Giampaolo Rodola | 2020-01-30 | 1 | -0/+1 | |
| | ||||||
* | Add special case for psutil_proc_cwd/NetBSD (#1538) | Kamil Rytarowski | 2020-01-30 | 1 | -1/+4 | |
| | ||||||
* | Properly handle PID type in C (#1672) | Giampaolo Rodola | 2020-01-29 | 32 | -245/+301 | |
| | ||||||
* | OpenBSD fixes (#1673) | Giampaolo Rodola | 2020-01-27 | 7 | -115/+69 | |
| | ||||||
* | run py2 tests on cirrus | Giampaolo Rodola | 2020-01-24 | 1 | -2/+2 | |
| | ||||||
* | Cirrus: enable python 2 | Giampaolo Rodola | 2020-01-24 | 1 | -2/+17 | |
| | ||||||
* | fix Cirrus failure | Giampaolo Rodola | 2020-01-24 | 3 | -5/+7 | |
| | ||||||
* | Add CI testing for FreeBSD (#1671) | Giampaolo Rodola | 2020-01-24 | 14 | -45/+68 | |
| | ||||||
* | Remove links to abandoned psutil ports in readme (#1669) | Caleb Bassi | 2020-01-19 | 1 | -2/+0 | |
| | ||||||
* | [Windows] psutil_handle_from_pid() refactoring (#1668) | Giampaolo Rodola | 2020-01-18 | 1 | -160/+52 | |
| | ||||||
* | set proper NTSTATUS error code | Giampaolo Rodola | 2020-01-18 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'master' of github.com:giampaolo/psutil | Giampaolo Rodola | 2020-01-18 | 4 | -26/+42 | |
|\ | ||||||
| * | Add *new_only* parameter for process_iter() (#1667) | Giampaolo Rodola | 2020-01-18 | 5 | -26/+48 | |
| | | ||||||
* | | update HISTORY | Giampaolo Rodola | 2020-01-18 | 2 | -0/+6 | |
|/ | ||||||
* | Future-proof disk_io_counters on Linux. (#1665) | Mike Hommey | 2020-01-17 | 1 | -1/+2 | |
| | | | | | | | | | | Kernel 5.5 added 2 more fields to /proc/diskstats, requiring another change after the one for 4.18, which recently added 4 fields. At this point in time, the meaning of the existing fields is unlikely to change, and psutil is not using any of the newer ones. By considering 18 fields and more to have the current layout, psutil will continue to work as newer kernels add more fields. | |||||
* | AD script: print AD percentage + elapsed time | Giampaolo Rodola | 2020-01-16 | 3 | -4/+9 | |
| | ||||||
* | fix #1662: QueryFullProcessImageNameW may fail with error code = 0 (Win API ↵ | Giampaolo Rodola | 2020-01-14 | 2 | -1/+6 | |
| | | | | bug?) | |||||
* | properly cleanup C thread | Giampaolo Rodola | 2020-01-14 | 5 | -13/+37 | |
| | ||||||
* | check MALLOC_ZERO ret code | Giampaolo Rodola | 2020-01-14 | 2 | -8/+30 | |
| | ||||||
* | exec make install before 2 targets | Giampaolo Rodola | 2020-01-14 | 2 | -0/+4 | |
| | ||||||
* | print/set syscall origin when raising NSP or AD | Giampaolo Rodola | 2020-01-14 | 13 | -50/+54 | |
| | ||||||
* | update setup.py classifiers | Giampaolo Rodola | 2020-01-13 | 1 | -2/+11 | |
| | ||||||
* | #1652 remove Windows Vista references | Giampaolo Rodola | 2020-01-11 | 2 | -5/+2 | |
| | ||||||
* | #1652: remove win XP code path checking avilability of GetTickCount64 | Giampaolo Rodola | 2020-01-11 | 2 | -17/+9 | |
| | ||||||
* | [Windows] rewrite of open_files() (#1660) | Giampaolo Rodola | 2020-01-09 | 5 | -225/+197 | |
| | ||||||
* | #1020: remove doc part mentionin open_files() on win is only able to list ↵ | Giampaolo Rodola | 2020-01-09 | 1 | -4/+3 | |
| | | | | files living on the C drive | |||||
* | Merge branch 'master' of github.com:giampaolo/psutil | Giampaolo Rodola | 2020-01-07 | 1 | -17/+14 | |
|\ | ||||||
| * | #1652: ionice(), remove code checking if we're on Win Vista+ | Giampaolo Rodola | 2020-01-07 | 1 | -17/+14 | |
| | | ||||||
* | | add more types tests | Giampaolo Rodola | 2020-01-07 | 1 | -10/+51 | |
| | | ||||||
* | | add contract tests for IOPRIO_ win constants | Giampaolo Rodola | 2020-01-07 | 1 | -7/+18 | |
|/ | ||||||
* | refactoring test_contracts.py | Giampaolo Rodola | 2020-01-07 | 1 | -24/+27 | |
| | ||||||
* | #1652 / win / XP support: remove routine to collect files on win < vista | Giampaolo Rodola | 2020-01-06 | 1 | -156/+3 | |
| | ||||||
* | get rid of globals.c; move stuff in _psutil_common.c | Giampaolo Rodola | 2020-01-06 | 20 | -294/+256 | |
| | ||||||
* | just move stuff around | Giampaolo Rodola | 2020-01-06 | 2 | -26/+53 | |
| | ||||||
* | fix some win tests | Giampaolo Rodola | 2020-01-06 | 4 | -4/+7 | |
| | ||||||
* | fix #1656: [Windows] Process.memory_full_info() raises AccessDenied even for ↵ | Giampaolo Rodola | 2020-01-06 | 4 | -3/+5 | |
| | | | | the current user and os.getpid() |