Re: Remove redundant HandleWalWriterInterrupts()

2024-01-24 Thread Fujii Masao
On Thu, Jan 25, 2024 at 4:40 AM Nathan Bossart wrote: > > On Wed, Jan 24, 2024 at 07:30:17PM +0530, Bharath Rupireddy wrote: > > On Wed, Jan 24, 2024 at 5:50 PM Fujii Masao wrote: > >> Because of commit 1bdd54e662, the code of HandleWalWriterInterrupts() > >> became the same as

Re: Remove redundant HandleWalWriterInterrupts()

2024-01-24 Thread Nathan Bossart
On Wed, Jan 24, 2024 at 07:30:17PM +0530, Bharath Rupireddy wrote: > On Wed, Jan 24, 2024 at 5:50 PM Fujii Masao wrote: >> Because of commit 1bdd54e662, the code of HandleWalWriterInterrupts() >> became the same as HandleMainLoopInterrupts(). So I'd like to propose to >> remove

Re: Remove redundant HandleWalWriterInterrupts()

2024-01-24 Thread Bharath Rupireddy
On Wed, Jan 24, 2024 at 5:50 PM Fujii Masao wrote: > > Hi, > > Because of commit 1bdd54e662, the code of HandleWalWriterInterrupts() > became the same as HandleMainLoopInterrupts(). So I'd like to propose to > remove HandleWalWriterInterrupts() and make walwriter use > HandleMainLoopInterrupts()

Remove redundant HandleWalWriterInterrupts()

2024-01-24 Thread Fujii Masao
Hi, Because of commit 1bdd54e662, the code of HandleWalWriterInterrupts() became the same as HandleMainLoopInterrupts(). So I'd like to propose to remove HandleWalWriterInterrupts() and make walwriter use HandleMainLoopInterrupts() instead for improved code simplicity. Thought? Patch attached.