summaryrefslogtreecommitdiff
path: root/src/pmdas/hotproc/src/pglobal.c
blob: 3c4a1ac7d6a6ef1fdd87e3f307305bcfd4e4b9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright (c) 1995 Silicon Graphics, Inc.  All Rights Reserved.
 * 
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * for more details.
 */

#include <unistd.h>
#include <stdio.h>
#include <syslog.h>
#include <fcntl.h>
#include <ctype.h>
#include <sys/stat.h>
#include <dirent.h>
#include <sys/procfs.h>
#include <sys/immu.h>
#include <sys/sysmacros.h>
#include <pwd.h>
#include <grp.h>

#include "pmapi.h"

#include "./proc.h"
#include "./proc_aux.h"
#include "./pglobal.h"

static pmDesc	desctab[] = {
    { PMID(CLUSTER_GLOBAL,ITEM_NPROCS), 
      PM_TYPE_32, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_REFRESH), 
      PM_TYPE_32, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_CONFIG), 
      PM_TYPE_STRING, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_CONFIG_GEN), 
      PM_TYPE_32, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_CPUIDLE), 
      PM_TYPE_FLOAT, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_TOTAL_CPUBURN), 
      PM_TYPE_FLOAT, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_TRANSIENT), 
      PM_TYPE_FLOAT, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_TOTAL_NOTCPUBURN), 
      PM_TYPE_FLOAT, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_OTHER_TOTAL), 
      PM_TYPE_FLOAT, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} },
    { PMID(CLUSTER_GLOBAL,ITEM_OTHER_PERCENT), 
      PM_TYPE_FLOAT, PM_INDOM_NULL, PM_SEM_INSTANT, {0,0,0,0,0,0} }
};

static int      ndesc = (sizeof(desctab)/sizeof(desctab[0]));


void
pglobal_init(int dom)
{
    init_table(ndesc, desctab, dom);
}

int 
pglobal_getdesc(pmID pmid, pmDesc *desc)
{
    return getdesc(ndesc, desctab, pmid, desc);
}

int
pglobal_setatom(int item, pmAtomValue *atom, int j)
{
    /* noop */
    return 0;
}


int
pglobal_getinfo(pid_t pid, int j)
{
    /* noop */
    return 0;
}


int
pglobal_allocbuf(int size)
{
    /* noop */
    return 0;
}