align <sys/ucontext.h> <sys/uio.h> <sys/un.h>

Change-Id: I70adf01fddf931a3a6931083adaa4bbe647ea6a3
This commit is contained in:
Ben Gras
2013-12-10 09:57:38 +01:00
committed by Lionel Sambuc
parent 01624e6f86
commit 17587738d3
15 changed files with 274 additions and 85 deletions

View File

@@ -20,7 +20,7 @@ ucontext_t *ctx;
/* We're not interested in FPU state nor signals, so ignore them.
* Coincidentally, this significantly speeds up performance.
*/
ctx->uc_flags |= (UCF_IGNFPU | UCF_IGNSIGM);
ctx->uc_flags |= _UC_IGNSIGM | _UC_IGNFPU;
return getcontext(ctx);
}