summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_posix.cc
diff options
context:
space:
mode:
authorchromium@hybridsource.org <chromium@hybridsource.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-25 04:54:41 +0000
committerchromium@hybridsource.org <chromium@hybridsource.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-25 04:54:41 +0000
commit94f8c957011e0d1f9a28607a05066edc2989eaa2 (patch)
tree0eab7b490ecb89c4e87bfe2da00579c09bd6c2bf /ipc/ipc_channel_posix.cc
parent9a039aead5c77431a21db52692970a0d3e63f1fc (diff)
downloadchromium_src-94f8c957011e0d1f9a28607a05066edc2989eaa2.zip
chromium_src-94f8c957011e0d1f9a28607a05066edc2989eaa2.tar.gz
chromium_src-94f8c957011e0d1f9a28607a05066edc2989eaa2.tar.bz2
Patch for Solaris support, mostly ifdefs and header files, plus adds libevent configuration.
BUG=30101 TEST=compiles Review URL: http://codereview.chromium.org/7238021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90494 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel_posix.cc')
-rw-r--r--ipc/ipc_channel_posix.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
index 2994828..9cb78aa 100644
--- a/ipc/ipc_channel_posix.cc
+++ b/ipc/ipc_channel_posix.cc
@@ -938,6 +938,8 @@ bool Channel::ChannelImpl::GetClientEuid(uid_t* client_euid) const {
}
*client_euid = peer_euid;
return true;
+#elif defined(OS_SOLARIS)
+ return false;
#else
struct ucred cred;
socklen_t cred_len = sizeof(cred);