On Thu, May 29, 2014 at 3:35 PM, Ansis Atteka wrote:
> On Wed, May 28, 2014 at 2:46 PM, Ben Pfaff wrote:
>> On Wed, May 28, 2014 at 02:40:23PM -0700, Ansis Atteka wrote:
>>> Between fork() and execvp() calls in the process_start()
>>> function both child and parent processes share the same
>>> fi
On Wed, May 28, 2014 at 2:46 PM, Ben Pfaff wrote:
> On Wed, May 28, 2014 at 02:40:23PM -0700, Ansis Atteka wrote:
>> Between fork() and execvp() calls in the process_start()
>> function both child and parent processes share the same
>> file descriptors. This means that, if a child process
>> rece
On Wed, May 28, 2014 at 02:40:23PM -0700, Ansis Atteka wrote:
> Between fork() and execvp() calls in the process_start()
> function both child and parent processes share the same
> file descriptors. This means that, if a child process
> received a signal during this time interval, then it could
>
Between fork() and execvp() calls in the process_start()
function both child and parent processes share the same
file descriptors. This means that, if a child process
received a signal during this time interval, then it could
potentially write data to a shared file descriptor.
One such example is