Running go tool pprof with a cpu profile for https://github.com/vimeo/statsdaemon and typing "web" I get an svg profile with extensive use of "runtime.futex". But I can't see where it's coming from, it just says "System".
I want to know which code my program invokes, that causes so much time spent in runtime.futex.

To be sure I passed '-nodefraction=0' which makes it not drop nodes in the web svg view, though it says "showing top 80 nodes out of 246 (cum >= 0.11s)", maybe this is related.
I tried https://code.google.com/p/gperftools/ and it shows the same. The viz drops no nodes or edges, but still "runtime.futex" just shows up under "System" and that's the root node?