Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
70cb702a
Commit
70cb702a
authored
May 29, 2001
by
Tom Tromey
Committed by
Tom Tromey
May 29, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/jvm.h (_Jv_ThrowNoMemory): Mark as noreturn.
From-SVN: r42694
parent
eb019738
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
libjava/ChangeLog
+2
-0
libjava/include/jvm.h
+1
-1
No files found.
libjava/ChangeLog
View file @
70cb702a
2001-05-29 Tom Tromey <tromey@redhat.com>
* include/jvm.h (_Jv_ThrowNoMemory): Mark as noreturn.
* configure: Rebuilt.
* configure.in: Only add multilib support code if we just rebuilt
top-level Makefile.
...
...
libjava/include/jvm.h
View file @
70cb702a
...
...
@@ -115,7 +115,7 @@ void *_Jv_AllocArray (jsize size, jclass cl) __attribute__((__malloc__));
/* Allocate space that is known to be pointer-free. */
void
*
_Jv_AllocBytes
(
jsize
size
)
__attribute__
((
__malloc__
));
/* 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
for the GC, and the second word is the traced pointer. */
void
*
_Jv_AllocTraceOne
(
jsize
size
/* incl. reserved slot */
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment