diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-01 11:40:45 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-03 03:54:25 -0400 |
commit | 545109cf2df4548aae754734cc7b0852485d4edd (patch) | |
tree | 9c529f819ac59816e36a5943fa2c6f151e72630c | |
parent | eba58b718860035b830d0739a02c6a382e1f3307 (diff) |
Add fetch_deps to syscall count.
The benchmark was added in b7fd6e but was not surfaced in the UI.
TODO: The tests should have failed and caught this situation.
-rw-r--r-- | website/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/app.js b/website/app.js index da29797a8..c058829a1 100644 --- a/website/app.js +++ b/website/app.js @@ -66,7 +66,7 @@ export function createThreadCountColumns(data) { ]); } -const syscallCountNames = ["hello"]; +const syscallCountNames = ["hello", "fetch_deps"]; export function createSyscallCountColumns(data) { return syscallCountNames.map(name => [ name, |