postgresql/src/backend/utils/mb
Tom Lane 1aebc3618a First phase of memory management rewrite (see backend/utils/mmgr/README
for details).  It doesn't really do that much yet, since there are no
short-term memory contexts in the executor, but the infrastructure is
in place and long-term contexts are handled reasonably.  A few long-
standing bugs have been fixed, such as 'VACUUM; anything' in a single
query string crashing.  Also, out-of-memory is now considered a
recoverable ERROR, not FATAL.
Eliminate a large amount of crufty, now-dead code in and around
memory management.
Fix problem with holding off SIGTRAP, SIGSEGV, etc in postmaster and
backend startup.
2000-06-28 03:33:33 +00:00
..
Makefile Generated header files parse.h and fmgroids.h are now copied into 2000-05-29 05:45:56 +00:00
README Add UDC (User Defined Characters) support to SJIS/EUC_JP conversion 2000-01-13 01:08:14 +00:00
alt.c pgindent run over code. 1999-05-25 16:15:34 +00:00
big5.c Add fix for 0x7fU constants to pgindent 1999-05-26 15:20:04 +00:00
common.c Another batch of fmgr updates. I think I have gotten all old-style 2000-06-13 07:35:40 +00:00
conv.c First phase of memory management rewrite (see backend/utils/mmgr/README 2000-06-28 03:33:33 +00:00
iso.c pgindent run over code. 1999-05-25 16:15:34 +00:00
mbutils.c Another batch of fmgr updates. I think I have gotten all old-style 2000-06-13 07:35:40 +00:00
utftest.c Change #include's to use <> and "" as appropriate. 1999-07-15 23:04:24 +00:00
variable.c Clean up const-vs-not-const compiler warning in MULTIBYTE code. 2000-04-20 22:40:18 +00:00
wchar.c Ye-old pgindent run. Same 4-space tabs. 2000-04-12 17:17:23 +00:00
win.c pgindent run over code. 1999-05-25 16:15:34 +00:00
wstrcmp.c Change #include's to use <> and "" as appropriate. 1999-07-15 23:04:24 +00:00
wstrncmp.c Change #include's to use <> and "" as appropriate. 1999-07-15 23:04:24 +00:00

README

common.c:	public functions for both the backend and the frontend.
		requires conv.c and wchar.c
conv.c:		static functions and a public table for code conversion
wchar.c:	mostly static functions and a public table for mb string and
		multi-byte conversion
mbutilc.c:	public functions for the backend only.
		requires conv.c and wchar.c
wstrcmp.c:	strcmp for mb
wstrncmp.c:	strncmp for mb
varable.c:	public functions for show/set/reset variable commands
alt.c:		a tool to generate KOI8 <--> CP866 conversion table
iso.c:		a tool to generate KOI8 <--> ISO8859-5 conversion table
win.c:		a tool to generate KOI8 <--> CP1251 conversion table
big5.c:		conversion between BIG5 and Mule Internal Code(CNS 116643-1992
		plane 1 and plane 2).
utftest.c:	test driver for utf2wchar()