Skip to content

Commit 696b2a4

Browse files
committed
change: adjust thread count allocation
Cherry-picked from a689b15
1 parent 321a61a commit 696b2a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

c2me-base/src/main/java/com/ishland/c2me/base/ModuleEntryPoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ public class ModuleEntryPoint {
2020
if( is_windows,
2121
(cpus / 1.6 - 2),
2222
(cpus / 1.2 - 2)
23-
),
23+
) - if(is_client, 2, 0),
2424
if( is_j9vm,
2525
( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.4 ),
2626
( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 0.6 )
2727
)
28-
) - if(is_client, 2, 0)
28+
)
2929
)
3030
\040""";
3131

0 commit comments

Comments
 (0)