- Jan 12, 2025
-
-
Rob Swindell authored
-
Deucе authored
We're building these one byte at a time, we know the length. 1.98s
-
Deucе authored
For now we're still using strlen, but we can avoid the call for the common case of zero-length returns.
-
Deucе authored
2.1 seconds.
-
Deucе authored
-
Deucе authored
This should avoid angering Coverity.
-
Deucе authored
-
Deucе authored
Also, no, Coverity still doesn't know from recursive mutexes.
-
Deucе authored
Thanks coverity!
-
Deucе authored
They're all from accessing list values outside of a lock. Lock the list earlier to include these. Also, does this mean it knows they're recursive now? Let's find out!
-
Deucе authored
-
Deucе authored
Make the one who opens it responsible for closing it.
-
Deucе authored
-
Deucе authored
-
Deucе authored
This is a heavily accessed value that is rarely changed and was causing a lot of contention on vstatlock. Down to 2.9 seconds.
-
Deucе authored
-
Deucе authored
Derp.
-
Deucе authored
Down to 3.4s now.
-
Deucе authored
Fixes issue where returning to the main menu always takes you to the top option.
-
Deucе authored
The SSH input thread is too complex to easily make this change.
-
Deucе authored
-
Deucе authored
Coverity thinks it can do the default case.
-
Deucе authored
Thanks Coverity!
-
Deucе authored
Shaves time down to 3.85 seconds.
-
Deucе authored
Fixes high CPU when nothing is happening.
-
Deucе authored
-
Deucе authored
-
Rob Swindell authored
-
Rob Swindell authored
SUB and DIR have long had this bug, but I just noticed while playing with the new USER keyword capabilities (specifying user numbers and/or names). If you switched between numeric and alpha/string parameters, without restating the ARS keyword, the keyword would could end up wrong in the parsed byte array.
-
- Jan 11, 2025
-
-
Rob Swindell authored
Caveat: the name parameter cannot contain a space, so excludes spaces or replace them with '.' or '_': the user's alias will match.
-
Rob Swindell authored
This fixes issue #748
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
Work-around for issue #861 This is the utility script for maintaining file bases, if you didn't know. :-)
-
Deucе authored
This shaves off another .75 seconds, and gets rid of the last glaring plateau in the stack flamegraph. What's interersting is that I'm seeing my CPU utilization drop now too, which implies I've reached the speed of the pty connection type, or the speed of the term worker loop. Maybe I'll look there next, but since the pty isn't a major use-case for SyncTERM, I may not... at this point it's just benchmark golf.
-
Deucе authored
-
Deucе authored
-
Deucе authored
This was the only standout issue when profiling the ANSI parsing code, and is a trivial fix since we're pretty much only checking contiguous ranges of characters. Unfortunately, I didn't create a test for comparison here.
-
Deucе authored
Still massaging more speed out of it.
-
Deucе authored
Down to 4.7s now... 38× faster. Starting to get somewhere useful now.
-