Commit c484a5fb by Michael Koch Committed by Michael Koch

2003-05-13 Michael Koch <konqueror@gmx.de>

	* gnu/java/nio/natDirectByteBufferImpl.cc
	(allocateImpl): jlong -> RawData*.
	(freeImpl): Likewise.

From-SVN: r66760
parent f7c50032
2003-05-13 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natDirectByteBufferImpl.cc
(allocateImpl): jlong -> RawData*.
(freeImpl): Likewise.
2003-05-13 Michael Koch <konqueror@gmx.de>
* java/nio/channels/FileChannel.java
(MapMode.m): Made it package-private to match JDK 1.4.
* java/nio/charset/Charset.java
......
......@@ -13,9 +13,10 @@ details. */
#include <gcj/cni.h>
#include <jvm.h>
#include <gnu/gcj/RawData.h>
#include <gnu/java/nio/DirectByteBufferImpl.h>
jlong
gnu::gcj::RawData*
gnu::java::nio::DirectByteBufferImpl::allocateImpl (jint capacity)
{
// FIXME: implement this
......@@ -23,7 +24,7 @@ gnu::java::nio::DirectByteBufferImpl::allocateImpl (jint capacity)
}
void
gnu::java::nio::DirectByteBufferImpl::freeImpl (jlong address)
gnu::java::nio::DirectByteBufferImpl::freeImpl (gnu::gcj::RawData* address)
{
// FIXME: implement this
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment