Exemple #1
0
    /* switch to view_write.  normally, this is a bad idea since your changes will not 
       show up in view_private if there have been changes there; thus the leading underscore
       as a tad of a "warning".  but useful when done with some care, such as during 
       initialization.
    */
    /*static*/ void* MongoMMF::_switchToWritableView(void *p) { 
        RARELY log() << "todo dur not done switchtowritable" << endl;
#if defined(_DEBUG)
        return switchToPrivateView(p);
#else
        return p;
#endif
    }
Exemple #2
0
 /* switch to _view_write.  normally, this is a bad idea since your changes will not 
    show up in _view_private if there have been changes there; thus the leading underscore
    as a tad of a "warning".  but useful when done with some care, such as during 
    initialization.
 */
 /*static*/ void* MongoMMF::_switchToWritableView(void *p) { 
     RARELY log() << "todo dur not done switchtowritable" << endl;
     if( debug ) 
         return switchToPrivateView(p);
     return p;
 }