forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add disablestackoverflowprobing element (dotnet#29131)
- Loading branch information
Showing
4 changed files
with
61 additions
and
8 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
...ework/configure-apps/file-schema/runtime/disableStackOverflowProbing-element.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
description: "Learn more about: <disableStackOverflowProbing> Element" | ||
title: "<disableStackOverflowProbing> Element" | ||
ms.date: 04/20/2022 | ||
--- | ||
# \<disableStackOverflowProbing> Element | ||
|
||
Specifies whether stack-overflow probing is disabled. | ||
|
||
[**\<configuration>**](../configuration-element.md)\ | ||
[**\<runtime>**](runtime-element.md)\ | ||
**\<disableStackOverflowProbing>** | ||
|
||
## Syntax | ||
|
||
```xml | ||
<disableStackOverflowProbing enabled="true"|"false" /> | ||
``` | ||
|
||
## Attribute | ||
|
||
| Attribute | Description | | ||
|-----------|--------------------------------------------------------------------------------------| | ||
| `enabled` | Required attribute.<br /><br />Specifies whether stack-overflow probing is disabled. | | ||
|
||
### enabled Attribute | ||
|
||
| Value | Description | | ||
|-------|-------------------------------------| | ||
| true | Stack-overflow probing is enabled. | | ||
| false | Stack-overflow probing is disabled. | | ||
|
||
### Parent Elements | ||
|
||
|Element|Description| | ||
|-------------|-----------------| | ||
|`configuration`|The root element in every configuration file used by the common language runtime and .NET Framework applications.| | ||
|`runtime`|Contains information about runtime initialization options.| | ||
|
||
## Remarks | ||
|
||
The `<disableStackOverflowProbing>` specifies whether stack-overflow probing is disabled. If you specify a very small stack size when constructing a <xref:System.Threading.Thread> by calling <xref:System.Threading.Thread.%23ctor(System.Threading.ParameterizedThreadStart,System.Int32)>, you might need to disable stack-overflow probing. When the stack is severely constrained, the probing can itself cause a stack overflow. | ||
|
||
## See also | ||
|
||
- [\<runtime> Element](runtime-element.md) | ||
- [\<configuration> Element](../configuration-element.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters