aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/include/ecpglib.h
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2006-08-02 13:43:23 +0000
committerMichael Meskes <meskes@postgresql.org>2006-08-02 13:43:23 +0000
commit1fa6be6f69dc7723f67c24480c06663fba585d15 (patch)
tree112f98b09f4b43f12b3a9074b689d324a8c09f3d /src/interfaces/ecpg/include/ecpglib.h
parent97eefd699654cee4b5bb043ddd3c1936eb5cf48d (diff)
downloadpostgresql-1fa6be6f69dc7723f67c24480c06663fba585d15.tar.gz
postgresql-1fa6be6f69dc7723f67c24480c06663fba585d15.zip
ynced parser and keyword list.
Implemented EXEC SQL UNDEF. Applied first version of the regression test patch by Joachim Wieland <joe@mcknight.de>.
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r--src/interfaces/ecpg/include/ecpglib.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h
index 8998f400792..a60b4f0dee1 100644
--- a/src/interfaces/ecpg/include/ecpglib.h
+++ b/src/interfaces/ecpg/include/ecpglib.h
@@ -1,7 +1,7 @@
/*
* this is a small part of c.h since we don't want to leak all postgres
* definitions into ecpg programs
- * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.67 2006/07/11 13:54:25 momjian Exp $
+ * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.68 2006/08/02 13:43:23 meskes Exp $
*/
#ifndef _ECPGLIB_H
@@ -85,6 +85,10 @@ bool ECPGdescribe(int, bool, const char *,...);
/* dynamic result allocation */
void ECPGfree_auto_mem(void);
+#ifdef ENABLE_THREAD_SAFETY
+void ecpg_pthreads_init();
+#endif
+
#ifdef __cplusplus
}
#endif