summaryrefslogtreecommitdiffstats
path: root/core/java/android/os/IBinder.java
diff options
context:
space:
mode:
authorDirk Dougherty <ddougherty@google.com>2010-03-29 15:36:53 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-03-29 15:36:53 -0700
commitc46f28dc0fde1889b37bdc7066ec2af96c16e358 (patch)
tree8f8fe3fc4f53725c67351b4b65308acff9a6e537 /core/java/android/os/IBinder.java
parent02a1f78987a1e6bfa361806fcd3b0a02783b09b9 (diff)
parentd76ef97930d45e37dba4ac58b376c3067c2eb54a (diff)
downloadframeworks_base-c46f28dc0fde1889b37bdc7066ec2af96c16e358.zip
frameworks_base-c46f28dc0fde1889b37bdc7066ec2af96c16e358.tar.gz
frameworks_base-c46f28dc0fde1889b37bdc7066ec2af96c16e358.tar.bz2
Merge "doc change: In fundamentals doc, make statement about synchronous execution of RPC less strict. Indicate that FLAG_ONEWAY applies only across processes." into froyo
Diffstat (limited to 'core/java/android/os/IBinder.java')
-rw-r--r--core/java/android/os/IBinder.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/os/IBinder.java b/core/java/android/os/IBinder.java
index 5c40c9a0..174f3b6 100644
--- a/core/java/android/os/IBinder.java
+++ b/core/java/android/os/IBinder.java
@@ -112,7 +112,8 @@ public interface IBinder {
/**
* Flag to {@link #transact}: this is a one-way call, meaning that the
* caller returns immediately, without waiting for a result from the
- * callee.
+ * callee. Applies only if the caller and callee are in different
+ * processes.
*/
int FLAG_ONEWAY = 0x00000001;