poke-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] pickles: sframe.pk: add missing size_of_stack_reserve


From: Hannes Domani
Subject: [PATCH] pickles: sframe.pk: add missing size_of_stack_reserve
Date: Tue, 14 Feb 2023 20:14:42 +0100

2023-02-14  Hannes Domani  <ssbssa@yahoo.de>

        * pickles/pe.pk: Add size_of_stack_reserve.
---
 pickles/pe.pk | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/pickles/pe.pk b/pickles/pe.pk
index 49b1a393..08ebed28 100644
--- a/pickles/pe.pk
+++ b/pickles/pe.pk
@@ -984,12 +984,19 @@ type PE_Opt_Hdr =
 
     /* The size of the stack to reserve.  */
     union
+    {
+      offset<uint<64>,B> s64 : pe32p;
+      offset<uint<32>,B> s32;
+    } size_of_stack_reserve;
+
+    /* The size of the stack to commit.  */
+    union
     {
       offset<uint<64>,B> s64 : pe32p;
       offset<uint<32>,B> s32;
     } size_of_stack_commit;
 
-    /* The size of the local heap space to reere.  */
+    /* The size of the local heap space to reserve.  */
     union
     {
       offset<uint<64>,B> s64 : pe32p;
-- 
2.35.1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]