diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-03-16 21:35:55 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-03-16 21:38:34 -0700 |
commit | fffcc8b9abf43a69d71c37c92fc149f661dd6da1 (patch) | |
tree | c5a796db79955008c46a61bda54da7e41a47ffb7 /src/teliva.c | |
parent | d6554919b1e2e5f598e7997297a358905ee54913 (diff) | |
download | teliva-fffcc8b9abf43a69d71c37c92fc149f661dd6da1.tar.gz |
stop running task.scheduler by default
sieve.tlv is 50% slower (18s vs 12s) with the new function call instrumentation.
Diffstat (limited to 'src/teliva.c')
-rw-r--r-- | src/teliva.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/teliva.c b/src/teliva.c index dbd0677..1e2eb34 100644 --- a/src/teliva.c +++ b/src/teliva.c @@ -484,7 +484,7 @@ restart: y += 2; mvprintw(y, 0, "functions: "); y++; - for (int depth = /*ignore callers of main*/3; ; ++depth) { + for (int depth = /*main*/2; ; ++depth) { mvaddstr(y, 0, " "); bool drew_anything = false; index_within_level = 0; |