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

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

2020-08-13 Thread Utkarsh Rai
-This patch provides thread-stack isolation and thread-stack sharing mechanism for a POSIX thread. -The patches are based on sebastian's build-2 branch of sebastian's repo https://git.rtems.org/sebh -Configurations options are provided by using the new-build system. Refer to https://ftp.rtems.

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

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

2020-07-31 Thread Utkarsh Rai
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-stack sharing please refer to the related test. --- .../realview-pb