diff options
| author | Thomas Knudsen <knudsen.thomas@gmail.com> | 2016-05-20 00:44:56 +0200 |
|---|---|---|
| committer | Thomas Knudsen <knudsen.thomas@gmail.com> | 2016-05-20 00:44:56 +0200 |
| commit | 8b4c079485a68593b810ebfc14848ef6bc7864fa (patch) | |
| tree | 5f8bf20027529b6365caba608d5372e19fce4fb3 /src/pj_mutex.c | |
| parent | 1384b978373cead004211d8548518373d1f4950c (diff) | |
| parent | 605dc6f3b47bf72c61712b275284212c66e541d0 (diff) | |
| download | PROJ-8b4c079485a68593b810ebfc14848ef6bc7864fa.tar.gz PROJ-8b4c079485a68593b810ebfc14848ef6bc7864fa.zip | |
Merge pull request #373 from busstoptaktik/sdfe-refactor-macros--and-repair-generic-constructor-bug
First steps toward simplified macros/internals
Diffstat (limited to 'src/pj_mutex.c')
| -rw-r--r-- | src/pj_mutex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pj_mutex.c b/src/pj_mutex.c index dc484c69..2f6533be 100644 --- a/src/pj_mutex.c +++ b/src/pj_mutex.c @@ -29,7 +29,7 @@ /* projects.h and windows.h conflict - avoid this! */ #if defined(MUTEX_pthread) && !defined(_XOPEN_SOURCE) -// For pthread_mutexattr_settype +/* For pthread_mutexattr_settype */ #define _XOPEN_SOURCE 500 #endif @@ -86,7 +86,7 @@ void pj_cleanup_lock() { } -#endif // def MUTEX_stub +#endif /* def MUTEX_stub */ /************************************************************************/ /* ==================================================================== */ @@ -154,7 +154,7 @@ void pj_cleanup_lock() { } -#endif // def MUTEX_pthread +#endif /* def MUTEX_pthread */ /************************************************************************/ /* ==================================================================== */ @@ -219,4 +219,4 @@ void pj_cleanup_lock() } } -#endif // def MUTEX_win32 +#endif /* def MUTEX_win32 */ |
