aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/init.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/win32/init.hxx')
-rw-r--r--odb/details/win32/init.hxx38
1 files changed, 38 insertions, 0 deletions
diff --git a/odb/details/win32/init.hxx b/odb/details/win32/init.hxx
new file mode 100644
index 0000000..4a49129
--- /dev/null
+++ b/odb/details/win32/init.hxx
@@ -0,0 +1,38 @@
+// file : odb/details/win32/init.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_DETAILS_WIN32_INIT_HXX
+#define ODB_DETAILS_WIN32_INIT_HXX
+
+#include <odb/pre.hxx>
+
+namespace odb
+{
+ namespace details
+ {
+ void
+ process_start ();
+
+ // The safe parameter indicates whether it is safe to free heap objects.
+ // If the process is terminated by a call to ExitProcess(), some threads
+ // might have been killed leaving things in inconsistent state.
+ //
+ void
+ process_end (bool safe = true);
+
+ void
+ thread_start ();
+
+ // This function may be called even for thread for which thread_start()
+ // hasn't been called.
+ //
+ void
+ thread_end ();
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_DETAILS_WIN32_INIT_HXX