summaryrefslogtreecommitdiff
path: root/psutil/arch/osx/process_info.c
Commit message (Collapse)AuthorAgeFilesLines
* fix testGiampaolo Rodola2020-11-111-3/+0
|
* OSX: put sysctl() + KERN_PROCARGS2 in its own functionGiampaolo Rodola2020-11-111-45/+43
|
* Wheels2 (#1761)Giampaolo Rodola2020-05-181-3/+2
|
* Properly handle PID type in C (#1672)Giampaolo Rodola2020-01-291-9/+9
|
* print/set syscall origin when raising NSP or ADGiampaolo Rodola2020-01-141-3/+3
|
* get rid of globals.c; move stuff in _psutil_common.cGiampaolo Rodola2020-01-061-1/+1
|
* OSX move is_zombie() function in process_info.cGiampaolo Rodola2019-02-251-0/+12
|
* #1428 in case of error, show the C syscall which caused itGiampaolo Rodola2019-02-241-14/+23
|
* fix #1427: [OSX] Process cmdline() and environ() may erroneously raise ↵Giampaolo Rodola2019-02-241-2/+2
| | | | OSError on failed malloc().
* revert file renaming of macos files; get them back to 'osx' prefixGiampaolo Rodola2018-06-291-0/+361
|
* Rename OSX to macOS (#1298)Giampaolo Rodola2018-06-261-361/+0
| | | rename OSX to macOS
* Arguments for NoSuchProcess and AccessDenied for the C ext (#1180)Giampaolo Rodola2017-11-241-3/+3
| | | | | | * change NoSuchProcess and AccessDenied C exceptions signatures * fix arg call on win
* 1173 debug mode (#1176)Giampaolo Rodola2017-11-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | * implement PSUTIL_DEBUG from C module * update doc * add psutil_debug() utility function * update doc * enable PSUTIL_DEBUG for tests * update appveyor.yml * change psutil_debug() signature so that it can accept variable num of args * provide DEBUG info in psutil_raise_for_pid() * properly print debug message * do not print too much
* 1044 osx zombies (#1100)Giampaolo Rodola2017-06-071-14/+12
| | | | | | | | | | | | | | | | | | | | | | * small refactoring * #1044: define a separate ctx manager which handles zombie processes * add create_zombie_proc utility function * disable test on windows * #1044: cmdline() was incorrectly raising AD instead of ZombieProcess * #1044: environ() was incorrectly raising AD instead of ZombieProcess * #1044: memory_maps() was incorrectly raising AD instead of ZombieProcess * #1044: threads() was incorrectly raising AD instead of ZombieProcess * enhance test * fix threads()
* #1040: add replacement for PyUnicode_DecodeFSDefaultAndSize on Python 2; ↵Giampaolo Rodola2017-05-011-2/+2
| | | | also get rid of the pstuil_ prefix and use the original Python names
* #1040: add alias for psutil_PyUnicode_DecodeFSDefaultAndSizeGiampaolo Rodola2017-05-011-6/+1
|
* #1040 fix unicode for memory_maps() on osxGiampaolo Rodola2017-05-011-6/+2
|
* move psutil_pid_exists() and psutil_raise_for_pid() from _psutil_common.c to ↵Giampaolo Rodola2017-04-301-1/+1
| | | | _psutil_posix.c
* #910: [OSX / BSD] in case of error, psutil.pids() raised RuntimeError ↵Giampaolo Rodola2016-10-191-6/+5
| | | | instead of the original OSError exception.
* fix #926: [OSX] Process.environ() on Python 3 can crash interpreter if ↵Giampaolo Rodola2016-10-181-3/+8
| | | | process environ has an invalid unicode string.
* osx: fix compiler warningsGiampaolo Rodola2016-10-181-1/+1
|
* osx: fix compiler warningsGiampaolo Rodola2016-10-171-2/+2
|
* fix compilation warns on OSXGiampaolo Rodola2016-10-181-2/+2
|
* #916: [OSX] fix many compilation warnings.Giampaolo Rodola2016-10-121-1/+1
|
* #916: [OSX] fix many compilation warnings.Giampaolo Rodola2016-10-121-4/+4
|
* enforce return value contract for proc_pidinfo()Giampaolo Rodola2016-10-051-2/+3
|
* proc_pidinfo(); also check return sizeGiampaolo Rodola2016-10-051-1/+1
|
* have proc_pidinfo() guess the right error/exceptionGiampaolo Rodola2016-10-051-15/+4
|
* change psutil_proc_pidinfo() signatureGiampaolo Rodola2016-10-051-2/+2
|
* refactor osx codeGiampaolo Rodola2016-10-051-32/+0
|
* revive Process.environ on OSXFrank Benkstein2016-01-251-0/+118
| | | | | Revive Process.environ on OSX. The data is right behind the command line so the new function psutil_get_environ is mostly a copy of psutil_get_cmdline.
* #743: fix unicode on all bsd platformsGiampaolo Rodola2016-01-241-0/+4
|
* fix failing test on OSXGiampaolo Rodola2015-06-141-0/+5
|
* C refactoringGiampaolo Rodola2015-09-121-10/+17
|
* C: var names -> add py_ prefixGiampaolo Rodola2015-09-031-12/+13
|
* C stylingGiampaolo Rodola2015-08-061-12/+6
|
* C styling: if unificationGiampaolo Rodola2015-03-011-26/+14
|
* c styleGiampaolo Rodola'2013-12-101-2/+2
|
* fix test failing every once in a whileGiampaolo Rodola'2013-12-101-1/+1
|
* Makefile: provide .PHONY directive; it seems to be necessary for make to ↵Giampaolo Rodola'2013-12-101-2/+2
| | | | work on OSX
* C style: replace '/* comment */' with '// commentGiampaolo Rodola'2013-12-091-11/+11
|
* C style: turn '//foo' into '// foo'Giampaolo Rodola'2013-12-091-1/+1
|
* truncate lines > 80 charsGiampaolo Rodola'2013-12-091-6/+5
|
* C restylingGiampaolo Rodola'2013-12-021-1/+2
|
* issue 354 / OSX: add a 'psutil_' prefix to C internal functionsGiampaolo Rodola'2013-04-111-8/+8
|
* Remove "$Id$" occurrences from source code files. They were used by svn ↵Giampaolo Rodola'2013-03-261-2/+0
| | | | propset functionnality which no longer applies now that we're using Mercurial.
* Issue 306: (OSX) check return code of Py* related functionsGiampaolo Rodola'2012-07-181-10/+20
|
* Fix issue 299 (OSX): Py_DECREF every time we use PyList_New(0)Giampaolo Rodola'2012-07-041-1/+3
|
* fix compiler warningGiampaolo Rodola'2012-06-301-1/+1
|
* OSX refactoringGiampaolo Rodola'2012-06-301-2/+2
|