#include "asterisk.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/time.h>
#include <assert.h>
#include <string.h>
#include <errno.h>
#include "asterisk/utils.h"
#include "asterisk/poll-compat.h"
Go to the source code of this file.
Functions | |
int | ast_poll2 (struct pollfd *pArray, unsigned long n_fds, struct timeval *tv) |
Same as poll(2), except the time is specified in microseconds and the tv argument is modified to indicate the time remaining. | |
Variables | |
unsigned int | ast_FD_SETSIZE = FD_SETSIZE |
int ast_poll2 | ( | struct pollfd * | pArray, | |
unsigned long | n_fds, | |||
struct timeval * | tv | |||
) |
Same as poll(2), except the time is specified in microseconds and the tv argument is modified to indicate the time remaining.
Definition at line 268 of file poll.c.
References ast_select(), ast_tv(), ast_tvadd(), ast_tvdiff_ms(), ast_tvnow(), ast_tvsub(), and FD_ZERO.
Referenced by do_monitor().
00269 { 00270 #if !defined(AST_POLL_COMPAT) 00271 struct timeval start = ast_tvnow(); 00272 #if defined(HAVE_PPOLL) 00273 struct timespec ts = { tv ? tv->tv_sec : 0, tv ? tv->tv_usec * 1000 : 0 }; 00274 int res = ppoll(pArray, n_fds, tv ? &ts : NULL, NULL); 00275 #else 00276 int res = poll(pArray, n_fds, tv ? tv->tv_sec * 1000 + tv->tv_usec / 1000 : -1); 00277 #endif 00278 struct timeval after = ast_tvnow(); 00279 if (res > 0 && tv && ast_tvdiff_ms(ast_tvadd(*tv, start), after) > 0) { 00280 *tv = ast_tvsub(*tv, ast_tvsub(after, start)); 00281 } else if (res > 0 && tv) { 00282 *tv = ast_tv(0, 0); 00283 } 00284 return res; 00285 #else 00286 ast_fdset read_descs, write_descs, except_descs; 00287 int ready_descriptors, max_fd = 0; 00288 00289 FD_ZERO(&read_descs); 00290 FD_ZERO(&write_descs); 00291 FD_ZERO(&except_descs); 00292 00293 if (pArray) { 00294 max_fd = map_poll_spec(pArray, n_fds, &read_descs, &write_descs, &except_descs); 00295 } 00296 00297 ready_descriptors = ast_select(max_fd + 1, &read_descs, &write_descs, &except_descs, tv); 00298 00299 if (ready_descriptors >= 0) { 00300 map_select_results(pArray, n_fds, &read_descs, &write_descs, &except_descs); 00301 } 00302 00303 return ready_descriptors; 00304 #endif 00305 }
unsigned int ast_FD_SETSIZE = FD_SETSIZE |