Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
msc
sextractor
Commits
f823a212
Commit
f823a212
authored
Jun 26, 2009
by
Emmanuel Bertin
Browse files
Fixed incorrect FFTW type in multithread check.
parent
6dc5f403
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/fft.c
View file @
f823a212
...
...
@@ -54,7 +54,7 @@ void fft_init(int nthreads)
{
#ifdef USE_THREADS
QPTHREAD_MUTEX_INIT
(
&
fftmutex
,
NULL
);
#ifdef HAVE_FFTW
F
_MP
#ifdef HAVE_FFTW_MP
if
(
nthreads
>
1
)
{
if
(
!
fftw_init_threads
())
...
...
@@ -86,7 +86,7 @@ void fft_end(void)
{
firsttimeflag
=
0
;
#ifdef USE_THREADS
#ifdef HAVE_FFTW
F
_MP
#ifdef HAVE_FFTW_MP
fftw_cleanup_threads
();
#endif
QPTHREAD_MUTEX_DESTROY
(
&
fftmutex
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment