Browse Source

Fix inverted condition in _Atomic declaration

fixes #1593
tags/v0.3.1
Martin Kroeker GitHub 7 years ago
parent
commit
354a976a59
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      common.h

+ 5
- 1
common.h View File

@@ -642,6 +642,7 @@ void gotoblas_profile_init(void);
void gotoblas_profile_quit(void);

#ifdef USE_OPENMP

#ifndef C_MSVC
int omp_in_parallel(void);
int omp_get_num_procs(void);
@@ -649,12 +650,15 @@ int omp_get_num_procs(void);
__declspec(dllimport) int __cdecl omp_in_parallel(void);
__declspec(dllimport) int __cdecl omp_get_num_procs(void);
#endif

#if (__STDC_VERSION__ >= 201112L)
#include <stdatomic.h>
#else
#ifndef _Atomic
#define _Atomic volatile
#endif
#include <stdatomic.h>
#endif

#else
#ifdef __ELF__
int omp_in_parallel (void) __attribute__ ((weak));


Loading…
Cancel
Save