summaryrefslogtreecommitdiffstats
path: root/core/java/android/os
diff options
context:
space:
mode:
authorDirk Dougherty <ddougherty@google.com>2010-03-29 14:20:41 -0700
committerDirk Dougherty <ddougherty@google.com>2010-03-29 14:47:39 -0700
commitd76ef97930d45e37dba4ac58b376c3067c2eb54a (patch)
tree1ec277b76a8ddda9435e683953125dff7804c0b4 /core/java/android/os
parent272b504ee6aaf2515572520cd642f9a4fbf81a44 (diff)
downloadframeworks_base-d76ef97930d45e37dba4ac58b376c3067c2eb54a.zip
frameworks_base-d76ef97930d45e37dba4ac58b376c3067c2eb54a.tar.gz
frameworks_base-d76ef97930d45e37dba4ac58b376c3067c2eb54a.tar.bz2
doc change: In fundamentals doc, make statement about synchronous execution of RPC less strict. Indicate that FLAG_ONEWAY applies only across processes.
Bug: 2554090 Change-Id: Ia13b3d156d230609e8296a3b31c2882ba13681f3
Diffstat (limited to 'core/java/android/os')
-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;