Skip to content

Commit

Permalink
Deprecate option InternalThreadStackSize.
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhaeubl committed Feb 1, 2024
1 parent 27eb01b commit 082e940
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ protected void onValueUpdate(EconomicMap<OptionKey<?>, Object> values, Boolean o
@Option(help = "The size of each thread stack at run-time, in bytes.", type = OptionType.User)//
public static final RuntimeOptionKey<Long> StackSize = new RuntimeOptionKey<>(0L);

@Option(help = "The size of each internal thread stack, in bytes.", type = OptionType.Expert)//
public static final HostedOptionKey<Long> InternalThreadStackSize = new HostedOptionKey<>(2L * 1024 * 1024);
@Option(help = "Deprecated, has no effect.", deprecated = true) //
public static final HostedOptionKey<Long> InternalThreadStackSize = new HostedOptionKey<>(0L);

/**
* Cached value of {@link ConcealedOptions#MaxJavaStackTraceDepth}. Also used as default value.
Expand Down

0 comments on commit 082e940

Please sign in to comment.