Hi,
There is piece of code in the hciattach main function, which polls for
events for file descrpitor every 500msec.

    while (!__io_canceled) {
                p.revents = 0;
                err = poll(&p, 1, 500);
                if (err < 0 && errno == EINTR)
                        continue;
                if (err)
                        break;
        }
Can increase the timeout value 500 to more, is this cause anything.
Appreciate your answer.

Regards
Bheemsen K

--~--~---------~--~----~------------~-------~--~----~
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting
-~----------~----~----~----~------~----~------~--~---

Reply via email to