summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-10-01 10:52:29 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-01 10:52:29 -0700
commitd0f1743310437921525b630de102e5d2aefb4c2b (patch)
tree851b91a1ac9f653ebbdd86fbebf4cde84e145235 /docs
parent7c1f9b34d49aa7cea9b830226e33e95d7608cf76 (diff)
parentb11c54c9b7849eaa95423dbbf8433e9f1b20ec32 (diff)
downloadandroid_dalvik-d0f1743310437921525b630de102e5d2aefb4c2b.tar.gz
android_dalvik-d0f1743310437921525b630de102e5d2aefb4c2b.tar.bz2
android_dalvik-d0f1743310437921525b630de102e5d2aefb4c2b.zip
am b11c54c9: am 307aa79a: Merge "Change Runtime.nativeLoad to return the dlerror(3) string." into gingerbread
Merge commit 'b11c54c9b7849eaa95423dbbf8433e9f1b20ec32' * commit 'b11c54c9b7849eaa95423dbbf8433e9f1b20ec32': Change Runtime.nativeLoad to return the dlerror(3) string.
Diffstat (limited to 'docs')
-rw-r--r--docs/jni-tips.html5
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/jni-tips.html b/docs/jni-tips.html
index 33f2c25a2..7018a1148 100644
--- a/docs/jni-tips.html
+++ b/docs/jni-tips.html
@@ -589,10 +589,7 @@ When working on native code it's not uncommon to see a failure like this:
<p>
In some cases it means what it says &mdash; the library wasn't found. In
other cases the library exists but couldn't be opened by dlopen(), and
-the details of the failure can be found in logcat. For example:
-<pre>D/dalvikvm( 870): Trying to load lib /sdcard/libfoo.so 0x4001ff48
-I/dalvikvm( 870): Unable to dlopen(/sdcard/libfoo.so): Cannot load library: /sdcard/libfoo.so is not a valid ELF object
-</pre>
+the details of the failure can be found in the exception's detail message.
<p>
Common reasons why you might encounter "library not found" exceptions:
<ul>