2003-05-13 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/natDirectByteBufferImpl.cc (allocateImpl): jlong -> RawData*. (freeImpl): Likewise. From-SVN: r66760
This commit is contained in:
parent
f7c5003268
commit
c484a5fbd3
2 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue