File: proc.h

package info (click to toggle)
python-psutil 7.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,312 kB
  • sloc: python: 19,411; ansic: 15,378; makefile: 465; javascript: 153; sh: 54
file content (20 lines) | stat: -rw-r--r-- 928 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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>

#define PSUTIL_TV2DOUBLE(t) (((t).tv_nsec * 0.000000001) + (t).tv_sec)
int psutil_file_to_struct(char *path, void *fstruct, size_t size);

PyObject *psutil_proc_basic_info(PyObject *self, PyObject *args);
PyObject *psutil_proc_cpu_num(PyObject *self, PyObject *args);
PyObject *psutil_proc_cpu_times(PyObject *self, PyObject *args);
PyObject *psutil_proc_cred(PyObject *self, PyObject *args);
PyObject *psutil_proc_environ(PyObject *self, PyObject *args);
PyObject *psutil_proc_memory_maps(PyObject *self, PyObject *args);
PyObject *psutil_proc_name_and_args(PyObject *self, PyObject *args);
PyObject *psutil_proc_num_ctx_switches(PyObject *self, PyObject *args);
PyObject *psutil_proc_query_thread(PyObject *self, PyObject *args);