Changeset 5042 for pjproject


Ignore:
Timestamp:
Apr 1, 2015 7:50:23 AM (9 years ago)
Author:
ming
Message:

Re #1782 (misc): Prevent build error if using another ioqueue backend (such as epoll) or if using PJ_CONFIG_MAXIMUM_SIZE on platforms that do not support setting FD_SETSIZE

File:
1 edited

Legend:

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

    r4915 r5042  
    675675    /* When FD_SETSIZE is not changeable, check if PJ_IOQUEUE_MAX_HANDLES 
    676676     * is lower than FD_SETSIZE value. 
    677      */ 
     677     * 
     678     * Update: Not all ioqueue backends require this (such as epoll), so 
     679     * this check will be done on the ioqueue implementation itself, such as 
     680     * ioqueue select. 
     681     */ 
     682/* 
    678683#   ifdef FD_SETSIZE 
    679684#       if PJ_IOQUEUE_MAX_HANDLES > FD_SETSIZE 
     
    681686#       endif 
    682687#   endif 
     688*/ 
    683689#endif 
    684690 
Note: See TracChangeset for help on using the changeset viewer.