X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..666767f623cc55cc4524e84c4fe0f64b3dbd8bf9:/include/xbt/queue.h diff --git a/include/xbt/queue.h b/include/xbt/queue.h index 9084a5c4de..ab918ffb70 100644 --- a/include/xbt/queue.h +++ b/include/xbt/queue.h @@ -1,7 +1,7 @@ /* A (synchronized) message queue. */ /* Popping an empty queue is blocking, as well as pushing a full one */ -/* Copyright (c) 2007, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007, 2009-2011, 2013-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -16,12 +16,16 @@ SG_BEGIN_DECL() /** @addtogroup XBT_queue - * @brief Synchronized message exchanging queue. + * \brief Synchronized message exchanging queue. * - * These is the classical producer/consumer synchronization scheme, which all concurrent programmer recode one day or another. + * These is the classical producer/consumer synchronization scheme, + * which all concurrent programmer recode one day or another. + * + * The synchronization of this implementation is done within the SimGrid + * realm, switching between SimGrid processes. * * For performance concerns, the content of queue must be homogeneous, - * just like dynars (see the \ref XBT_dynar section). Indeed, queues use a + * just like dynars (see the \ref XBT_dynar section). Actually, queues use a * dynar to store the data, and add the synchronization on top of it. * * @{