Ignore:
Timestamp:
Feb 14, 2008 1:34:55 PM (16 years ago)
Author:
bennylp
Message:

Implemented ticket #474 for Symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/ioqueue_symbian.cpp

    r1608 r1792  
    489489} 
    490490 
     491PJ_DEF(pj_status_t) pj_ioqueue_set_default_concurrency(pj_ioqueue_t *ioqueue, 
     492                                                                                                           pj_bool_t allow) 
     493{ 
     494        /* Not supported, just return PJ_SUCCESS silently */ 
     495        PJ_UNUSED_ARG(ioqueue); 
     496        PJ_UNUSED_ARG(allow); 
     497        return PJ_SUCCESS; 
     498} 
    491499 
    492500/* 
     
    801809} 
    802810 
     811PJ_DEF(pj_status_t) pj_ioqueue_set_concurrency(pj_ioqueue_key_t *key, 
     812                                                                                           pj_bool_t allow) 
     813{ 
     814        /* Not supported, just return PJ_SUCCESS silently */ 
     815        PJ_UNUSED_ARG(key); 
     816        PJ_UNUSED_ARG(allow); 
     817        return PJ_SUCCESS; 
     818} 
     819 
     820PJ_DEF(pj_status_t) pj_ioqueue_lock_key(pj_ioqueue_key_t *key) 
     821{ 
     822        /* Not supported, just return PJ_SUCCESS silently */ 
     823        PJ_UNUSED_ARG(key); 
     824        return PJ_SUCCESS; 
     825} 
     826 
     827PJ_DEF(pj_status_t) pj_ioqueue_unlock_key(pj_ioqueue_key_t *key) 
     828{ 
     829        /* Not supported, just return PJ_SUCCESS silently */ 
     830        PJ_UNUSED_ARG(key); 
     831        return PJ_SUCCESS; 
     832} 
Note: See TracChangeset for help on using the changeset viewer.