index
:
Linux Stable
linux-2.6.11.y
linux-2.6.12.y
linux-2.6.13.y
linux-2.6.14.y
linux-2.6.15.y
linux-2.6.16.y
linux-2.6.17.y
linux-2.6.18.y
linux-2.6.19.y
linux-2.6.20.y
linux-2.6.21.y
linux-2.6.22.y
linux-2.6.23.y
linux-2.6.24.y
linux-2.6.25.y
linux-2.6.26.y
linux-2.6.27.y
linux-2.6.28.y
linux-2.6.29.y
linux-2.6.30.y
linux-2.6.31.y
linux-2.6.32.y
linux-2.6.33.y
linux-2.6.34.y
linux-2.6.35.y
linux-2.6.36.y
linux-2.6.37.y
linux-2.6.38.y
linux-2.6.39.y
linux-3.0.y
linux-3.1.y
linux-3.10.y
linux-3.11.y
linux-3.12.y
linux-3.13.y
linux-3.14.y
linux-3.15.y
linux-3.16.y
linux-3.17.y
linux-3.18.y
linux-3.19.y
linux-3.2.y
linux-3.3.y
linux-3.4.y
linux-3.5.y
linux-3.6.y
linux-3.7.y
linux-3.8.y
linux-3.9.y
linux-4.0.y
linux-4.1.y
linux-4.10.y
linux-4.11.y
linux-4.12.y
linux-4.13.y
linux-4.14.y
linux-4.15.y
linux-4.16.y
linux-4.17.y
linux-4.18.y
linux-4.19.y
linux-4.2.y
linux-4.20.y
linux-4.3.y
linux-4.4.y
linux-4.5.y
linux-4.6.y
linux-4.7.y
linux-4.8.y
linux-4.9.y
linux-5.0.y
linux-5.1.y
linux-5.10.y
linux-5.11.y
linux-5.12.y
linux-5.13.y
linux-5.14.y
linux-5.15.y
linux-5.16.y
linux-5.17.y
linux-5.18.y
linux-5.19.y
linux-5.2.y
linux-5.3.y
linux-5.4.y
linux-5.5.y
linux-5.6.y
linux-5.7.y
linux-5.8.y
linux-5.9.y
linux-6.0.y
linux-6.1.y
linux-6.10.y
linux-6.11.y
linux-6.12.y
linux-6.13.y
linux-6.14.y
linux-6.2.y
linux-6.3.y
linux-6.4.y
linux-6.5.y
linux-6.6.y
linux-6.7.y
linux-6.8.y
linux-6.9.y
linux-rolling-lts
linux-rolling-stable
master
Linux kernel stable tree
Greg Kroah-Hartman
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tools
/
include
/
nolibc
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
tools/nolibc/stdlib: make raise() use the lower level syscalls only
Willy Tarreau
2022-04-20
1
-1
/
+1
*
tools/nolibc/stdlib: avoid a 64-bit shift in u64toh_r()
Willy Tarreau
2022-04-20
1
-6
/
+10
*
tools/nolibc/sys: make open() take a vararg on the 3rd argument
Willy Tarreau
2022-04-20
1
-3
/
+15
*
tools/nolibc/stdio: add perror() to report the errno value
Willy Tarreau
2022-04-20
1
-0
/
+6
*
tools/nolibc/types: define EXIT_SUCCESS and EXIT_FAILURE
Willy Tarreau
2022-04-20
1
-0
/
+3
*
tools/nolibc/stdio: add a minimal [vf]printf() implementation
Willy Tarreau
2022-04-20
1
-0
/
+128
*
tools/nolibc/stdio: add fwrite() to stdio
Willy Tarreau
2022-04-20
1
-7
/
+28
*
tools/nolibc/stdio: add stdin/stdout/stderr and fget*/fput* functions
Willy Tarreau
2022-04-20
1
-6
/
+89
*
tools/nolibc/stdio: add a minimal set of stdio functions
Willy Tarreau
2022-04-20
2
-0
/
+58
*
tools/nolibc/stdlib: add utoh() and u64toh()
Willy Tarreau
2022-04-20
1
-0
/
+80
*
tools/nolibc/stdlib: add i64toa() and u64toa()
Willy Tarreau
2022-04-20
1
-0
/
+72
*
tools/nolibc/stdlib: replace the ltoa() function with more efficient ones
Willy Tarreau
2022-04-20
1
-21
/
+88
*
tools/nolibc/stdlib: move ltoa() to stdlib.h
Willy Tarreau
2022-04-20
2
-22
/
+32
*
tools/nolibc/types: move makedev to types.h and make it a macro
Willy Tarreau
2022-04-20
2
-9
/
+5
*
tools/nolibc/types: make FD_SETSIZE configurable
Willy Tarreau
2022-04-20
1
-2
/
+4
*
tools/nolibc/types: move the FD_* functions to macros in types.h
Willy Tarreau
2022-04-20
2
-14
/
+30
*
tools/nolibc/ctype: add the missing is* functions
Willy Tarreau
2022-04-20
1
-1
/
+78
*
tools/nolibc/ctype: split the is* functions to ctype.h
Willy Tarreau
2022-04-20
2
-6
/
+23
*
tools/nolibc/string: split the string functions into string.h
Willy Tarreau
2022-04-20
2
-95
/
+108
*
tools/nolibc/stdlib: extract the stdlib-specific functions to their own file
Willy Tarreau
2022-04-20
2
-66
/
+86
*
tools/nolibc/sys: split the syscall definitions into their own file
Willy Tarreau
2022-04-20
2
-962
/
+1192
*
tools/nolibc/arch: split arch-specific code into individual files
Willy Tarreau
2022-04-20
8
-1186
/
+1266
*
tools/nolibc/types: split syscall-specific definitions into their own files
Willy Tarreau
2022-04-20
2
-108
/
+135
*
tools/nolibc/std: move the standard type definitions to std.h
Willy Tarreau
2022-04-20
2
-37
/
+54
*
tools/nolibc: guard the main file against multiple inclusion
Willy Tarreau
2022-04-11
1
-0
/
+4
*
tools/nolibc: use pselect6 on RISCV
Willy Tarreau
2022-04-11
1
-0
/
+3
*
tools/nolibc: Implement gettid()
Mark Brown
2021-11-30
1
-0
/
+18
*
tools/nolibc: x86-64: Use `mov $60,%eax` instead of `mov $60,%rax`
Ammar Faizi
2021-11-30
1
-1
/
+1
*
tools/nolibc: x86: Remove `r8`, `r9` and `r10` from the clobber list
Ammar Faizi
2021-11-30
1
-14
/
+19
*
tools/nolibc: fix incorrect truncation of exit code
Willy Tarreau
2021-11-30
1
-8
/
+5
*
tools/nolibc: i386: fix initial stack alignment
Willy Tarreau
2021-11-30
1
-1
/
+9
*
tools/nolibc: x86-64: Fix startup code bug
Ammar Faizi
2021-11-30
1
-2
/
+8
*
tools/nolibc: Implement msleep()
Mark Brown
2021-07-20
1
-0
/
+13
*
tools: include: nolibc: Fix a typo occured to occurred in the file nolibc.h
Bhaskar Chowdhury
2021-07-20
1
-1
/
+1
*
tools/nolibc: Fix position of -lgcc in the documented example
Willy Tarreau
2021-01-21
1
-1
/
+1
*
tools/nolibc: Emit detailed error for missing alternate syscall number defini...
Willy Tarreau
2021-01-21
1
-13
/
+39
*
tools/nolibc: Remove incorrect definitions of __ARCH_WANT_*
Willy Tarreau
2021-01-21
1
-8
/
+0
*
tools/nolibc: Get timeval, timespec and timezone from linux/time.h
Willy Tarreau
2021-01-21
1
-18
/
+1
*
tools/nolibc: Implement poll() based on ppoll()
Willy Tarreau
2021-01-21
1
-0
/
+10
*
tools/nolibc: Implement fork() based on clone()
Willy Tarreau
2021-01-21
1
-0
/
+10
*
tools/nolibc: Make getpgrp() fall back to getpgid(0)
Willy Tarreau
2021-01-21
1
-1
/
+19
*
tools/nolibc: Make dup2() rely on dup3() when available
Willy Tarreau
2021-01-21
1
-0
/
+26
*
tools/nolibc: Add the definition for dup()
Willy Tarreau
2021-01-21
1
-0
/
+12
*
tools/nolibc: Fix a spelling error in a comment
Bhaskar Chowdhury
2020-11-06
1
-1
/
+1
*
rcutorture/nolibc: Fix a typo in header file
Samuel Hernandez
2020-11-06
1
-1
/
+1
*
tool headers nolibc: add RISCV support
Pranith Kumar
2019-05-08
1
-0
/
+194
*
tools headers: Move the nolibc header from rcutorture to tools/include/nolibc/
Willy Tarreau
2019-01-25
1
-0
/
+2263
[prev]