Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2025-02-21 | clone: clear the frame pointer in the child process on relevant ports | Alex Rønne Petersen | -1/+2 | |
This just mirrors what is done in the start code for the affected ports, as well as what is already done for the three x86 ports. Clearing the frame pointer helps protect FP-based unwinders from wrongly attempting to traverse into the parent thread's call frame stack. | ||||
2018-09-12 | make arch __clone backends hidden | Rich Felker | -0/+1 | |
these are not a public interface and are not intended to be callable from anywhere but the public clone function or other places in libc. | ||||
2018-06-19 | add m68k port | Rich Felker | -0/+58 | |
three ABIs are supported: the default with 68881 80-bit fpu format and results returned in floating point registers, softfloat-only with the same format, and coldfire fpu with IEEE single/double only. only the first is tested at all, and only under qemu which has fpu emulation bugs. basic functionality smoke tests have been performed for the most common arch-specific breakage via libc-test and qemu user-level emulation. some sysvipc failures remain, but are shared with other big endian archs and will be fixed separately. |