poke-devel
[Top][All Lists]
Advanced

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

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


From: Jose E. Marchesi
Subject: Re: [PATCH] pickles: sframe.pk: add missing size_of_stack_reserve
Date: Tue, 14 Feb 2023 20:17:42 +0100
User-agent: Gnus/5.13 (Gnus v5.13)

Hello Hannes.

> 2023-02-14  Hannes Domani  <ssbssa@yahoo.de>
>
>       * pickles/pe.pk: Add size_of_stack_reserve.

I applied this on your behalf, after s/sframe.pk/pe.pk/ in the commit
line.

Thanks for the patch!

> ---
>  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;



reply via email to

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