Merge pull request #2257 from mcharleb/px4_poll-fix

px4_poll fix - was sleeping for usec instead of ms
This commit is contained in:
Lorenz Meier 2015-05-29 13:40:26 -07:00
commit 7cde53597c
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ int px4_poll(px4_pollfd_struct_t *fds, nfds_t nfds, int timeout)
void *res;
ts.tv_sec = timeout/1000;
ts.tv_nsec = (timeout % 1000)*1000;
ts.tv_nsec = (timeout % 1000)*1000000;
// Create a timer to unblock
struct timerData td(sem, ts);