Changeset 2755 in Sophya for trunk/SophyaPI/PIext/pawexecut.cc


Ignore:
Timestamp:
May 23, 2005, 6:33:02 PM (20 years ago)
Author:
ansari
Message:

1/ Correction bug trace des lignes ds PINTuple
2/ Ajout methode IsThreadable() (declaration conformite thread separe pour certaines commandes) ds baseexecut.h .cc (plot2d plot3d ...) , ds pawexecut.cc (n/plot ...) et ds cxxexecutor.h .cc (c++exec c++execfrf ...)
3/ Ajout de ZMutex (et ZSync) pour la gestion des commandes threadable - ds les
executeurs et ds servnobjm.h .cc
4/ bug d'execution en thread identifie et corrige ds nobjmgr.h .cc (ajout des
methodes GetObj_P() GetObjAdapter_P() et ReadObj_P()
5/ Ajout de l'appel a ZSync::NOp() pour eviter les warnings 'unused variable zs ...'

Reza 23 Mai 2005

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/pawexecut.cc

    r2709 r2755  
    319319} else return(1);
    320320}
     321
     322/* methode */
     323bool PAWExecutor::IsThreadable(string const & keyw)
     324{
     325  if ( (keyw == "n/plot")  || (keyw == "n/pl") ||
     326       (keyw == "n/proj") )  return true;
     327  else return false;
     328}
     329
    321330
    322331/* methode */
     
    435444}
    436445
     446
    437447/* methode */
    438448void PAWExecutor::n_proj(vector<string>& tokens)
     
    630640}
    631641
     642
    632643/* methode */
    633644#define __LENLINE_N_READ__ 8192
Note: See TracChangeset for help on using the changeset viewer.