Skip to content

Commit 09510a1

Browse files
committedJul 11, 2020
Merge
2 parents 0861248 + 5b2fd36 commit 09510a1

File tree

563 files changed

+574
-744
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

563 files changed

+574
-744
lines changed
 

‎src/java.base/share/classes/java/lang/ProcessHandleImpl.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,12 @@ final class ProcessHandleImpl implements ProcessHandle {
8787
ThreadGroup tg = Thread.currentThread().getThreadGroup();
8888
while (tg.getParent() != null) tg = tg.getParent();
8989
ThreadGroup systemThreadGroup = tg;
90+
91+
// For a debug build, the stack shadow zone is larger;
92+
// Increase the total stack size to avoid potential stack overflow.
93+
int debugDelta = "release".equals(System.getProperty("jdk.debug")) ? 0 : (4*4096);
9094
final long stackSize = Boolean.getBoolean("jdk.lang.processReaperUseDefaultStackSize")
91-
? 0 : REAPER_DEFAULT_STACKSIZE;
95+
? 0 : REAPER_DEFAULT_STACKSIZE + debugDelta;
9296

9397
ThreadFactory threadFactory = grimReaper -> {
9498
Thread t = new Thread(systemThreadGroup, grimReaper,

‎src/jdk.incubator.jpackage/linux/classes/jdk/incubator/jpackage/internal/LinuxDebBundler.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,9 @@ private Path buildDeb(Map<String, ? super Object> params,
472472
outFile.toAbsolutePath().toString()));
473473

474474
// run dpkg
475-
Executor.of(cmdline.toArray(String[]::new)).executeExpectSuccess();
475+
RetryExecutor.retryOnKnownErrorMessage(
476+
"semop(1): encountered an error: Invalid argument").execute(
477+
cmdline.toArray(String[]::new));
476478

477479
Log.verbose(MessageFormat.format(I18N.getString(
478480
"message.output-to-location"), outFile.toAbsolutePath().toString()));

0 commit comments

Comments
 (0)