Changeset 478


Ignore:
Timestamp:
May 27, 2006 8:54:54 PM (18 years ago)
Author:
ismangil
Message:

Initial

Location:
pjproject/branches/symbian
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/symbian/pjlib/include/pj/config.h

    r433 r478  
    11/* $Id$ */ 
    2 /*  
     2/* 
    33 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org> 
    44 * 
     
    1515 * You should have received a copy of the GNU General Public License 
    1616 * along with this program; if not, write to the Free Software 
    17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
     17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
    1818 */ 
    1919#ifndef __PJ_CONFIG_H__ 
     
    5656#elif defined(PJ_RTEMS) && PJ_RTEMS!=0 
    5757#  include <pj/compat/os_rtems.h> 
     58#elif defined(PJ_SYMBIAN) && PJ_SYMBIAN!=0 
     59#  include <pj/compat/os_symbian.h> 
    5860#else 
    5961#  error "Please specify target os." 
     
    231233 * Default: 8192 
    232234 */ 
    233 #ifndef PJ_THREAD_DEFAULT_STACK_SIZE  
     235#ifndef PJ_THREAD_DEFAULT_STACK_SIZE 
    234236#  define PJ_THREAD_DEFAULT_STACK_SIZE    8192 
    235237#endif 
     
    270272/** 
    271273 * Constants for declaring the maximum handles that can be supported by 
    272  * a single IOQ framework. This constant might not be relevant to the  
    273  * underlying I/O queue impelementation, but still, developers should be  
     274 * a single IOQ framework. This constant might not be relevant to the 
     275 * underlying I/O queue impelementation, but still, developers should be 
    274276 * aware of this constant, to make sure that the program will not break when 
    275277 * the underlying implementation changes. 
    276278 * 
    277279 * For implementation based on select(), the value here will be used as the 
    278  * maximum number of socket handles passed to select() (i.e. FD_SETSIZE will  
     280 * maximum number of socket handles passed to select() (i.e. FD_SETSIZE will 
    279281 * be set to this value). 
    280282 * 
     
    296298 * employing reference counter to each handle. 
    297299 * 
    298  * In addition, the ioqueue will preallocate memory for the handles,  
    299  * according to the maximum number of handles that is specified during  
     300 * In addition, the ioqueue will preallocate memory for the handles, 
     301 * according to the maximum number of handles that is specified during 
    300302 * ioqueue creation. 
    301303 * 
     
    435437 * then stricmp/strcasecmp, but they can be slower on other systems. 
    436438 * When disabled, pjlib will fallback to stricmp/strnicmp. 
    437  *  
     439 * 
    438440 * Default: 0 
    439441 */ 
Note: See TracChangeset for help on using the changeset viewer.