File: procinfo.h

package info (click to toggle)
sinfo 0.0.48-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 3,332 kB
  • sloc: sh: 11,213; cpp: 6,722; makefile: 271; xml: 151; perl: 149
file content (22 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _procinfo_h
#define _procinfo_h

#include <list>
#include <string>


struct Procinfo
{
  int pid;                           // process ID
  std::string command;               // the name of the running process
  char state;                        // the process state 'R'=running, ...
  int priority;
  std::string username;              // translated UID
  float cpupercent;                  // CPU usage of this process
};


typedef std::list < Procinfo > ProcinfoList;


#endif // _procinfo_h