summaryrefslogtreecommitdiff
path: root/tools/include
AgeCommit message (Expand)AuthorFilesLines
2022-04-21tools/nolibc/string: add strcmp() and strncmp()Willy Tarreau1-0/+23
2022-04-21tools/nolibc/stdio: add support for '%p' to vfprintf()Willy Tarreau1-11/+19
2022-04-21tools/nolibc/stdlib: add a simple getenv() implementationWilly Tarreau1-0/+23
2022-04-21tools/nolibc/stdio: make printf(%s) accept NULLWilly Tarreau1-0/+2
2022-04-21tools/nolibc/stdlib: implement abort()Willy Tarreau1-0/+8
2022-04-21tools/nolibc: also mention how to build by just setting the include pathWilly Tarreau1-10/+20
2022-04-21tools/nolibc/time: create time.h with time()Willy Tarreau2-0/+29
2022-04-21tools/nolibc/signal: move raise() to signal.hWilly Tarreau3-7/+23
2022-04-21tools/nolibc/unistd: add usleep()Willy Tarreau1-0/+8
2022-04-21tools/nolibc/unistd: extract msleep(), sleep(), tcsetpgrp() to unistd.hWilly Tarreau3-30/+47
2022-04-21tools/nolibc/errno: extract errno.h from sys.hWilly Tarreau3-16/+29
2022-04-21tools/nolibc/string: export memset() and memmove()Willy Tarreau1-2/+8
2022-04-21tools/nolibc/types: define PATH_MAX and MAXPATHLENWilly Tarreau1-0/+11
2022-04-21tools/nolibc/arch: mark the _start symbol as weakWilly Tarreau6-0/+6
2022-04-21tools/nolibc: move exported functions to their own sectionWilly Tarreau2-2/+2
2022-04-21tools/nolibc/string: add tiny versions of strncat() and strlcat()Willy Tarreau1-0/+41
2022-04-21tools/nolibc/string: add strncpy() and strlcpy()Willy Tarreau1-0/+28
2022-04-21tools/nolibc/string: slightly simplify memmove()Willy Tarreau1-6/+14
2022-04-21tools/nolibc/string: use unidirectional variants for memcpy()Willy Tarreau1-1/+23
2022-04-21tools/nolibc/sys: make getpgrp(), getpid(), gettid() not set errnoWilly Tarreau1-21/+3
2022-04-21tools/nolibc/stdlib: make raise() use the lower level syscalls onlyWilly Tarreau1-1/+1
2022-04-21tools/nolibc/stdlib: avoid a 64-bit shift in u64toh_r()Willy Tarreau1-6/+10
2022-04-21tools/nolibc/sys: make open() take a vararg on the 3rd argumentWilly Tarreau1-3/+15
2022-04-21tools/nolibc/stdio: add perror() to report the errno valueWilly Tarreau1-0/+6
2022-04-21tools/nolibc/types: define EXIT_SUCCESS and EXIT_FAILUREWilly Tarreau1-0/+3
2022-04-21tools/nolibc/stdio: add a minimal [vf]printf() implementationWilly Tarreau1-0/+128
2022-04-21tools/nolibc/stdio: add fwrite() to stdioWilly Tarreau1-7/+28
2022-04-21tools/nolibc/stdio: add stdin/stdout/stderr and fget*/fput* functionsWilly Tarreau1-6/+89
2022-04-21tools/nolibc/stdio: add a minimal set of stdio functionsWilly Tarreau2-0/+58
2022-04-21tools/nolibc/stdlib: add utoh() and u64toh()Willy Tarreau1-0/+80
2022-04-21tools/nolibc/stdlib: add i64toa() and u64toa()Willy Tarreau1-0/+72
2022-04-21tools/nolibc/stdlib: replace the ltoa() function with more efficient onesWilly Tarreau1-21/+88
2022-04-21tools/nolibc/stdlib: move ltoa() to stdlib.hWilly Tarreau2-22/+32
2022-04-21tools/nolibc/types: move makedev to types.h and make it a macroWilly Tarreau2-9/+5
2022-04-21tools/nolibc/types: make FD_SETSIZE configurableWilly Tarreau1-2/+4
2022-04-21tools/nolibc/types: move the FD_* functions to macros in types.hWilly Tarreau2-14/+30
2022-04-21tools/nolibc/ctype: add the missing is* functionsWilly Tarreau1-1/+78
2022-04-21tools/nolibc/ctype: split the is* functions to ctype.hWilly Tarreau2-6/+23
2022-04-21tools/nolibc/string: split the string functions into string.hWilly Tarreau2-95/+108
2022-04-21tools/nolibc/stdlib: extract the stdlib-specific functions to their own fileWilly Tarreau2-66/+86
2022-04-21tools/nolibc/sys: split the syscall definitions into their own fileWilly Tarreau2-962/+1192
2022-04-21tools/nolibc/arch: split arch-specific code into individual filesWilly Tarreau8-1186/+1266
2022-04-21tools/nolibc/types: split syscall-specific definitions into their own filesWilly Tarreau2-108/+135
2022-04-21tools/nolibc/std: move the standard type definitions to std.hWilly Tarreau2-37/+54
2022-04-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni1-0/+7
2022-04-12tools/nolibc: guard the main file against multiple inclusionWilly Tarreau1-0/+4
2022-04-12tools/nolibc: use pselect6 on RISCVWilly Tarreau1-0/+3
2022-04-11libbpf: Add ARC support to bpf_tracing.hVladimir Isaev1-0/+2
2022-04-09tools include UAPI: Sync linux/vhost.h with the kernel sourcesArnaldo Carvalho de Melo1-0/+7
2022-04-09Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski1-2/+2