1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-08-09 23:43:57 +00:00

mpb: add threads.c plugin

This commit is contained in:
Helmut Grohne 2013-02-05 13:12:43 +01:00
parent 05a642549d
commit 4337b550a0
3 changed files with 78 additions and 2 deletions

View file

@ -1,9 +1,10 @@
CC=gcc
CFLAGS=-W -Wall -pedantic -Wextra -g -O2
OBJS=main.o common.o cpu.o entropy.o forks.o fw_packets.o interrupts.o \
if_err_.o load.o open_files.o open_inodes.o processes.o swap.o uptime.o
if_err_.o load.o open_files.o open_inodes.o processes.o swap.o threads.o \
uptime.o
LINKS=cpu entropy forks fw_packets interrupts if_err_eth0 load open_files \
open_inodes processes swap uptime
open_inodes processes swap threads uptime
%.o:%.c
${CC} ${CFLAGS} -c $< -o $@