mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8048192: (bf) Out of direct buffer memory message should include the limits
Reviewed-by: alanb, rriggs
This commit is contained in:
parent
b24f8ba2ec
commit
24c70fcf88
1 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -172,7 +172,10 @@ class Bits { // package-private
|
||||||
}
|
}
|
||||||
|
|
||||||
// no luck
|
// no luck
|
||||||
throw new OutOfMemoryError("Direct buffer memory");
|
throw new OutOfMemoryError
|
||||||
|
("Cannot reserve "
|
||||||
|
+ size + " bytes of direct buffer memory (allocated: "
|
||||||
|
+ RESERVED_MEMORY.get() + ", limit: " + MAX_MEMORY +")");
|
||||||
|
|
||||||
} finally {
|
} finally {
|
||||||
if (interrupted) {
|
if (interrupted) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue