- Timestamp:
- May 27, 2006 8:54:54 PM (19 years ago)
- Location:
- pjproject/branches/symbian
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/symbian/pjlib/include/pj/config.h
r433 r478 1 1 /* $Id$ */ 2 /* 2 /* 3 3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org> 4 4 * … … 15 15 * You should have received a copy of the GNU General Public License 16 16 * 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 18 18 */ 19 19 #ifndef __PJ_CONFIG_H__ … … 56 56 #elif defined(PJ_RTEMS) && PJ_RTEMS!=0 57 57 # include <pj/compat/os_rtems.h> 58 #elif defined(PJ_SYMBIAN) && PJ_SYMBIAN!=0 59 # include <pj/compat/os_symbian.h> 58 60 #else 59 61 # error "Please specify target os." … … 231 233 * Default: 8192 232 234 */ 233 #ifndef PJ_THREAD_DEFAULT_STACK_SIZE 235 #ifndef PJ_THREAD_DEFAULT_STACK_SIZE 234 236 # define PJ_THREAD_DEFAULT_STACK_SIZE 8192 235 237 #endif … … 270 272 /** 271 273 * 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 274 276 * aware of this constant, to make sure that the program will not break when 275 277 * the underlying implementation changes. 276 278 * 277 279 * 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 279 281 * be set to this value). 280 282 * … … 296 298 * employing reference counter to each handle. 297 299 * 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 300 302 * ioqueue creation. 301 303 * … … 435 437 * then stricmp/strcasecmp, but they can be slower on other systems. 436 438 * When disabled, pjlib will fallback to stricmp/strnicmp. 437 * 439 * 438 440 * Default: 0 439 441 */
Note: See TracChangeset
for help on using the changeset viewer.