summaryrefslogtreecommitdiff
path: root/psutil/arch/osx/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/arch/osx/proc.h')
-rw-r--r--psutil/arch/osx/proc.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/psutil/arch/osx/proc.h b/psutil/arch/osx/proc.h
new file mode 100644
index 00000000..621f0cad
--- /dev/null
+++ b/psutil/arch/osx/proc.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (c) 2009, Jay Loden, 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>
+
+PyObject *psutil_pids(PyObject *self, PyObject *args);
+PyObject *psutil_proc_connections(PyObject *self, PyObject *args);
+PyObject *psutil_proc_cwd(PyObject *self, PyObject *args);
+PyObject *psutil_proc_exe(PyObject *self, PyObject *args);
+PyObject *psutil_proc_kinfo_oneshot(PyObject *self, PyObject *args);
+PyObject *psutil_proc_memory_uss(PyObject *self, PyObject *args);
+PyObject *psutil_proc_name(PyObject *self, PyObject *args);
+PyObject *psutil_proc_num_fds(PyObject *self, PyObject *args);
+PyObject *psutil_proc_open_files(PyObject *self, PyObject *args);
+PyObject *psutil_proc_pidtaskinfo_oneshot(PyObject *self, PyObject *args);
+PyObject *psutil_proc_threads(PyObject *self, PyObject *args);