summaryrefslogtreecommitdiffstats
path: root/luni/src/main/native/Register.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2011-03-29 14:26:04 -0700
committerElliott Hughes <enh@google.com>2011-03-29 14:38:20 -0700
commit8b15dcc5890963edad4dfcf558cc16027c7985e5 (patch)
tree4a908938b37c8f73a5c8a26a2702641f613a73d3 /luni/src/main/native/Register.cpp
parent94aa98c94b79f5c99a0e1d905c03c5423d1ce0fa (diff)
downloadlibcore-8b15dcc5890963edad4dfcf558cc16027c7985e5.zip
libcore-8b15dcc5890963edad4dfcf558cc16027c7985e5.tar.gz
libcore-8b15dcc5890963edad4dfcf558cc16027c7985e5.tar.bz2
Add sendfile(2).
This patch marks the end of OSFileSystem. Having to support a Java "long*" for sendfile(2) gave me an opportunity to go back and improve my ioctl(2) to use a corresponding "int*" equivalent, instead of its previous special-case hack. Bug: 3107501 Change-Id: I9fde4777700552263fab4fe9aeb556174163e3dc
Diffstat (limited to 'luni/src/main/native/Register.cpp')
-rw-r--r--luni/src/main/native/Register.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/luni/src/main/native/Register.cpp b/luni/src/main/native/Register.cpp
index bf90ab3..d8521a5 100644
--- a/luni/src/main/native/Register.cpp
+++ b/luni/src/main/native/Register.cpp
@@ -57,7 +57,6 @@ extern int register_libcore_io_OsConstants(JNIEnv* env);
extern int register_libcore_io_Posix(JNIEnv* env);
extern int register_libcore_net_RawSocket(JNIEnv* env);
extern int register_org_apache_harmony_dalvik_NativeTestTarget(JNIEnv* env);
-extern int register_org_apache_harmony_luni_platform_OSFileSystem(JNIEnv* env);
extern int register_org_apache_harmony_luni_platform_OSNetworkSystem(JNIEnv* env);
extern int register_org_apache_harmony_luni_util_fltparse(JNIEnv* env);
extern int register_org_apache_harmony_xml_ExpatParser(JNIEnv* env);
@@ -106,7 +105,6 @@ extern "C" int registerCoreLibrariesJni(JNIEnv* env) {
register_libcore_io_Posix(env) != -1 &&
register_libcore_net_RawSocket(env) != -1 &&
register_org_apache_harmony_dalvik_NativeTestTarget(env) != -1 &&
- register_org_apache_harmony_luni_platform_OSFileSystem(env) != -1 &&
register_org_apache_harmony_luni_platform_OSNetworkSystem(env) != -1 &&
register_org_apache_harmony_luni_util_fltparse(env) != -1 &&
register_org_apache_harmony_xml_ExpatParser(env) != -1 &&