summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update README / HISTORY0-wiz-0-masterGiampaolo Rodola2016-01-112-3/+5
|
* add more netbsd testsGiampaolo Rodola2016-01-112-30/+51
|
* #557 / NetBSD: fix total virt memGiampaolo Rodola2016-01-113-7/+30
|
* Merge branch '0-wiz-0-master' of github.com:giampaolo/psutil into 0-wiz-0-masterGiampaolo Rodola2016-01-1114-119/+1498
|\
| * #557 (NetBSD): add swapin/swapout to swap mem statsGiampaolo Rodola2016-01-082-8/+22
| |
| * small refactoringGiampaolo Rodola2016-01-082-5/+8
| |
| * #557 (NetBSD): virtual_mem(): add cached mem statsGiampaolo Rodola2016-01-081-9/+13
| |
| * #557 (NetBSD): fix proc status() and num_fds()Giampaolo Rodola2016-01-084-27/+32
| |
| * #557 (NetBSD): various refactoringsGiampaolo Rodola2016-01-086-90/+59
| |
| * #557 (NetBSD): fix mem swap funGiampaolo Rodola2016-01-082-8/+5
| |
| * #557 (NetBSD): fix VMS proc mem; now it matches ps perfectlyGiampaolo Rodola2016-01-081-12/+19
| |
| * #557 (NetBSD): return actual proc mem infoGiampaolo Rodola2016-01-082-10/+15
| |
| * #557 (NetBSD): cmdline - raise NSP or ZP as necessaryGiampaolo Rodola2016-01-081-0/+4
| |
| * #557 (NetBSD): cmdline - raise NSP or ZP as necessaryGiampaolo Rodola2016-01-081-1/+13
| |
| * #557 (NetBSD): implement process cwd()Giampaolo Rodola2016-01-085-10/+23
| |
| * #557 (NetBSD): fix cmdline for pid 0Giampaolo Rodola2016-01-081-0/+3
| |
| * #557 fix cpu_times() on NetBSDGiampaolo Rodola2016-01-081-0/+4
| |
| * Merge branch 'master' of git://github.com/0-wiz-0/psutil into 0-wiz-0-masterGiampaolo Rodola2016-01-0711-63/+1402
| |\
| | * Move check earlier per a comment from giampaolo.Thomas Klausner2016-01-021-2/+2
| | |
| | * Check arguments first before using it.Thomas Klausner2016-01-021-3/+4
| | |
| | * Fix two compilation warnings.Thomas Klausner2015-12-311-1/+2
| | | | | | | | | | | | Add missing header, fix variable type.
| | * Improve reference counting.Thomas Klausner2015-12-311-29/+45
| | |
| | * Remove duplicate case statement.Thomas Klausner2015-12-311-17/+0
| | |
| | * Move free() to correct place.Thomas Klausner2015-12-311-1/+1
| | | | | | | | | | | | Avoids reference leak.
| | * Add missing free().Thomas Klausner2015-12-301-0/+1
| | |
| | * Return exceptions in more cases.Thomas Klausner2015-12-301-3/+11
| | |
| | * Initialize pointer so that free() does not free random memory addresses.Thomas Klausner2015-12-301-1/+1
| | |
| | * Raise more exceptions.Thomas Klausner2015-12-301-2/+3
| | |
| | * Remove unnecessary whitespace.Thomas Klausner2015-12-301-5/+5
| | |
| | * Remove unnecessary whitespace.Thomas Klausner2015-12-301-4/+4
| | |
| | * Remove unnecessary pid check.Thomas Klausner2015-12-301-2/+0
| | |
| | * Remove trailing whitespace.Thomas Klausner2015-12-301-2/+2
| | |
| | * Use PyList_New instead of Py_BuildValue("[]")Thomas Klausner2015-12-301-1/+3
| | | | | | | | | | | | XXX: other backends also could be changed for this
| | * style: move opening brace to end of lineThomas Klausner2015-12-302-20/+10
| | |
| | * Use // for single-line comments.Thomas Klausner2015-12-301-5/+5
| | |
| | * Use // for single-line comments.Thomas Klausner2015-12-301-26/+16
| | |
| | * untabifyThomas Klausner2015-12-301-128/+128
| | |
| | * untabifyThomas Klausner2015-12-301-3/+3
| | |
| | * Call kvm_close() in error cases to avoid resource leak.Thomas Klausner2015-12-302-0/+4
| | |
| | * Move function on request from giampaolo.Thomas Klausner2015-12-301-9/+11
| | |
| | * Return empty string when guessing pathname fails.Thomas Klausner2015-12-301-1/+1
| | |
| | * Return PyErr_NoMemory(); on out-of-memory.Thomas Klausner2015-12-301-1/+1
| | |
| | * Fix line length (PEP8).Thomas Klausner2015-12-301-1/+2
| | |
| | * Add NetBSD support.Ryo ONODERA2015-12-3010-63/+1404
| | | | | | | | | | | | Signed-off-by: Thomas Klausner <tk@giga.or.at>
* | | refactor BSD tests (use a single file for all BSD variants)Giampaolo Rodola2015-12-173-153/+87
| | |
* | | FreeBSD: fix total memoryGiampaolo Rodola2015-12-173-4/+5
|/ /
* | freebsd: fix compiler warningGiampaolo Rodola2015-12-171-0/+2
|/
* update docGiampaolo Rodola2015-12-191-46/+46
|
* Merge pull request #719 from sethp-jive/tests/add-import-testsGiampaolo Rodola2015-12-183-3/+73
|\ | | | | Add import-time tests for linux psutil
| * Add import-time tests for psutilSeth Pellegrino2015-12-173-3/+73
| | | | | | | | | | | | | | | | Two new tests that validate: 1) that psutil can be sucessfuly reload()'d 2) that a missing procfs doesn't prevent importing, or correct functionality on linux.