Various ecpg cleanup - Mailing list pgsql-patches

From ITAGAKI Takahiro
Subject Various ecpg cleanup
Date
Msg-id 20070928110003.FB84.ITAGAKI.TAKAHIRO@oss.ntt.co.jp
Whole thread Raw
Responses ecpg thead-safe memory management + cleanup  (ITAGAKI Takahiro <itagaki.takahiro@oss.ntt.co.jp>)
List pgsql-patches
Hi,
I'd cleaned up some codes in ecpg.

* Release all prepared statements on disconnection to avoid memory leaks
  even if users forget to DEALLOCATE their statements before disconnection.
* Remove memset(0) from ECPGalloc() because calloc() has already done it.
* Add const to some global variables.
* Make pthread_mutex_lock() for Win32 thread-safe. (It might be a paranoia...)
* Add more pthread emulation codes for Win32 to reduce #ifdef WIN32.

I'll try to fix thread-safe issues in memory management and
SQL DESCRIPTOR based on this change.

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center

Attachment

pgsql-patches by date:

Previous
From: "Hiroshi Saito"
Date:
Subject: Re: Warning is adjusted of pgbench.
Next
From: ITAGAKI Takahiro
Date:
Subject: ecpg thead-safe memory management + cleanup