psutil 2.1.3 is replacing psutil 1.0.1. There are numerous bug fixes and feature enhancements in psutil worth obtaining. Source code was obtained from https://pypi.python.org/packages/source/p/psutil/psutil-2.1.3.tar.gz and uncompressed into python/psutil without modification except for the removal of the egg-info directory and the .travis.yml file.
11 lines
346 B
C
11 lines
346 B
C
/*
|
|
* Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include <Python.h>
|
|
|
|
static PyObject* psutil_posix_getpriority(PyObject* self, PyObject* args);
|
|
static PyObject* psutil_posix_setpriority(PyObject* self, PyObject* args);
|