diff options
author | Andrew Haley <aph@redhat.com> | 2016-09-30 16:24:48 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2016-09-30 16:24:48 +0000 |
commit | 07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch) | |
tree | 3f22b3241c513ad168c8353805614ae1249410f4 /libjava/gnu/gcj/RawDataManaged.java | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2 |
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com>
* Makefile.def: Remove libjava.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
* configure.ac: Likewise.
* configure: Likewise.
* gcc/java: Remove.
* libjava: Likewise.
From-SVN: r240662
Diffstat (limited to 'libjava/gnu/gcj/RawDataManaged.java')
-rw-r--r-- | libjava/gnu/gcj/RawDataManaged.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libjava/gnu/gcj/RawDataManaged.java b/libjava/gnu/gcj/RawDataManaged.java deleted file mode 100644 index 91a36ac..0000000 --- a/libjava/gnu/gcj/RawDataManaged.java +++ /dev/null @@ -1,23 +0,0 @@ -/* Copyright (C) 2004 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. Unlike the - <code>RawData</code> type, fields declared as <code>RawDataManaged</code> - will be "marked" by the memory manager and considered for garbage - collection. - - Native data which is allocated using CNI's <code>JvAllocBytes()</code> - function and stored in a <code>RawDataManaged</code> will be automatically - freed when the Java object it is associated with becomes unreachable. */ - -public final class RawDataManaged -{ - private RawDataManaged() { } -} |