Ignore:
Timestamp:
08/07/15 17:55:07 (9 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-7764

Ready for Test: Yes

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description:


Release GIL in some time-consuming functions. Currently the following functions releases GIL:


  • MSFiller::fill
  • MSWriter::write
  • Scantable::applyBaselineTable
  • Scantable::subBaseline
  • CalibrationManager::calibrate
  • CalibrationManager::apply
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MSFillerWrapper.h

    r2482 r3046  
    2424#include "ScantableWrapper.h"
    2525#include "MSFiller.h"
     26#include "GILHandler.h"
    2627
    2728namespace asap
     
    6364  void fill()
    6465  {
     66    GILHandler scopedRelease;
     67
    6568    if ( attached_ ) {
    6669      filler_->fill() ;
Note: See TracChangeset for help on using the changeset viewer.