summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | #1594: set a limit for eligible CPUs combinationsGiampaolo Rodola2019-09-261-0/+2
| | |
| * | update HISTORYGiampaolo Rodola2019-09-262-0/+6
| |/
| * Fix #1563 - do not try to close invalid socket file descriptor (#1585)Athos Ribeiro2019-09-261-11/+6
| |
| * Removed a typo/copy'n'paste mistake Linux->Windows (#1588)Bastian Ebeling2019-09-181-1/+1
| |
| * fix #1578: 'perf' lib was renamed to 'pyperf'Giampaolo Rodola2019-09-183-4/+4
| |
| * update HISTORYGiampaolo Rodola2019-09-151-0/+2
| |
| * Correct loadavg constants for 5 and 15 minutes. Fixes #1552 (#1583)Ammar Askar2019-09-151-3/+3
| |
| * Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-09-152-5/+5
| |\
| | * broken links fix docs/index.rst (#1555)SteveMoto2019-08-271-3/+3
| | |
| | * typo fix docs/index.rst (#1553)SteveMoto2019-08-271-1/+1
| | |
| | * typo fix scripts/internal/print_timeline.py (#1556)SteveMoto2019-08-271-1/+1
| | |
| * | update getloadavg docGiampaolo Rodola2019-09-152-9/+18
| | |
| * | update README and issue templatesGiampaolo Rodola2019-09-143-3/+1
| | |
| * | fix #1527: Linux process CPU iowait timeGiampaolo Rodola2019-09-075-7/+42
| | |
| * | add script to help fix flake8 issuesGiampaolo Rodola2019-06-292-0/+188
| | |
| * | fix #1546: usage percent may be rounded to 0 on Python 2.Giampaolo Rodola2019-06-282-4/+5
| | |
| * | Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-2814-214/+249
| |\ \ | | |/
| | * PEP-3151: backport FS exceptions to Python 2 (#1544)Giampaolo Rodola2019-06-2816-218/+254
| | |
| * | use SO_REUSEADDR on UNIX onlyGiampaolo Rodola2019-06-262-2/+3
| | |
| * | version bump + fix typoGiampaolo Rodola2019-06-192-2/+2
| |/
| * rename class namesGiampaolo Rodola2019-06-141-7/+8
| |
| * fix FreeBSD testsGiampaolo Rodola2019-06-142-21/+25
| |
| * fix various testsGiampaolo Rodola2019-06-145-5/+16
| |
| * #1536: better detection of zombie procGiampaolo Rodola2019-06-141-3/+16
| |
| * [NetBSD] cmdline() raise ZombieProcess when unable to decode chars (#1536)Giampaolo Rodola2019-06-143-5/+9
| | | | | | | | | | | | | | | | | | * bug #1536 / NetBSD / cmdline: treat EINVAL as 'return []' This happens with unicode test, meaning the C routine it's unable to decode the unicode chars. Also, fix a bug introduced in 1530 (C impl of cwd()) which does not take ENOENT into account.
| * Connection family/type are not converted to enums (#1535)Giampaolo Rodola2019-06-1413-272/+263
| |
| * fix bsd testGiampaolo Rodola2019-06-131-1/+1
| |
| * add pip install --trusted-host optGiampaolo Rodola2019-06-131-2/+2
| |
| * Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-121-2/+2
| |\
| | * Fix #1528: [AIX] use correct definition of size of procbuf (#1533)wiggin152019-06-121-2/+2
| | |
| * | credits to @wiggin15 for #1528Giampaolo Rodola2019-06-123-3/+8
| | |
| * | Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-121-3/+2
| |\ \ | | |/
| | * Revert "Add handling of missing space in meminfo output (#1517)" (#1531)Giampaolo Rodola2019-06-121-3/+2
| | | | | | | | | This reverts commit 6b994c625db2abaaadf58a0425f9daaf3e4ad9e5.
| * | Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-06-122-4/+3
| |\ \ | | |/
| | * Add handling of missing space in meminfo output (#1517)xiaclo2019-06-121-2/+3
| | |
| | * Travis CI: The sudo tag is now deprecated in Travis (#1521)cclauss2019-06-121-2/+0
| | |
| * | update docs / HISTORY / CREDITS / @krytarowski for #1530Giampaolo Rodola2019-06-123-1/+12
| |/
| * Implement psutil_proc_cwd for NetBSD (#1530)Kamil Rytarowski2019-06-124-5/+38
| | | | | | | | Pick KERN_PROC_CWD that is available in 8.99.43 and fallback for older versions to readlink("/proc/$PID/cwd").
| * update HISTORY - pre releaserelease-5.6.3Giampaolo Rodola2019-06-112-3/+10
| |
| * NetBSD fixes (#1526)Kamil Rytarowski2019-06-112-17/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix psutil_get_cmd_args() for NetBSD Do not overallocate the buffer prompting for KERN_ARGMAX. It also fixes the code as KERN_ARGMAX was received into a size_t type, while kernel returned int. It caused argmax to contain garbage and allocation was randomly crashing with new jemalloc in the basesystem. New code prompts for exact buffer size before allocation and stores argv[] inside it. Bug investigated by Leonardo Taccari. * Stop including sys/user.h for NetBSD This header was removed from the OS as it was empty.
| * update LICENSE so that it's recognized as BSD-3 by githubGiampaolo Rodola2019-05-301-1/+1
| |
| * add tidelift sponsorshipGiampaolo Rodola2019-05-302-21/+40
| |
| * update LICENSE so that it's recognized as BSD-3 by githubGiampaolo Rodola2019-05-301-1/+3
| |
| * skip pure-python mem test on linuxGiampaolo Rodola2019-05-301-0/+1
| |
| * add more badgesGiampaolo Rodola2019-05-292-21/+22
| |
| * #1515: document how to get a list of valid attrs names for as_dict()Giampaolo Rodola2019-05-291-0/+4
| |
| * add more badgesGiampaolo Rodola2019-05-281-1/+4
| |
| * Merge branch 'master' of github.com:giampaolo/psutilGiampaolo Rodola2019-05-281-1/+1
| |\
| | * Update index.rst (#1516)Michael Yoo2019-05-281-1/+1
| | |
| * | add more badgesGiampaolo Rodola2019-05-282-3/+11
| |/