X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bd043f62d4d7bf22adb68d5193ec1bb2aaae3c7b..6e618a5ebc6d91c42e89143c6ff98d2ddb76e14a:/buildtools/Cmake/test_prog/prog_AC_CHECK_MCSC.c diff --git a/buildtools/Cmake/test_prog/prog_AC_CHECK_MCSC.c b/buildtools/Cmake/test_prog/prog_AC_CHECK_MCSC.c index 2fc26ed4ce..59d5289ab1 100644 --- a/buildtools/Cmake/test_prog/prog_AC_CHECK_MCSC.c +++ b/buildtools/Cmake/test_prog/prog_AC_CHECK_MCSC.c @@ -8,10 +8,10 @@ #include #ifdef _XBT_WIN32 - #include "win32_ucontext.h" - #include "win32_ucontext.c" +#include "win32_ucontext.h" +#include "win32_ucontext.c" #else - #include +#include #endif void child(void); @@ -23,43 +23,43 @@ ucontext_t uc_main; void child(void) { - if (swapcontext(&uc_child, &uc_main) != 0) - exit(2); + if (swapcontext(&uc_child, &uc_main) != 0) + exit(2); } int main(int argc, char *argv[]) { - FILE *fp; - void *stack; + FILE *fp; + void *stack; - /* the default is that it fails */ - if ((fp = fopen("conftestval", "w")) == NULL) - exit(3); - fprintf(fp, "no\n"); - fclose(fp); + /* the default is that it fails */ + if ((fp = fopen("conftestval", "w")) == NULL) + exit(3); + fprintf(fp, "no\n"); + fclose(fp); - /* configure a child user-space context */ - if ((stack = malloc(64*1024)) == NULL) - exit(4); - if (getcontext(&uc_child) != 0) - exit(5); - uc_child.uc_link = NULL; - uc_child.uc_stack.ss_sp = (char *)stack+(32*1024); - uc_child.uc_stack.ss_size = 32*1024; - uc_child.uc_stack.ss_flags = 0; - makecontext(&uc_child, child, 0); + /* configure a child user-space context */ + if ((stack = malloc(64 * 1024)) == NULL) + exit(4); + if (getcontext(&uc_child) != 0) + exit(5); + uc_child.uc_link = NULL; + uc_child.uc_stack.ss_sp = (char *) stack + (32 * 1024); + uc_child.uc_stack.ss_size = 32 * 1024; + uc_child.uc_stack.ss_flags = 0; + makecontext(&uc_child, child, 0); - /* switch into the user context */ - if (swapcontext(&uc_main, &uc_child) != 0) - exit(6); + /* switch into the user context */ + if (swapcontext(&uc_main, &uc_child) != 0) + exit(6); - /* Fine, child came home */ - if ((fp = fopen("conftestval", "w")) == NULL) - exit(7); - fprintf(fp, "yes\n"); - fclose(fp); + /* Fine, child came home */ + if ((fp = fopen("conftestval", "w")) == NULL) + exit(7); + fprintf(fp, "yes\n"); + fclose(fp); - /* die successfully */ - exit(0); - return 1; + /* die successfully */ + exit(0); + return 1; }