aboutsummaryrefslogtreecommitdiff
path: root/src/thread/mipsn32 (follow)
Commit message (Expand)AuthorAgeFilesLines
* make arch __clone backends hidden•••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. Rich Felker2018-09-121-0/+1
* mips archs: fix runaway execution if start fn passed to clone returns•••Call SYS_exit on return from fn in __clone. This is the expected behavior of this function. Without this the child task will crash on return from fn, since it will return to nowhere. Segev Finer2018-08-181-1/+4
* add mips n32 port (ILP32 ABI for mips64)•••based on patch submitted by Jaydeep Patil, with minor changes. Rich Felker2016-04-183-0/+90