Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-10-23 | auxv: new moduleadd-__getauxval | A. Wilcox | 1 | -0/+6 | |
Adds `__getauxval` wrapper, needed for Parallels Tools GUI installer. | |||||
2021-07-27 | Merge branch 'reentrant_random' into 'current' | A. Wilcox | 1 | -0/+157 | |
Add reentrant random functions from LSB See merge request adelie/gcompat!11 | |||||
2021-06-29 | gnulib: Add __fdelt_warn alias | George Matsumura | 1 | -0/+2 | |
Add __fdelt_warn as a strong alias of __fdelt_chk, similar to how it is implemented in glibc. Signed-off-by: George Matsumura <gm960420@ohio.edu> | |||||
2021-06-25 | random_r: Add reentrant random functions from LSB | George Matsumura | 1 | -0/+157 | |
This adds random_r() and associated functions, mostly adapted from musl's implementation of random(). Signed-off-by: George Matsumura <gm960420@ohio.edu> | |||||
2020-12-14 | string: Add wrong strerror_r | A. Wilcox | 1 | -0/+18 | |
2020-11-16 | locale: restructure how newlocale works | rcombs | 1 | -21/+15 | |
Now newlocale calls __newlocale with the returned glibc_locale structure directly, making it work slightly better with non-"C" locales. | |||||
2020-11-16 | locale: Fix two correctness issues | A. Wilcox | 1 | -2/+3 | |
* Count size of list correctly * Don't make __names const; it isn't. | |||||
2020-09-27 | pthread: Fix typo | A. Wilcox | 1 | -1/+1 | |
2020-09-27 | pthread: add __sched_{cpualloc,cpufree}. | Érico Nogueira | 1 | -1/+17 | |
Implemented using the CPU_{ALLOC,FREE} macros. These symbols are required by nvidia 450.57 binaries. | |||||
2020-08-22 | unistd: Update execve shim with loader changes | A. Wilcox | 1 | -3/+4 | |
Ensure aarch64 bug doesn't appear here either. | |||||
2020-08-22 | readlink: Update to correspond with loader changes | A. Wilcox | 1 | -1/+1 | |
2020-08-18 | pthread: Add pthread_yield() | Hal G | 1 | -0/+9 | |
Calls the more standard sched_yield(). | |||||
2020-08-10 | socket: Fix inverted logic in __poll_chk (#341) | A. Wilcox | 1 | -1/+1 | |
2020-08-10 | Merge branch 'master' into 'master' | A. Wilcox | 1 | -3/+3 | |
Correct __*_finite math functions See merge request adelie/gcompat!8 | |||||
2020-08-08 | Correct __*_finite math functions | George Matsumura | 1 | -3/+3 | |
This corrects a mistake in the finite math functions in which it was asserted that the return values had to be infinite, instead of the intended behavior of asserting that they were not infinite. Signed-off-by: George Matsumura <gmmatsumura01@bvsd.org> | |||||
2020-07-25 | wchar: implement wcstod_l | Michal Kazior | 1 | -0/+10 | |
This is similar to strtoll_l() in a way it ignores the locale_t argument and uses the global locale settings. Signed-off-by: Michal Kazior <kazikcz@gmail.com> | |||||
2020-07-25 | wchar: implement wcstol_l | Michal Kazior | 1 | -0/+11 | |
This is similar to strtoll_l() in a way it ignores the locale_t argument and uses the global locale settings. Signed-off-by: Michal Kazior <kazikcz@gmail.com> | |||||
2020-07-25 | wchar: implement wcstoul_l | Michal Kazior | 1 | -0/+11 | |
This is similar to strtoll_l() in a way it ignores the locale_t argument and uses the global locale settings. Signed-off-by: Michal Kazior <kazikcz@gmail.com> | |||||
2020-07-25 | wchar: implement __fwprintf_chk | Michal Kazior | 1 | -0/+18 | |
Signed-off-by: Michal Kazior <kazikcz@gmail.com> | |||||
2020-07-25 | wchar: implement __vfwprintf_chk | Michal Kazior | 1 | -0/+13 | |
Signed-off-by: Michal Kazior <kazikcz@gmail.com> | |||||
2020-07-06 | time: New module adding __strftime_l | A. Wilcox | 1 | -0/+7 | |
2020-07-06 | locale: New module for glibc locale_t ABI compat | A. Wilcox | 1 | -0/+56 | |
2020-07-06 | unistd: Interpose execv* functions for LOADER | A. Wilcox | 1 | -0/+54 | |
Newer releases of Chromium directly execv /proc/self/exe, missing our readlink(3) interposing. We go ahead and interpose all three execv* functions just to ensure wider compatibility. | |||||
2020-07-06 | cxx_thread: Fix negated assertion | A. Wilcox | 1 | -1/+1 | |
The assertion should be that the return value was 0. Additionally, show the result code if the return value is not 0. | |||||
2019-11-10 | internal: add a wrapper for __libc_start_main for PowerPC(64(le)) | q66 | 1 | -0/+41 | |
This is necessary because the musl and glibc function signatures differ significantly. | |||||
2019-05-08 | string: check NULL before using variables everywhere | A. Wilcox | 1 | -3/+6 | |
2019-05-08 | string: check NULL before using src here, too | A. Wilcox | 2 | -2/+3 | |
2019-05-08 | malloc: use posix_memalign instead of deprecated memalign | A. Wilcox | 1 | -1/+4 | |
2019-05-08 | Don't use variables until ensuring they're non-NULL | A. Wilcox | 2 | -2/+4 | |
2019-05-08 | string: reduce scope of variables in strfry | A. Wilcox | 1 | -5/+4 | |
2019-05-07 | wchar: Add __wcscpy_chk | A. Wilcox | 1 | -0/+21 | |
2019-05-02 | string: Add __strdup | A. Wilcox | 1 | -0/+10 | |
2019-04-29 | Use <utmpx.h> for struct utmp definiton | A. Wilcox | 1 | -1/+1 | |
2019-04-08 | malloc: Add mtrace and muntrace stubs | A. Wilcox | 1 | -0/+12 | |
2019-02-18 | pthread: Fix pthread_getname_np | Samuel Holland | 1 | -4/+6 | |
Remove the trailing newline, and ensure the string returned is always null-terminated. Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2019-01-05 | pthread: Implement pthread_getname_np | Samuel Holland | 1 | -1/+24 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2019-01-05 | run clang-format on the source code | Samuel Holland | 1 | -1/+1 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2019-01-05 | Makefile: depend on internal.h; format headers | Samuel Holland | 2 | -9/+8 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-11-12 | wchar: Implement __wcstol_internal | A. Wilcox | 1 | -0/+12 | |
2018-09-11 | libgcompat: Fix formatting inconsistencies (clang-format) | Samuel Holland | 6 | -24/+21 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | unistd: Add __open_2 and its __open64_2 alias | Samuel Holland | 1 | -0/+9 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | stdlib: Add secure_getenv alias to __secure_getenv | Samuel Holland | 1 | -0/+3 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | readlink: Report EIO on /proc read failure | Samuel Holland | 1 | -0/+1 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | realpath: Intercept realpath(/proc/self/exe) | Samuel Holland | 1 | -0/+51 | |
Reuse the machinery from readlink Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | readlink: Report ENOSYS on dlsym failure | Samuel Holland | 1 | -0/+2 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | ctype: Add __ctype_b | Samuel Holland | 1 | -0/+1 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-09-11 | cxx_thread: Add __cxa_thread_atexit_impl | Samuel Holland | 1 | -0/+56 | |
Signed-off-by: Samuel Holland <samuel@sholland.org> | |||||
2018-06-21 | string: add memfrob and strfry | Jason A. Donenfeld | 1 | -0/+34 | |
2018-06-13 | string: add __strcspn_c2 | A. Wilcox | 1 | -0/+17 | |
2018-06-13 | resolv: add __res_search alias | A. Wilcox | 1 | -0/+6 | |