diff options
author | Dan Stoza <stoza@google.com> | 2014-11-26 12:23:23 -0800 |
---|---|---|
committer | Dan Stoza <stoza@google.com> | 2014-12-01 11:07:14 -0800 |
commit | 9c634fd2d13722106d475b000b05babcce1f65be (patch) | |
tree | f7b00d3a9f21420fb3a74ec326e21d2183df0f0b /libs | |
parent | 46ca041f43e3d80029782b12c994b232dc01b5d5 (diff) | |
download | frameworks_native-9c634fd2d13722106d475b000b05babcce1f65be.zip frameworks_native-9c634fd2d13722106d475b000b05babcce1f65be.tar.gz frameworks_native-9c634fd2d13722106d475b000b05babcce1f65be.tar.bz2 |
binder: Return pid_t/uid_t instead of int
Makes IPCThreadState::getCalling{Pid,Uid} return a more
appropriate type.
Change-Id: I97f8a83c1c0722bc1afbf8a6df1a288f8f1f0d2c
Diffstat (limited to 'libs')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 8633691..2043d54 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -350,12 +350,12 @@ status_t IPCThreadState::clearLastError() return err; } -int IPCThreadState::getCallingPid() const +pid_t IPCThreadState::getCallingPid() const { return mCallingPid; } -int IPCThreadState::getCallingUid() const +uid_t IPCThreadState::getCallingUid() const { return mCallingUid; } |