Changeset 14057


Ignore:
Timestamp:
11/29/12 18:07:33 (12 years ago)
Author:
Mathieu Morlighem
Message:

BUG: num was not declared, changed to num_threads

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Threads/LaunchThread.cpp

    r14054 r14057  
    3333
    3434        /*check number of threads*/
    35         if(num<1)    _error_("number of threads must be at least 1");
    36         if(num>2000) _error_("number of threads seems to be too high ("<<num<<">2000)");
     35        if(num_threads<1)    _error_("number of threads must be at least 1");
     36        if(num_threads>2000) _error_("number of threads seems to be too high ("<<num_threads<<">2000)");
    3737
    3838        /*dynamically allocate: */
Note: See TracChangeset for help on using the changeset viewer.