On Sat, Oct 26, 2002 at 03:48:27PM -0400, Zajerko-McKee, Nick wrote: > I'm porting some code from x86 to mips(32) and noticed that in > include/asm-mips/siginfo.h differs from include/asm-i386/siginfo.h in the > order of elements of the sigchld structure. Was this an oversight or a > design decision? I would think that it would be desirable to be almost the > same as the x86 for userland ease of portability... User programs normally get recompiled, so anything using the proper includes IS portable. The issue only appears if you are using binary translation of x86 programs on mips. For example, this is one: http://www.transitives.com/products.htm For this, you need to write a system call translation layer which rearranges things appropriately. An existing example is the o32 layer in mips64, and soon the n32 layer in mips64. -- greg