-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_glib.h
55 lines (43 loc) · 1.65 KB
/
gmt_glib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*!
* \file gmt_glib.h
* \brief Include file for items using glib.
*/
/* Authors: J. Luis
Date: 1-OCT-2012
Version: 6 API
*/
/* Include glib header and define mutex calls that are no-op when not linking against glib
These are used only GLIB based multi-threading */
#ifndef GMT_GLIB_H
#define GMT_GLIB_H
#ifdef HAVE_GLIB_GTHREAD
#include <glib.h>
#define GMT_xg_OPT " [-x[[-]<n>]] " /* Must add spaces and brackets here and place via %s since it may be blank */
#define GMT_ADD_xg_OPT "x"
#define GMT_declare_gmutex static GMutex mutex;
#define GMT_set_gmutex g_mutex_lock (&mutex);
#define GMT_unset_gmutex g_mutex_unlock (&mutex);
#else /* No GLIB support */
#define GMT_xg_OPT " "
#define GMT_ADD_xg_OPT ""
#define GMT_declare_gmutex
#define GMT_set_gmutex
#define GMT_unset_gmutex
#endif
#endif /* HAVE_GLIB_GTHREAD */