fc5b21380e
2000-05-18 Bryce McKinlay <bryce@albatross.co.nz> * java/lang/Thread.java: Declare `data' as Object, not RawData. * java/lang/natThread.java (initialize_native): Cast `data' to jobject. * gnu/gcj/RawData.java: Clarify documentation. From-SVN: r33981
18 lines
426 B
Java
18 lines
426 B
Java
/* Copyright (C) 1999, 2000 Free Software Foundation
|
|
|
|
This file is part of libgcj.
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
details. */
|
|
|
|
package gnu.gcj;
|
|
|
|
/** A type used to indicate special data used by native code that should not
|
|
be marked by the garbage collector. */
|
|
|
|
public final class RawData
|
|
{
|
|
private RawData() { }
|
|
}
|