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/counts.d | |
parent | 27cf83d177256813e2e802241085fce5dd0f3fb9 (diff) |
Update to MediaWiki 1.19.0
Diffstat (limited to 'maintenance/dtrace/counts.d')
-rw-r--r-- | maintenance/dtrace/counts.d | 23 |
1 files changed, 0 insertions, 23 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); -} - |