aboutsummaryrefslogtreecommitdiff
path: root/tools/include/nolibc
AgeCommit message (Expand)AuthorFilesLines
2023-01-09tools/nolibc: fix the O_* fcntl/open macro definitions for riscvGravatar Willy Tarreau 1-7/+7
2023-01-09tools/nolibc: prevent gcc from making memset() loop over itselfGravatar Willy Tarreau 1-1/+4
2023-01-09tools/nolibc: fix missing includes causing build issues at -O0Gravatar Willy Tarreau 10-0/+29
2023-01-09tools/nolibc: restore mips branch ordering in the _start blockGravatar Willy Tarreau 1-0/+2
2023-01-09tools/nolibc: Fix S_ISxxx macrosGravatar Warner Losh 1-7/+7
2023-01-09nolibc: fix fd_set typeGravatar Sven Schnelle 1-23/+30
2022-10-28tools/nolibc/string: Fix memcmp() implementationGravatar Rasmus Villemoes 1-2/+2
2022-10-28tools/nolibc: Fix missing strlen() definition and infinite loop with gcc-12Gravatar Willy Tarreau 1-5/+8
2022-08-31tools/nolibc: make sys_mmap() automatically use the right __NR_mmap definitionGravatar Willy Tarreau 1-1/+1
2022-08-31tools/nolibc: fix build warning in sys_mmap() when my_syscall6 is not definedGravatar Willy Tarreau 1-1/+1
2022-08-31tools/nolibc: make argc 32-bit in riscv startup codeGravatar Willy Tarreau 1-1/+1
2022-06-20tools/nolibc: add a help target to list supported targetsGravatar Willy Tarreau 1-0/+17
2022-06-20tools/nolibc: make the default target build the headersGravatar Willy Tarreau 1-1/+1
2022-06-20tools/nolibc: fix the makefile to also work as "make -C tools ..."Gravatar Willy Tarreau 1-1/+17
2022-06-20tools/nolibc/stdio: Add format attribute to enable printf warningsGravatar Alviro Iskandar Setiawan 1-2/+2
2022-06-20tools/nolibc/stdlib: Support overflow checking for older compiler versionsGravatar Ammar Faizi 1-4/+3
2022-04-20tools/nolibc/string: Implement `strdup()` and `strndup()`Gravatar Ammar Faizi 1-0/+32
2022-04-20tools/nolibc/string: Implement `strnlen()`Gravatar Ammar Faizi 1-0/+9
2022-04-20tools/nolibc/stdlib: Implement `malloc()`, `calloc()`, `realloc()` and `free()`Gravatar Ammar Faizi 1-0/+81
2022-04-20tools/nolibc/types: Implement `offsetof()` and `container_of()` macroGravatar Ammar Faizi 1-0/+11
2022-04-20tools/nolibc/sys: Implement `mmap()` and `munmap()`Gravatar Ammar Faizi 1-0/+62
2022-04-20tools/nolibc: i386: Implement syscall with 6 argumentsGravatar Ammar Faizi 1-0/+23
2022-04-20tools/nolibc: Remove .global _start from the entry point codeGravatar Ammar Faizi 6-6/+0
2022-04-20tools/nolibc: Replace `asm` with `__asm__`Gravatar Ammar Faizi 6-198/+198
2022-04-20tools/nolibc: x86-64: Update System V ABI document linkGravatar Ammar Faizi 1-1/+1
2022-04-20tools/nolibc/stdlib: only reference the external environ when inlinedGravatar Willy Tarreau 1-7/+15
2022-04-20tools/nolibc/string: do not use __builtin_strlen() at -O0Gravatar Willy Tarreau 1-1/+10
2022-04-20tools/nolibc: add a makefile to install headersGravatar Willy Tarreau 1-0/+42
2022-04-20tools/nolibc/types: add poll() and waitpid() flag definitionsGravatar Willy Tarreau 1-0/+10
2022-04-20tools/nolibc/sys: add syscall definition for getppid()Gravatar Willy Tarreau 1-0/+17
2022-04-20tools/nolibc/string: add strcmp() and strncmp()Gravatar Willy Tarreau 1-0/+23
2022-04-20tools/nolibc/stdio: add support for '%p' to vfprintf()Gravatar Willy Tarreau 1-11/+19
2022-04-20tools/nolibc/stdlib: add a simple getenv() implementationGravatar Willy Tarreau 1-0/+23
2022-04-20tools/nolibc/stdio: make printf(%s) accept NULLGravatar Willy Tarreau 1-0/+2
2022-04-20tools/nolibc/stdlib: implement abort()Gravatar Willy Tarreau 1-0/+8
2022-04-20tools/nolibc: also mention how to build by just setting the include pathGravatar Willy Tarreau 1-10/+20
2022-04-20tools/nolibc/time: create time.h with time()Gravatar Willy Tarreau 2-0/+29
2022-04-20tools/nolibc/signal: move raise() to signal.hGravatar Willy Tarreau 3-7/+23
2022-04-20tools/nolibc/unistd: add usleep()Gravatar Willy Tarreau 1-0/+8
2022-04-20tools/nolibc/unistd: extract msleep(), sleep(), tcsetpgrp() to unistd.hGravatar Willy Tarreau 3-30/+47
2022-04-20tools/nolibc/errno: extract errno.h from sys.hGravatar Willy Tarreau 3-16/+29
2022-04-20tools/nolibc/string: export memset() and memmove()Gravatar Willy Tarreau 1-2/+8
2022-04-20tools/nolibc/types: define PATH_MAX and MAXPATHLENGravatar Willy Tarreau 1-0/+11
2022-04-20tools/nolibc/arch: mark the _start symbol as weakGravatar Willy Tarreau 6-0/+6
2022-04-20tools/nolibc: move exported functions to their own sectionGravatar Willy Tarreau 2-2/+2
2022-04-20tools/nolibc/string: add tiny versions of strncat() and strlcat()Gravatar Willy Tarreau 1-0/+41
2022-04-20tools/nolibc/string: add strncpy() and strlcpy()Gravatar Willy Tarreau 1-0/+28
2022-04-20tools/nolibc/string: slightly simplify memmove()Gravatar Willy Tarreau 1-6/+14
2022-04-20tools/nolibc/string: use unidirectional variants for memcpy()Gravatar Willy Tarreau 1-1/+23
2022-04-20tools/nolibc/sys: make getpgrp(), getpid(), gettid() not set errnoGravatar Willy Tarreau 1-21/+3