Tavian Barnes

Results 46 issues of Tavian Barnes

I have this in `/etc/sddm.conf.d/tty.conf` to keep VT 1 free so I can see boot messages if I need to: ``` [X11] MinimumVT = 7 ``` I recently started using...

The decompiler's type propagation algorithm flows through INDIRECT pcode ops. For INDIRECT ops that represent call-clobbered registers, this can lead to incorrect types being inferred, even after the correct type...

Feature: Decompiler

I saw commit https://github.com/uutils/coreutils/pull/2624/commits/ef9c5d4fcf13fdc0c7bc8f3a8d14f84c3986ee51 and figured I should test this situation: ``` $ name="0123456789ABCDEF" $ name="${name}${name}${name}${name}" $ name="${name}${name}${name}${name}" $ name="${name:0:255}" $ mkdir deep && cd deep && for i in...

U - cp

```console tavianator@tachyon $ cat foo.c #include int main(void) { return _Alignof(max_align_t); } tavianator@tachyon $ gcc foo.c -o foo && { ./foo; echo $? } 16 tavianator@tachyon $ cosmocc foo.c -o...

```console tavianator@tachyon $ cat foo.c #include int main(void) { printf("|% 10.10s|\n", "string"); return 0; } tavianator@tachyon $ gcc foo.c -o foo && ./foo | string| tavianator@tachyon $ cosmocc foo.c -o...

I am trying to write some production-grade benchmarks for `bfs` with early termination, something like ``` bfs -name pattern -quit ``` where `pattern` is the name of some file at...

feature-request

setlocale() affects the entire process, potentially changing the locale while another thread is executing. In POSIX.1-2008, a thread-safe uselocale() function was added that affects only the current thread. Use this...

See also https://github.com/cjlin1/liblinear/pull/14.

strtok() (as well as the internal readline() function) used global state, and therefore were not thread-safe. Replace them with reentrant equivalents. Thread-safety of loading was checked with valgrind's helgrind and...

`Command`s inherit the parent's environment variables by default. Right now we check the size of the environment when you create a `Command`, but it can be modified in the meantime:...