doc -> docs (pypi)

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-10-25 17:17:52 +02:00
commit 6d1e4d06cf
133 changed files with 12 additions and 12 deletions

23
docs/dev/benchmark-oprofile Executable file
View file

@ -0,0 +1,23 @@
#!/bin/sh -x
# Cleanup
opcontrol --no-vmlinux
opcontrol --stop
opcontrol --shutdown
opcontrol --reset
# Record all calls
opcontrol --separate=none
# NMI conflicts with oprofile
echo 0 > /proc/sys/kernel/nmi_watchdog
# Select events to be recorded
opcontrol --event=CPU_CLK_UNHALTED:30000:0:1:1
opcontrol --start
# The actual programm
"$@"
opcontrol --stop
opcontrol --dump
echo "Output: opreport -l"