Fixed issue with handling OpenMP integration for debugging.
This commit is contained in:
parent
501a36d568
commit
58596bb3e4
5 changed files with 17 additions and 8 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,8 +2,9 @@
|
|||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# BWC Data Files
|
||||
# Data Files
|
||||
*.bwc
|
||||
*.eas
|
||||
|
||||
# Object files
|
||||
*.o
|
||||
|
|
|
@ -55,7 +55,9 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <omp.h>
|
||||
#if defined (_OPENMP)
|
||||
#include <omp.h>
|
||||
#endif
|
||||
|
||||
#include "constants.h"
|
||||
#include "macros.h"
|
||||
|
|
|
@ -49,16 +49,18 @@
|
|||
|| ||
|
||||
\************************************************************************************************************/
|
||||
#include <assert.h>
|
||||
#if defined BWC_PROFILE
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
#include <omp.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"
|
||||
|
|
|
@ -55,7 +55,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <omp.h>
|
||||
#if defined (_OPENMP)
|
||||
#include <omp.h>
|
||||
#endif
|
||||
#include <time.h>
|
||||
|
||||
#include "constants.h"
|
||||
|
|
|
@ -55,7 +55,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <omp.h>
|
||||
#if defined (_OPENMP)
|
||||
#include <omp.h>
|
||||
#endif
|
||||
#include <time.h>
|
||||
|
||||
#include "codestream.h"
|
||||
|
|
Loading…
Reference in a new issue