47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2008 Hyperic, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "sigar.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
int status, i;
|
|
sigar_t *sigar;
|
|
sigar_cpu_list_t cpulist;
|
|
|
|
sigar_open(&sigar);
|
|
|
|
status = sigar_cpu_list_get(sigar, &cpulist);
|
|
|
|
if (status != SIGAR_OK) {
|
|
printf("cpu_list error: %d (%s)\n",
|
|
status, sigar_strerror(sigar, status));
|
|
exit(1);
|
|
}
|
|
|
|
for (i=0; i<cpulist.number; i++) {
|
|
sigar_cpu_t cpu = cpulist.data[i];
|
|
/*...*/
|
|
}
|
|
|
|
sigar_cpu_list_destroy(sigar, &cpulist);
|
|
|
|
sigar_close(sigar);
|
|
|
|
return 0;
|
|
}
|