about summary refs log tree commit diff
path: root/arch/mipsn32/bits/sem.h
Commit message (Collapse)AuthorAgeFilesLines
* extricate bits/sem.h from x32 time_t hackRich Felker2019-07-291-4/+4
| | | | | | | | | | | | | | various padding fields in the generic bits/sem.h were defined in terms of time_t as a cheap hack standing in for "kernel long", to allow x32 to use the generic version of the file. this was a really bad idea, as it ended up getting copied into lots of arch-specific versions of the bits file, and is a blocker to changing time_t to 64-bit on 32-bit archs. this commit adds an x32-specific version of the header, and changes padding type back from time_t to long (currently the same type on all archs but x32) in the generic header and all the others the hack got copied into.
* add mips n32 port (ILP32 ABI for mips64)Rich Felker2016-04-181-0/+14
based on patch submitted by Jaydeep Patil, with minor changes.