Skip to content

Commit

Permalink
binder: add compat symbol
Browse files Browse the repository at this point in the history
Required for older Samsung libtvout

Change-Id: Ib18d2513570382432d49f302ab041230650372f2
  • Loading branch information
pawitp authored and Whitehawkx committed Nov 20, 2013
1 parent 1225a89 commit 79d6cc3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libs/binder/IPCThreadState.cpp
Expand Up @@ -362,6 +362,10 @@ status_t IPCThreadState::clearLastError()
return err;
}

extern "C" int _ZN7android14IPCThreadState13getCallingPidEv(IPCThreadState *state) {
return state->getCallingPid();
}

int IPCThreadState::getCallingPid() const
{
return mCallingPid;
Expand Down

0 comments on commit 79d6cc3

Please sign in to comment.