summaryrefslogtreecommitdiff
path: root/pcp/mkheader.pl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-04-12 12:49:58 +0200
committerStefan Metzmacher <metze@samba.org>2010-04-12 12:49:58 +0200
commit49d4dd530f3983de2e538e07b32e1c3df4efa649 (patch)
treec2541c8be7f2b3430318d62da9b8b4efffcdc5c3 /pcp/mkheader.pl
parent143d3f1d90b1d8e35f03e03aa7d39c4090fe0296 (diff)
downloadsamba-49d4dd530f3983de2e538e07b32e1c3df4efa649.tar.gz
samba-49d4dd530f3983de2e538e07b32e1c3df4efa649.tar.bz2
samba-49d4dd530f3983de2e538e07b32e1c3df4efa649.zip
Remove unused pcp/ directory.
metze
Diffstat (limited to 'pcp/mkheader.pl')
-rwxr-xr-xpcp/mkheader.pl63
1 files changed, 0 insertions, 63 deletions
diff --git a/pcp/mkheader.pl b/pcp/mkheader.pl
deleted file mode 100755
index ad069c544a..0000000000
--- a/pcp/mkheader.pl
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/usr/bin/perl
-
-
-open(PROFILE,"profile.h") || die "Unable to open profile.h\n";
-@profile = <PROFILE>;
-close PROFILE;
-
-open(METRICS,"> metrics.h") || die "Unable to open metrics.h for output\n";
-
-print METRICS "#define COUNT_TIME_INDOM 0\n";
-print METRICS "#define BYTE_INDOM 1\n\n";
-print METRICS "#define FIELD_OFF(x) (unsigned)\&(((struct profile_stats *)NULL)->x)\n\n";
-print METRICS "typedef struct {\n";
-print METRICS "\tchar *name;\n";
-print METRICS "\tunsigned offset;\n";
-print METRICS "} samba_instance;\n\n";
-
-@instnames = grep(/unsigned .*_time;/,@profile);
-foreach $instnames (@instnames) {
- chomp $instnames;
- $instnames =~ s/^.*unsigned (.*)_time.*$/$1/;
-}
-
-print METRICS "static samba_instance samba_counts[] = {";
-$first = 1;
-foreach $1 (@instnames) {
- if ($first == 1) {
- $first = 0;
- print METRICS "\n";
- } else {
- print METRICS ",\n";
- }
- print METRICS "\t{\"$1\", FIELD_OFF($1_count)}";
-}
-print METRICS "\n};\n\n";
-print METRICS "static samba_instance samba_times[] = {";
-$first = 1;
-foreach $1 (@instnames) {
- if ($first == 1) {
- $first = 0;
- print METRICS "\n";
- } else {
- print METRICS ",\n";
- }
- print METRICS "\t{\"$1\", FIELD_OFF($1_time)}";
-}
-print METRICS "\n};\n\n";
-print METRICS "static samba_instance samba_bytes[] = {";
-@instnames = grep(/unsigned .*_bytes;/,@profile);
-$first = 1;
-foreach $_ (@instnames) {
- if ($first == 1) {
- $first = 0;
- print METRICS "\n";
- } else {
- print METRICS ",\n";
- }
- /^.*unsigned (.*)_bytes.*$/;
- print METRICS "\t{\"$1\", FIELD_OFF($1_bytes)}";
-}
-print METRICS "\n};\n";
-
-close METRICS