IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 19004


Ignore:
Timestamp:
Aug 11, 2008, 9:44:06 AM (18 years ago)
Author:
Paul Price
Message:

Only need to warn if the user is attempting to turn threading on.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/psFFT.c

    r18990 r19004  
    2525    return true;
    2626#else
    27     psWarning("No thread support for FFTW.");
    28     return false;
     27    if (threads > 0) {
     28        psWarning("No thread support for FFTW.");
     29        return false;
     30    }
     31    return true;
    2932#endif
    3033}
Note: See TracChangeset for help on using the changeset viewer.