Re: [PATCH] Strict thread-stack isolation and thread-stack sharing.

2020-08-14 Thread Utkarsh Rai
On Sat, Aug 15, 2020 at 12:39 AM Gedare Bloom wrote: > On Fri, Aug 14, 2020 at 9:25 AM Utkarsh Rai > wrote: > > > > Sorry for the late reply, I somehow missed the mail notification! > > > > On Thu, Aug 13, 2020 at 9:35 PM Gedare Bloom wrote: > >> > >> On Thu, Aug 13, 2020 at 9:06 AM Utkarsh Rai

Re: [PATCH] Strict thread-stack isolation and thread-stack sharing.

2020-08-14 Thread Gedare Bloom
On Fri, Aug 14, 2020 at 9:25 AM Utkarsh Rai wrote: > > Sorry for the late reply, I somehow missed the mail notification! > > On Thu, Aug 13, 2020 at 9:35 PM Gedare Bloom wrote: >> >> On Thu, Aug 13, 2020 at 9:06 AM Utkarsh Rai wrote: >> > >> > -This patch provides thread-stack isolation and thre

Re: [PATCH] Strict thread-stack isolation and thread-stack sharing.

2020-08-14 Thread Utkarsh Rai
Sorry for the late reply, I somehow missed the mail notification! On Thu, Aug 13, 2020 at 9:35 PM Gedare Bloom wrote: > On Thu, Aug 13, 2020 at 9:06 AM Utkarsh Rai > wrote: > > > > -This patch provides thread-stack isolation and thread-stack sharing > > mechanism for a POSIX thread. > > > Mons

Re: [PATCH] Strict thread-stack isolation and thread-stack sharing.

2020-08-13 Thread Gedare Bloom
On Thu, Aug 13, 2020 at 9:06 AM Utkarsh Rai wrote: > > -This patch provides thread-stack isolation and thread-stack sharing > mechanism for a POSIX thread. > Monster patch! think to yourself whether or not it makes sense to split these up. The main constraint is that every patch in the series sho

Re: [PATCH] Strict thread-stack isolation and thread-stack sharing.

2020-07-31 Thread Gedare Bloom
On Fri, Jul 31, 2020 at 11:13 AM Utkarsh Rai wrote: > > This patch provides thread-stack isolation and thread-stack sharing > mechanism for a POSIX thread. > > - Thread stacks are isolated with read-only permission. > - We use mmap, shm_open for thread-stack sharing. For mechanism of > thread-st

Re: [PATCH] Strict thread-stack isolation

2020-07-14 Thread Gedare Bloom
On Tue, Jul 14, 2020 at 10:59 AM Utkarsh Rai wrote: > > > > On Tue, Jul 14, 2020 at 7:36 PM Gedare Bloom wrote: >> >> I won't comment on the namespace and coding conventions, other than to >> say you should focus on doing them correctly as you code, rather than >> going back and fixing them later

Re: [PATCH] Strict thread-stack isolation

2020-07-14 Thread Utkarsh Rai
On Tue, Jul 14, 2020 at 7:36 PM Gedare Bloom wrote: > I won't comment on the namespace and coding conventions, other than to > say you should focus on doing them correctly as you code, rather than > going back and fixing them later. More below. > > On Mon, Jul 13, 2020 at 10:34 AM Utkarsh Rai >

Re: [PATCH] Strict thread-stack isolation

2020-07-14 Thread Gedare Bloom
I won't comment on the namespace and coding conventions, other than to say you should focus on doing them correctly as you code, rather than going back and fixing them later. More below. On Mon, Jul 13, 2020 at 10:34 AM Utkarsh Rai wrote: > > - This is the complete set of changes for strict isola

Re: [PATCH] Strict thread-stack isolation

2020-07-14 Thread Utkarsh Rai
On Tue, Jul 14, 2020 at 1:13 PM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > Hello Utkarsh, > > if you look a the stuff you added to the score and compare it with > something existing in the score, do you notice differences in the naming > conventions and the code format? Have yo

Re: [PATCH] Strict thread-stack isolation

2020-07-14 Thread Sebastian Huber
Hello Utkarsh, if you look a the stuff you added to the score and compare it with something existing in the score, do you notice differences in the naming conventions and the code format? Have you looked at https://docs.rtems.org/branches/master/eng/coding.html ? On 13/07/2020 18:33, Utkars