b2bd1f7ec682360ba2b255883c181f3690627296
[alexxy/gromacs.git] / src / gromacs / utility / qsort_threadsafe.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2012,2014,2016, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \libinternal \file
36  * \brief
37  * Portable implementation of threadsafe quicksort.
38  *
39  * This module provides a \Gromacs version of the qsort() routine defined.
40  * It is not highly optimized, but it is threadsafe, i.e. multiple threads
41  * can simultaneously call gmx_qsort() with different data.
42  *
43  * The rational is that some implementations of qsort() are not threadsafe.
44  * For instance qsort() in glibc contains a bug which makes it not threadsafe:
45  * http://sources.redhat.com/bugzilla/show_bug.cgi?id=11655
46  * On the other hand, system qsort() might be faster than our own.
47  *
48  * \inlibraryapi
49  * \ingroup module_utility
50  */
51 #ifndef GMX_UTILITY_QSORT_THREADSAFE_H
52 #define GMX_UTILITY_QSORT_THREADSAFE_H
53
54 #include <stdlib.h>
55
56 /* For GMX_THREAD_MPI */
57 #include "config.h"
58
59 #ifdef __cplusplus
60 extern "C"
61 {
62 #endif
63 #if 0
64 } /* fixes auto-indentation problems */
65 #endif
66
67 /*! \addtogroup module_utility
68  * \{
69  */
70
71 /*! \brief
72  * Portable threadsafe sort routine.
73  *
74  * \param base    Pointer to first element in list to sort
75  * \param nmemb   Number of elements in list
76  * \param size    Size in bytes of each element
77  * \param compar  Comparison function that takes two pointers to elements
78  *                being compared as arguments.  The function should return an
79  *                integer less than, equal to, or greater than zero if the
80  *                first argument is considered to be respectively less than,
81  *                equal to, or greater than the second.
82  */
83 void
84 gmx_qsort(void            *base,
85           size_t           nmemb,
86           size_t           size,
87           int            (*compar)(const void *, const void *));
88
89
90 /*! \def gmx_qsort_threadsafe
91  * \brief
92  * Threadsafe qsort().
93  *
94  * Expands to gmx_qsort() if Gromacs is built with threading, or system qsort()
95  * otherwise.
96  */
97 #if GMX_THREAD_MPI
98 #define gmx_qsort_threadsafe gmx_qsort
99 #else
100 #define gmx_qsort_threadsafe qsort
101 #endif
102
103 /*! \} */
104
105 #ifdef __cplusplus
106 }
107 #endif
108
109 #endif