diff options
author | Patrik Reali <patrik@reali.ch> | 2004-07-20 20:28:42 +0000 |
---|---|---|
committer | Patrik Reali <patrik@reali.ch> | 2004-07-20 20:28:42 +0000 |
commit | 6eba7b7e6bf207468c504d43e4dac28c974c2f0e (patch) | |
tree | cb5e06b3f45504bf72d0fa6dd3b6e1b72f5e34f8 /include | |
parent | cd66ffe9d73c520939092de327b56c00bcf25e82 (diff) | |
download | classpath-6eba7b7e6bf207468c504d43e4dac28c974c2f0e.tar.gz |
native method init moved from gnu.java.nio.PipeImpl to gnu.java.nio.VMPipeImpl
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 6 | ||||
-rw-r--r-- | include/gnu_java_nio_PipeImpl.h | 19 | ||||
-rw-r--r-- | include/gnu_java_nio_VMPipeImpl.h | 19 |
3 files changed, 22 insertions, 22 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 64d0c2514..fa1400bc9 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -41,7 +41,7 @@ $(top_srcdir)/include/gnu_java_awt_peer_gtk_GtkWindowPeer.h \ $(top_srcdir)/include/gnu_java_net_PlainDatagramSocketImpl.h \ $(top_srcdir)/include/gnu_java_net_PlainSocketImpl.h \ $(top_srcdir)/include/gnu_java_nio_NIOServerSocket.h \ -$(top_srcdir)/include/gnu_java_nio_PipeImpl.h \ +$(top_srcdir)/include/gnu_java_nio_VMPipeImpl.h \ $(top_srcdir)/include/gnu_java_nio_SelectorImpl.h \ $(top_srcdir)/include/gnu_java_nio_channels_FileChannelImpl.h \ $(top_srcdir)/include/java_io_ObjectInputStream.h \ @@ -138,8 +138,8 @@ $(top_srcdir)/include/gnu_java_net_PlainSocketImpl.h: $(top_srcdir)/gnu/java/net $(JAVAH) -o $@ gnu.java.net.PlainSocketImpl $(top_srcdir)/include/gnu_java_nio_NIOServerSocket.h: $(top_srcdir)/gnu/java/nio/NIOServerSocket.java $(JAVAH) -o $@ gnu.java.nio.NIOServerSocket -$(top_srcdir)/include/gnu_java_nio_PipeImpl.h: $(top_srcdir)/gnu/java/nio/PipeImpl.java - $(JAVAH) -o $@ gnu.java.nio.PipeImpl +$(top_srcdir)/include/gnu_java_nio_VMPipeImpl.h: $(top_srcdir)/gnu/java/nio/VMPipeImpl.java + $(JAVAH) -o $@ gnu.java.nio.VMPipeImpl $(top_srcdir)/include/gnu_java_nio_SelectorImpl.h: $(top_srcdir)/gnu/java/nio/SelectorImpl.java $(JAVAH) -o $@ gnu.java.nio.SelectorImpl $(top_srcdir)/include/java_io_ObjectInputStream.h: $(top_srcdir)/java/io/ObjectInputStream.java diff --git a/include/gnu_java_nio_PipeImpl.h b/include/gnu_java_nio_PipeImpl.h deleted file mode 100644 index 4c542c3bf..000000000 --- a/include/gnu_java_nio_PipeImpl.h +++ /dev/null @@ -1,19 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __gnu_java_nio_PipeImpl__ -#define __gnu_java_nio_PipeImpl__ - -#include <jni.h> - -#ifdef __cplusplus -extern "C" -{ -#endif - -JNIEXPORT void JNICALL Java_gnu_java_nio_PipeImpl_nativeInit (JNIEnv *env, jobject, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __gnu_java_nio_PipeImpl__ */ diff --git a/include/gnu_java_nio_VMPipeImpl.h b/include/gnu_java_nio_VMPipeImpl.h new file mode 100644 index 000000000..a9a0073a1 --- /dev/null +++ b/include/gnu_java_nio_VMPipeImpl.h @@ -0,0 +1,19 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __gnu_java_nio_VMPipeImpl__ +#define __gnu_java_nio_VMPipeImpl__ + +#include <jni.h> + +#ifdef __cplusplus +extern "C" +{ +#endif + +JNIEXPORT void JNICALL Java_gnu_java_nio_VMPipeImpl_init (JNIEnv *env, jobject, jobject, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __gnu_java_nio_VMPipeImpl__ */ |