blob: 06dc3370a54ee7d8232f2c048a7e43577ceb9de6 [file] [log] [blame]
#!/bin/bash
# thread 0 pthread_cond_broadcast() latency: 83 microseconds
awk ' {
histogram[$5]++;
}
END {
for (i in histogram) {
print i, histogram[i];
}
}' | sort +0nr