User profile: glennhk

User info
User name:glennhk
History
Joined:
Number of posts:6
Latest posts:

Strange print after fork
I see, so processes share the same logical addresses but have different physical addresses.

Strange print after fork
Are you saying that the address written to stdout by printf("%p", &n); is the logical address (the o...

Strange print after fork
How in the earth they can share the same addresses and have two differents variables???

Strange print after fork
I already know the copy-on-write technique, but I expected to see a change of address after the [cod...

Strange print after fork
the fork() call duplicates a process scope of addresses, in fact father and child have different val...