blob: f670f7e4b53668e0e56f6ca1a4f524ccd3d324e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# pin current shell to CPU1
tasket -p 2 $$
# start pingserver in the background
# (should start dbus-daemon session)
./pingserver &
# make sure dbus-daemon is also pinned to CPU1
taskset -p 2 `pidof dbus-daemon`
# send 1MiB messages to the pingserver via dbus
# (take note of the timestamps)
./pingclient 1048576
|