From 34036c865804d46f80007e22dc952b1ebce8c7bc Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Thu, 23 Nov 2006 05:43:32 +0000 Subject: [PATCH] More minor SGML improvements for xfunc.sgml, including making some titles more concise. (We usually don't need to repeat the name of a section in the title of one of its subsections.) --- doc/src/sgml/xfunc.sgml | 46 ++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index 947dd5f1e5..75699eb79b 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -1,4 +1,4 @@ - + User-Defined Functions @@ -1587,7 +1587,7 @@ memcpy(destination->data, buffer, 40); - Calling Conventions Version 0 for C-Language Functions + Version 0 Calling Conventions We present the old style calling convention first — although @@ -1651,7 +1651,7 @@ copytext(text *t) */ memcpy((void *) VARDATA(new_t), /* destination */ (void *) VARDATA(t), /* source */ - VARSIZE(t)-VARHDRSZ); /* how many bytes */ + VARSIZE(t) - VARHDRSZ); /* how many bytes */ return new_t; } @@ -1662,9 +1662,9 @@ concat_text(text *arg1, text *arg2) text *new_text = (text *) palloc(new_text_size); VARATT_SIZEP(new_text) = new_text_size; - memcpy(VARDATA(new_text), VARDATA(arg1), VARSIZE(arg1)-VARHDRSZ); - memcpy(VARDATA(new_text) + (VARSIZE(arg1)-VARHDRSZ), - VARDATA(arg2), VARSIZE(arg2)-VARHDRSZ); + memcpy(VARDATA(new_text), VARDATA(arg1), VARSIZE(arg1) - VARHDRSZ); + memcpy(VARDATA(new_text) + (VARSIZE(arg1) - VARHDRSZ), + VARDATA(arg2), VARSIZE(arg2) - VARHDRSZ); return new_text; } @@ -1735,7 +1735,7 @@ CREATE FUNCTION concat_text(text, text) RETURNS text - Calling Conventions Version 1 for C-Language Functions + Version 1 Calling Conventions The version-1 calling convention relies on macros to suppress most @@ -1837,7 +1837,7 @@ copytext(PG_FUNCTION_ARGS) */ memcpy((void *) VARDATA(new_t), /* destination */ (void *) VARDATA(t), /* source */ - VARSIZE(t)-VARHDRSZ); /* how many bytes */ + VARSIZE(t) - VARHDRSZ); /* how many bytes */ PG_RETURN_TEXT_P(new_t); } @@ -1852,9 +1852,9 @@ concat_text(PG_FUNCTION_ARGS) text *new_text = (text *) palloc(new_text_size); VARATT_SIZEP(new_text) = new_text_size; - memcpy(VARDATA(new_text), VARDATA(arg1), VARSIZE(arg1)-VARHDRSZ); - memcpy(VARDATA(new_text) + (VARSIZE(arg1)-VARHDRSZ), - VARDATA(arg2), VARSIZE(arg2)-VARHDRSZ); + memcpy(VARDATA(new_text), VARDATA(arg1), VARSIZE(arg1) - VARHDRSZ); + memcpy(VARDATA(new_text) + (VARSIZE(arg1) - VARHDRSZ), + VARDATA(arg2), VARSIZE(arg2) - VARHDRSZ); PG_RETURN_TEXT_P(new_text); } @@ -2261,7 +2261,7 @@ include $(PGXS) - Composite-Type Arguments in C-Language Functions + Composite-Type Arguments Composite types do not have a fixed layout like C structures. @@ -2366,7 +2366,7 @@ CREATE FUNCTION c_overpaid(emp, integer) RETURNS boolean - Returning Rows (Composite Types) from C-Language Functions + Returning Rows (Composite Types) To return a row or composite-type value from a C-language @@ -2517,7 +2517,7 @@ HeapTupleGetDatum(HeapTuple tuple) - Returning Sets from C-Language Functions + Returning Sets There is also a special API that provides support for returning @@ -2910,30 +2910,30 @@ CREATE FUNCTION make_array(anyelement) RETURNS anyarray - Shared Memory and LWLocks in C-Language Functions + Shared Memory and LWLocks Add-ins may reserve LWLocks and an allocation of shared memory on server - startup. The add-in's shared library must be preloaded, by specifying + startup. The add-in's shared library must be preloaded by specifying it in - shared-preload-libraries, - and the shared memory must be reserved by calling: + shared-preload-libraries. + Shared memory is reserved by calling: void RequestAddinShmemSpace(int size) from your _PG_init function. - LWLocks are reserved by calling: + LWLocks are reserved by calling: void RequestAddinLWLocks(int n) - from _PG_init. + from _PG_init. - To avoid possible race-conditions, each backend should use the LWLock - AddinShmemInitLock when connecting to and initializing - its allocation of shared memory, as shown here: + To avoid possible race-conditions, each backend should use the LWLock + AddinShmemInitLock when connecting to and initializing + its allocation of shared memory, as shown here: static mystruct *ptr = NULL;