diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
commit | d9022f63880ce039446fba8364f68e656b7bf4cb (patch) | |
tree | 16b40fbf17bf7c9ee6f4ead25b16dd192378050a /maintenance/dtrace | |
parent | 27cf83d177256813e2e802241085fce5dd0f3fb9 (diff) |
Update to MediaWiki 1.19.0
Diffstat (limited to 'maintenance/dtrace')
-rw-r--r-- | maintenance/dtrace/counts.d | 23 | ||||
-rw-r--r-- | maintenance/dtrace/tree.d | 26 |
2 files changed, 0 insertions, 49 deletions
diff --git a/maintenance/dtrace/counts.d b/maintenance/dtrace/counts.d deleted file mode 100644 index bedb4547..00000000 --- a/maintenance/dtrace/counts.d +++ /dev/null @@ -1,23 +0,0 @@ -/* - * This software is in the public domain. - * - * $Id$ - */ - -#pragma D option quiet - -self int tottime; -BEGIN { - tottime = timestamp; -} - -php$target:::function-entry - @counts[copyinstr(arg0)] = count(); -} - -END { - printf("Total time: %dus\n", (timestamp - tottime) / 1000); - printf("# calls by function:\n"); - printa("%-40s %@d\n", @counts); -} - diff --git a/maintenance/dtrace/tree.d b/maintenance/dtrace/tree.d deleted file mode 100644 index a799cb12..00000000 --- a/maintenance/dtrace/tree.d +++ /dev/null @@ -1,26 +0,0 @@ -/* - * This software is in the public domain. - * - * $Id$ - */ - -#pragma D option quiet - -self int indent; -self int times[int]; - -php$target:::function-entry -{ - @counts[copyinstr(arg0)] = count(); - printf("%*s", self->indent, ""); - printf("-> %s\n", copyinstr(arg0)); - self->times[self->indent] = timestamp; - self->indent += 2; -} - -php$target:::function-return -{ - self->indent -= 2; - printf("%*s", self->indent, ""); - printf("<- %s %dus\n", copyinstr(arg0), (timestamp - self->times[self->indent]) / 1000); -} |