commit | 8d9d02862b1e00d27681846e3de9c4cf4f6634fc | [log] [tgz] |
---|---|---|
author | Sharvil Nanavati <sharvil@google.com> | Sun Sep 07 02:48:19 2014 -0700 |
committer | Andre Eisenbach <eisenbach@google.com> | Mon Mar 16 16:51:33 2015 -0700 |
tree | 97351a450dfa145073f3f6d9a14f4f99eac3ef06 | |
parent | e2a05e6df9b709a6f63e55e1365be70e58329626 [diff] |
GKI task entry points should have a consistent signature. Previously, GKI task entry points had inconsistent signatures. For example, we had: int btif_media_task(void *p) void btif_task(UINT32 params) void btu_task (UINT32 param) The single argument was universally ignored and the caller always set it to 0. This change consolidates all of that and defines the entry point as having 0 arity and no return value.