X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a201b7ceece70d2bc461ac48c8b746a36d07243..fb2c06ad23be8a12b22bdc8e77c63f4d7c61a1bb:/include/xbt/synchro_core.h diff --git a/include/xbt/synchro_core.h b/include/xbt/synchro_core.h index 3103330212..5a270d3f71 100644 --- a/include/xbt/synchro_core.h +++ b/include/xbt/synchro_core.h @@ -1,7 +1,8 @@ /* xbt/synchro.h -- Synchronization tools */ /* Usable in simulator, (or in real life when mixing with GRAS) */ -/* Copyright (c) 2007 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2009, 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. */ @@ -29,11 +30,11 @@ SG_BEGIN_DECL() * @{ */ /** \brief Thread data type (opaque structure) */ - typedef struct s_xbt_thread_ *xbt_thread_t; +typedef struct s_xbt_thread_ *xbt_thread_t; XBT_PUBLIC(xbt_thread_t) xbt_thread_create(const char *name, void_f_pvoid_t start_routine, - void *param,int joinable); + void *param, int joinable); XBT_PUBLIC(xbt_thread_t) xbt_thread_self(void); XBT_PUBLIC(const char *) xbt_thread_name(xbt_thread_t t); XBT_PUBLIC(const char *) xbt_thread_self_name(void); @@ -48,7 +49,7 @@ XBT_PUBLIC(void) xbt_thread_yield(void); /** \brief Thread mutex data type (opaque structure) */ - typedef struct s_xbt_mutex_ *xbt_mutex_t; +typedef struct s_xbt_mutex_ *xbt_mutex_t; XBT_PUBLIC(xbt_mutex_t) xbt_mutex_init(void); XBT_PUBLIC(void) xbt_mutex_acquire(xbt_mutex_t mutex); @@ -58,7 +59,7 @@ XBT_PUBLIC(void) xbt_mutex_destroy(xbt_mutex_t mutex); /** \brief Thread condition data type (opaque structure) */ - typedef struct s_xbt_cond_ *xbt_cond_t; +typedef struct s_xbt_cond_ *xbt_cond_t; XBT_PUBLIC(xbt_cond_t) xbt_cond_init(void); XBT_PUBLIC(void) xbt_cond_wait(xbt_cond_t cond, xbt_mutex_t mutex); @@ -71,4 +72,4 @@ XBT_PUBLIC(void) xbt_cond_destroy(xbt_cond_t cond); /** @} */ SG_END_DECL() -#endif /* _XBT_THREAD_H */ +#endif /* _XBT_THREAD_H */