~ubuntu-branches/ubuntu/trusty/fftw3/trusty

« back to all changes in this revision

Viewing changes to threads/ct.c

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2012-06-21 23:07:47 UTC
  • mfrom: (3.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20120621230747-qj9twdwsyps36x30
Tags: 3.3.2-3ubuntu1
* merge with Debian (LP: #1007259, #781726)
* remove the mpi packages not suitable for main
* add debian/source/extended-diff-ignore to ignore generated files
* add hardening flags to long long test so build log check does not complain

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 *
19
19
 */
20
20
 
240
240
     pln->nthr = nthr;
241
241
     pln->r = r;
242
242
     X(ops_zero)(&pln->super.super.ops);
243
 
     for (i = 0; i < nthr; ++i)
 
243
     for (i = 0; i < nthr; ++i) {
244
244
          X(ops_add2)(&cldws[i]->ops, &pln->super.super.ops);
 
245
          pln->super.super.could_prune_now_p |= cldws[i]->could_prune_now_p;
 
246
     }
245
247
     X(ops_add2)(&cld->ops, &pln->super.super.ops);
246
248
     return &(pln->super.super);
247
249