Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-12 | fix mips syscalls with long long args | Rich Felker | 1 | -1/+1 | |
like arm, mips requires 64-bit arguments to be "aligned" on an even register boundary. | |||||
2012-07-12 | fix mips mcontext_t structure size | Rich Felker | 1 | -1/+5 | |
otherwise offs in ucontext_t will be wrong, and break code that inspects or modifies the signal makes (including cancellation code). | |||||
2012-07-11 | fix MAP_ANONYMOUS value for mips, remove cruft copied from i386 | Rich Felker | 1 | -2/+1 | |
2012-07-11 | initial version of mips (o32) port, based on work by Richard Pennington (rdp) | Rich Felker | 29 | -0/+2037 | |
basically, this version of the code was obtained by starting with rdp's work from his ellcc source tree, adapting it to musl's build system and coding style, auditing the bits headers for discrepencies with kernel definitions or glibc/LSB ABI or large file issues, fixing up incompatibility with the old binutils from aboriginal linux, and adding some new special cases to deal with the oddities of sigaction and pipe syscall interfaces on mips. at present, minimal test programs work, but some interfaces are broken or missing. threaded programs probably will not link. |