Ignore:
Timestamp:
07/08/19 16:58:12 (5 years ago)
Author:
yushan
Message:

MARK: Dynamic workflow graph developement. Branch up to date with trunk @1676. Arithmetic filter unified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_omp/src/parse_expr/yacc_parser.cpp

    r1601 r1680  
    7070#include "exception.hpp" 
    7171 
     72#include "yacc_var.hpp" 
     73 
    7274using namespace std; 
    7375using namespace xios; 
     
    8688  #pragma omp threadprivate(parsed, globalInputText_ptr, globalReadOffset) 
    8789 
     90   
     91  std::string *xios::yacc_globalInputText_ptr = 0; 
     92  // #pragma omp threadprivate(xios::yacc_globalInputText_ptr) 
     93 
    8894  int readInputForLexer(char* buffer, size_t* numBytesRead, size_t maxBytesToRead) 
    8995  { 
     96    yacc_globalInputText_ptr = globalInputText_ptr; 
     97 
     98    std::cout<<"========= yacc_globalInputText_ptr = "<<*yacc_globalInputText_ptr<<std::endl; 
    9099    if(globalInputText_ptr == 0) globalInputText_ptr = new std::string; 
    91100    size_t numBytesToRead = maxBytesToRead; 
Note: See TracChangeset for help on using the changeset viewer.