Fixed issue with handling OpenMP integration for debugging.

This commit is contained in:
Patrick Vogler 2024-06-26 14:20:55 +02:00
parent 501a36d568
commit 58596bb3e4
Signed by: Patrick Vogler
GPG key ID: 5536B08CE82E8509
5 changed files with 17 additions and 8 deletions

3
.gitignore vendored
View file

@ -2,8 +2,9 @@
# Prerequisites
*.d
# BWC Data Files
# Data Files
*.bwc
*.eas
# Object files
*.o

View file

@ -55,7 +55,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined (_OPENMP)
#include <omp.h>
#endif
#include "constants.h"
#include "macros.h"

View file

@ -49,16 +49,18 @@
|| ||
\************************************************************************************************************/
#include <assert.h>
#if defined BWC_PROFILE
#include <inttypes.h>
#endif
#include <math.h>
#if defined (_OPENMP)
#include <omp.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#ifdef BWC_PROFILE
#include <inttypes.h>
#endif
#include "bitstream.h"
#include "constants.h"

View file

@ -55,7 +55,9 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
#if defined (_OPENMP)
#include <omp.h>
#endif
#include <time.h>
#include "constants.h"

View file

@ -55,7 +55,9 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
#if defined (_OPENMP)
#include <omp.h>
#endif
#include <time.h>
#include "codestream.h"