aboutsummaryrefslogtreecommitdiff
path: root/tools/include/nolibc
AgeCommit message (Expand)AuthorFilesLines
2026-03-20tools/nolibc/printf: Add support for conversion flags space and plusDavid Laight1-1/+5
2026-03-20tools/nolibc/printf: Prepend sign to converted numberDavid Laight1-9/+27
2026-03-20tools/nolibc/printf: Handle "%s" with the numeric formatsDavid Laight1-10/+11
2026-03-20tools/nolibc/printf: Add support for length modifiers tzqL and formats iXDavid Laight1-11/+16
2026-03-20tools/nolibc/printf: Use bit-masks to hold requested flag, length and convers...David Laight1-48/+106
2026-03-20tools/nolibc/printf: Use goto and reduce indentationDavid Laight1-78/+93
2026-03-20tools/nolibc/printf: Simplify __nolibc_printf()David Laight1-51/+53
2026-03-20tools/nolibc/printf: Output pad characters in 16 byte chunksDavid Laight1-5/+9
2026-03-20tools/nolibc: Rename the 'errnum' parameter to strerror()David Laight1-2/+2
2026-03-20tools/nolibc: Implement strerror() in terms of strerror_r()David Laight1-3/+19
2026-03-20tools/nolibc: Add _NOLIBC_OPTIMIZER_HIDE_VAR() to compiler.hDavid Laight1-0/+3
2026-03-20tools/nolibc/printf: Move snprintf length check to callbackDavid Laight1-27/+67
2026-03-20tools/nolibc/printf: Change variables 'c' to 'ch' and 'tmpbuf[]' to 'outbuf[]'David Laight1-19/+19
2026-03-20tools/nolibc: Optimise and common up the number to ascii functionsDavid Laight1-87/+82
2026-02-25tools/nolibc: rename my_syscallX() to __nolibc_syscallX()Thomas Weißschuh34-218/+220
2026-01-11tools/nolibc: Add fseek() to stdio.hDaniel Palmer1-0/+19
2026-01-11tools/nolibc: Add fread() to stdio.hDaniel Palmer1-1/+33
2026-01-06tools/nolibc: align sys_vfork() with sys_fork()Thomas Weißschuh2-13/+13
2026-01-06selftests/nolibc: add static assertions around time types handlingThomas Weißschuh2-0/+22
2026-01-06tools/nolibc: add __nolibc_static_assert()Thomas Weißschuh1-0/+8
2026-01-06tools/nolibc: add compiler version detection macrosThomas Weißschuh1-0/+16
2026-01-06tools/nolibc: remove time conversionsThomas Weißschuh2-76/+8
2026-01-04tools/nolibc: always use 64-bit time typesThomas Weißschuh2-5/+6
2026-01-04tools/nolibc: use custom structs timespec and timevalThomas Weißschuh2-1/+18
2026-01-04tools/nolibc/select: avoid libgcc 64-bit multiplicationsThomas Weißschuh1-2/+2
2026-01-04tools/nolibc/gettimeofday: avoid libgcc 64-bit divisionsThomas Weißschuh1-1/+1
2026-01-04tools/nolibc: prefer explicit 64-bit time-related system callsThomas Weißschuh4-34/+34
2026-01-04tools/nolibc/time: drop invocation of gettimeofday system callThomas Weißschuh1-4/+0
2026-01-04tools/nolibc/select: drop non-pselect based implementationsThomas Weißschuh1-12/+1
2026-01-04tools/nolibc/poll: drop __NR_poll fallbackThomas Weißschuh1-3/+1
2026-01-04tools/nolibc/poll: use kernel types for system call invocationsThomas Weißschuh2-2/+2
2026-01-04tools/nolibc: always use 64-bit mode for s390 header checksThomas Weißschuh1-1/+4
2026-01-04tools/nolibc: add ptrace supportBenjamin Berg3-0/+35
2025-12-03Merge tag 'nolibc-20251130-for-6.19-1' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds34-162/+275
2025-11-20tools/nolibc: remove more __nolibc_enosys() fallbacksThomas Weißschuh1-12/+4
2025-11-20tools/nolibc: remove now superfluous overflow check in llseekThomas Weißschuh1-2/+0
2025-11-20tools/nolibc: use 64-bit off_tThomas Weißschuh1-1/+1
2025-11-20tools/nolibc: prefer the llseek syscallThomas Weißschuh1-3/+3
2025-11-20tools/nolibc: handle 64-bit off_t for llseekThomas Weißschuh1-2/+1
2025-11-20tools/nolibc: use 64-bit ino_tThomas Weißschuh1-1/+1
2025-11-17tools: Remove s390 compat supportHeiko Carstens2-6/+1
2025-11-09tools/nolibc: avoid using plain integer as NULL pointerThomas Weißschuh4-6/+6
2025-11-08tools/nolibc: add support for fchdir()Thomas Weißschuh1-0/+13
2025-11-02tools/nolibc: clean up outdated comments in generic arch.hWilly Tarreau1-9/+0
2025-11-02tools/nolibc: make the "headers" target install all supported archsWilly Tarreau1-13/+6
2025-11-02tools/nolibc: add the more portable inttypes.hWilly Tarreau2-0/+4
2025-11-02tools/nolibc: provide the portable sys/select.hWilly Tarreau5-92/+105
2025-11-02tools/nolibc: add missing memchr() to string.hWilly Tarreau1-0/+15
2025-11-02tools/nolibc: fix misleading help message regarding installation pathWilly Tarreau1-1/+1
2025-10-29tools/nolibc: add uio.h with readv and writevBenjamin Berg3-0/+51