< prev index next >
test/hotspot/jtreg/gc/stress/TestStressIHOPMultiThread.java
Print this page
*** 1,7 ****
/*
! * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
--- 1,7 ----
/*
! * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*** 179,189 ****
--- 179,195 ----
@Override
public void run() {
System.out.println("Start the thread " + threadId);
while (TestStressIHOPMultiThread.this.isRunning()) {
+ try {
allocate(amountOfGarbage);
+ } catch (OutOfMemoryError e) {
+ free();
+ System.out.println("OutOfMemoryError occurred in thread " + threadId);
+ break;
+ }
free();
}
}
private void silentJoin() {
< prev index next >