summaryrefslogtreecommitdiffstats
path: root/tools/include/nolibc
Commit message (Expand)AuthorAgeFilesLines
* tools/nolibc: prevent gcc from making memset() loop over itselfWilly Tarreau2023-02-011-1/+4
* tools/nolibc: fix missing includes causing build issues at -O0Willy Tarreau2023-02-0110-0/+29
* tools/nolibc: Fix S_ISxxx macrosWarner Losh2023-02-011-7/+7
* nolibc: fix fd_set typeSven Schnelle2023-02-011-23/+30
* tools/nolibc: fix the O_* fcntl/open macro definitions for riscvWilly Tarreau2023-01-181-7/+7
* tools/nolibc: restore mips branch ordering in the _start blockWilly Tarreau2023-01-181-0/+2
* tools/nolibc/string: Fix memcmp() implementationRasmus Villemoes2022-10-281-2/+2
* tools/nolibc: Fix missing strlen() definition and infinite loop with gcc-12Willy Tarreau2022-10-281-5/+8
* tools/nolibc: make sys_mmap() automatically use the right __NR_mmap definitionWilly Tarreau2022-08-311-1/+1
* tools/nolibc: fix build warning in sys_mmap() when my_syscall6 is not definedWilly Tarreau2022-08-311-1/+1
* tools/nolibc: make argc 32-bit in riscv startup codeWilly Tarreau2022-08-311-1/+1
* tools/nolibc: add a help target to list supported targetsWilly Tarreau2022-06-201-0/+17
* tools/nolibc: make the default target build the headersWilly Tarreau2022-06-201-1/+1
* tools/nolibc: fix the makefile to also work as "make -C tools ..."Willy Tarreau2022-06-201-1/+17
* tools/nolibc/stdio: Add format attribute to enable printf warningsAlviro Iskandar Setiawan2022-06-201-2/+2
* tools/nolibc/stdlib: Support overflow checking for older compiler versionsAmmar Faizi2022-06-201-4/+3
* tools/nolibc/string: Implement `strdup()` and `strndup()`Ammar Faizi2022-04-201-0/+32
* tools/nolibc/string: Implement `strnlen()`Ammar Faizi2022-04-201-0/+9
* tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`Ammar Faizi2022-04-201-0/+81
* tools/nolibc/types: Implement `offsetof()` and `container_of()` macroAmmar Faizi2022-04-201-0/+11
* tools/nolibc/sys: Implement `mmap()` and `munmap()`Ammar Faizi2022-04-201-0/+62
* tools/nolibc: i386: Implement syscall with 6 argumentsAmmar Faizi2022-04-201-0/+23
* tools/nolibc: Remove .global _start from the entry point codeAmmar Faizi2022-04-206-6/+0
* tools/nolibc: Replace `asm` with `__asm__`Ammar Faizi2022-04-206-198/+198
* tools/nolibc: x86-64: Update System V ABI document linkAmmar Faizi2022-04-201-1/+1
* tools/nolibc/stdlib: only reference the external environ when inlinedWilly Tarreau2022-04-201-7/+15
* tools/nolibc/string: do not use __builtin_strlen() at -O0Willy Tarreau2022-04-201-1/+10
* tools/nolibc: add a makefile to install headersWilly Tarreau2022-04-201-0/+42
* tools/nolibc/types: add poll() and waitpid() flag definitionsWilly Tarreau2022-04-201-0/+10
* tools/nolibc/sys: add syscall definition for getppid()Willy Tarreau2022-04-201-0/+17
* tools/nolibc/string: add strcmp() and strncmp()Willy Tarreau2022-04-201-0/+23
* tools/nolibc/stdio: add support for '%p' to vfprintf()Willy Tarreau2022-04-201-11/+19
* tools/nolibc/stdlib: add a simple getenv() implementationWilly Tarreau2022-04-201-0/+23
* tools/nolibc/stdio: make printf(%s) accept NULLWilly Tarreau2022-04-201-0/+2
* tools/nolibc/stdlib: implement abort()Willy Tarreau2022-04-201-0/+8
* tools/nolibc: also mention how to build by just setting the include pathWilly Tarreau2022-04-201-10/+20
* tools/nolibc/time: create time.h with time()Willy Tarreau2022-04-202-0/+29
* tools/nolibc/signal: move raise() to signal.hWilly Tarreau2022-04-203-7/+23
* tools/nolibc/unistd: add usleep()Willy Tarreau2022-04-201-0/+8
* tools/nolibc/unistd: extract msleep(), sleep(), tcsetpgrp() to unistd.hWilly Tarreau2022-04-203-30/+47
* tools/nolibc/errno: extract errno.h from sys.hWilly Tarreau2022-04-203-16/+29
* tools/nolibc/string: export memset() and memmove()Willy Tarreau2022-04-201-2/+8
* tools/nolibc/types: define PATH_MAX and MAXPATHLENWilly Tarreau2022-04-201-0/+11
* tools/nolibc/arch: mark the _start symbol as weakWilly Tarreau2022-04-206-0/+6
* tools/nolibc: move exported functions to their own sectionWilly Tarreau2022-04-202-2/+2
* tools/nolibc/string: add tiny versions of strncat() and strlcat()Willy Tarreau2022-04-201-0/+41
* tools/nolibc/string: add strncpy() and strlcpy()Willy Tarreau2022-04-201-0/+28
* tools/nolibc/string: slightly simplify memmove()Willy Tarreau2022-04-201-6/+14
* tools/nolibc/string: use unidirectional variants for memcpy()Willy Tarreau2022-04-201-1/+23
* tools/nolibc/sys: make getpgrp(), getpid(), gettid() not set errnoWilly Tarreau2022-04-201-21/+3