Re: [HACKERS] don't use MAKE_PTR/OFFSET for shmem pointers

2008-11-03 Thread Alvaro Herrera
Tom Lane wrote: Kris Jurka [EMAIL PROTECTED] writes: Since we require every process to map the shared memory region to the same address, we don't need the MAKE_PTR/OFFSET code that was needed when that was not the case. This patch makes shared memory pointers just like regular

Re: [HACKERS] don't use MAKE_PTR/OFFSET for shmem pointers

2008-11-03 Thread Tom Lane
Alvaro Herrera [EMAIL PROTECTED] writes: We now have two very similar doubly-linked list implementations. Should we take one of them out? If you're thinking of dllist, it has considerably different implementation assumptions. regards, tom lane -- Sent via

Re: [HACKERS] don't use MAKE_PTR/OFFSET for shmem pointers

2008-11-02 Thread Tom Lane
Kris Jurka [EMAIL PROTECTED] writes: Since we require every process to map the shared memory region to the same address, we don't need the MAKE_PTR/OFFSET code that was needed when that was not the case. This patch makes shared memory pointers just like regular pointers. Applied with minor

[HACKERS] don't use MAKE_PTR/OFFSET for shmem pointers

2008-10-28 Thread Kris Jurka
Since we require every process to map the shared memory region to the same address, we don't need the MAKE_PTR/OFFSET code that was needed when that was not the case. This patch makes shared memory pointers just like regular pointers.