Correct the logic of UIPC thread id check
Use case: Check the A2dp play , pause from headset STR: Connect to the headset from DUT Try play , pause from Headset once the song is started playing from headset. Failure: Bluetooth process crashed due to invalid fd descriptor while clearing fds using FD_CLR Root cause: Root cause for this issue is pthread join mechanism for UIPC thread is not proper ( incorrect logic ), as a result UIPC thread still running, and A2DP media task will try to start a new UIPC thread before the previous UIPC read thread is closed, finally sometimes this scenario leads to this issue. This issue doesn't come always, if the media task is in process of initiating the fds before staring the new UIPC thread, and previous UIPC thread is in exiting state. Fix: Correct the logic of UIPC thread id check while joining the UIPC thread. Thread id might hold pointer value where it's value is negative vaule with singed bit is set,so corrected the logic to check against zero or non zero. Bug: 21896912 Change-Id: I1307d848958656e718e95a972f258526470b1974
Loading
Please register or sign in to comment