Show
Ignore:
Timestamp:
08/01/08 14:47:24 (5 months ago)
Author:
sroret
Message:

merge with webkit revision 35510

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/OWBAL/Skeletons/Types/Threading.t

    r424 r427  
    239239template<class T> class ThreadSafeShared : public OWBALBase, Noncopyable { 
    240240public: 
     241 
     242    /** 
     243     *  atomicIncrement description 
     244     * @param[in] : description 
     245     * @param[out] : description 
     246     * @code 
     247     * @endcode 
     248     */ 
     249inline void atomicIncrement(int volatile* addend) ; 
     250 
     251 
     252    /** 
     253     *  atomicDecrement description 
     254     * @param[in] : description 
     255     * @param[out] : description 
     256     * @code 
     257     * @endcode 
     258     */ 
     259inline int atomicDecrement(int volatile* addend) ; 
     260 
    241261    /** 
    242262     *  ThreadSafeShared description 
     
    321341 
    322342 
    323  
    324