We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35fc6c6 commit 10149e9Copy full SHA for 10149e9
1 file changed
Modules/_remote_debugging/_remote_debugging.h
@@ -148,7 +148,7 @@ typedef enum _WIN32_THREADSTATE {
148
#define MAX_LONG_DIGITS 64 /* Allows values up to ~2^1920 */
149
#define MAX_SET_TABLE_SIZE (1 << 20) /* 1 million entries max for set iteration */
150
#define MAX_FRAME_CHAIN_DEPTH (1024 + 512) /* Iteration bound for frame chain walks */
151
-#define MAX_TASK_WAITER_CHAIN_DEPTH 256
+#define MAX_TASK_WAITER_CHAIN_DEPTH 256 /* Task waiter walk recursion cap: 256 * SIZEOF_TASK_OBJ ~= 1 MiB */
152
153
#ifndef MAX
154
#define MAX(a, b) ((a) > (b) ? (a) : (b))
0 commit comments