* include/jvm.h (_Jv_ThrowNoMemory): Mark as noreturn.
From-SVN: r42694
This commit is contained in:
parent
eb019738e2
commit
70cb702a96
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
2001-05-29 Tom Tromey <tromey@redhat.com>
|
2001-05-29 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* include/jvm.h (_Jv_ThrowNoMemory): Mark as noreturn.
|
||||||
|
|
||||||
* configure: Rebuilt.
|
* configure: Rebuilt.
|
||||||
* configure.in: Only add multilib support code if we just rebuilt
|
* configure.in: Only add multilib support code if we just rebuilt
|
||||||
top-level Makefile.
|
top-level Makefile.
|
||||||
|
|
|
@ -115,7 +115,7 @@ void *_Jv_AllocArray (jsize size, jclass cl) __attribute__((__malloc__));
|
||||||
/* Allocate space that is known to be pointer-free. */
|
/* Allocate space that is known to be pointer-free. */
|
||||||
void *_Jv_AllocBytes (jsize size) __attribute__((__malloc__));
|
void *_Jv_AllocBytes (jsize size) __attribute__((__malloc__));
|
||||||
/* Explicitly throw an out-of-memory exception. */
|
/* Explicitly throw an out-of-memory exception. */
|
||||||
void _Jv_ThrowNoMemory();
|
void _Jv_ThrowNoMemory() __attribute__((__noreturn__));
|
||||||
/* Allocate an object with a single pointer. The first word is reserved
|
/* Allocate an object with a single pointer. The first word is reserved
|
||||||
for the GC, and the second word is the traced pointer. */
|
for the GC, and the second word is the traced pointer. */
|
||||||
void *_Jv_AllocTraceOne (jsize size /* incl. reserved slot */);
|
void *_Jv_AllocTraceOne (jsize size /* incl. reserved slot */);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue