아무것도 하지 않는 객체를 만드는것.

예제)

class ACE_Null_Mutex
{
public:
    ACE_Null_Mutex( const char * = 0, ACE_mutexattr_t * = 0 ) {}
    int acquire() { return 0; }
    int release() { return 0; }
    // ....
};

+ Recent posts