|
Hi Adam,
It looks Okay to me. A couple of minor comments. http://cr.openjdk.java.net/~afarley/8227021.2/webrev/src/hotspot/share/runtime/os.cpp.frames.html 1362 //release allocated storage before exiting the vm 1363 while (i > 0) { 1364 i--; 1365 if (opath[i] != NULL) { 1366 FREE_C_HEAP_ARRAY(char, opath[i]); 1367 } 1368 } 1369 FREE_C_HEAP_ARRAY(char*, opath); 1377 //release allocated storage before returning null 1378 while (i > 0) { 1379 i--; 1380 if (opath[i] != NULL) { 1381 FREE_C_HEAP_ARRAY(char, opath[i]); 1382 } 1383 } 1384 FREE_C_HEAP_ARRAY(char*, opath); This duplicated fragments is worth to refactor to a function. Also a space is missed at the beginning of the comment. Thanks, Serguei On 7/31/19 02:01, Adam Farley8 wrote: Hi All, |
- Re: RFR: JDK-8227021: VM fails if any sun.boot.... David Holmes
- Re: RFR: JDK-8227021: VM fails if any sun.... David Holmes
- Re: RFR: JDK-8227021: VM fails if any ... Adam Farley8
- Re: RFR: JDK-8227021: VM fails if ... David Holmes
- Re: RFR: JDK-8227021: VM fails... Adam Farley8
- Re: RFR: JDK-8227021: VM fails... Adam Farley8
- Re: RFR: JDK-8227021: VM ... David Holmes
- Re: RFR: JDK-8227021: VM ... [email protected]
