X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/460bf13957aee18682f280a06910bd4032342fe4..057f189342acabd431a079455e0800d1abcd8057:/src/simix/smx_context_sysv_private.h?ds=sidebyside diff --git a/src/simix/smx_context_sysv_private.h b/src/simix/smx_context_sysv_private.h index 47d8096524..a3832957ae 100644 --- a/src/simix/smx_context_sysv_private.h +++ b/src/simix/smx_context_sysv_private.h @@ -1,6 +1,7 @@ /* Functions of sysv context mecanism: lua inherites them */ -/* Copyright (c) 2004-2010 the SimGrid team. All rights reserved. */ +/* Copyright (c) 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -17,13 +18,15 @@ SG_BEGIN_DECL() /* lower this if you want to reduce the memory consumption */ -#ifndef CONTEXT_STACK_SIZE /* allow lua to override this */ +#ifndef CONTEXT_STACK_SIZE /* allow lua to override this */ #define CONTEXT_STACK_SIZE 128*1024 -#endif /*CONTEXT_STACK_SIZE */ - +#endif /*CONTEXT_STACK_SIZE */ #include "context_sysv_config.h" /* loads context system definitions */ +#ifdef _XBT_WIN32 +#include /* context relative declarations */ +#else #include /* context relative declarations */ - +#endif typedef struct s_smx_ctx_sysv { s_smx_ctx_base_t super; /* Fields of super implementation */ ucontext_t uc; /* the thread that execute the code */ @@ -31,16 +34,16 @@ typedef struct s_smx_ctx_sysv { unsigned int valgrind_stack_id; /* the valgrind stack id */ #endif char stack[CONTEXT_STACK_SIZE]; /* the thread stack size */ -} s_smx_ctx_sysv_t, *smx_ctx_sysv_t;smx_context_t +} s_smx_ctx_sysv_t, *smx_ctx_sysv_t; +smx_context_t smx_ctx_sysv_create_context_sized(size_t structure_size, - xbt_main_func_t code, int argc, char** argv, - void_f_pvoid_t cleanup_func, void* cleanup_arg); + xbt_main_func_t code, int argc, + char **argv, void_f_pvoid_t cleanup_func, + void *cleanup_arg); void smx_ctx_sysv_free(smx_context_t context); void smx_ctx_sysv_stop(smx_context_t context); void smx_ctx_sysv_suspend(smx_context_t context); void smx_ctx_sysv_resume(smx_context_t new_context); SG_END_DECL() -#endif /* !_XBT_CONTEXT_SYSV_PRIVATE_H */ - - +#endif /* !_XBT_CONTEXT_SYSV_PRIVATE_H */