summaryrefslogtreecommitdiff
path: root/odb/details/win32/init.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-24 16:53:38 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 16:53:38 +0300
commit26e36b3a9d7b49d46ecfa69b447482251acba8ac (patch)
tree5436b7857fae9aee50d018ea0eef35a529fc03e4 /odb/details/win32/init.cxx
parent0074faad1b27f3cd52a606c438e4f1375956d731 (diff)
Turn libodb repository into package for muti-package repositorylibodb
Diffstat (limited to 'odb/details/win32/init.cxx')
-rw-r--r--odb/details/win32/init.cxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/odb/details/win32/init.cxx b/odb/details/win32/init.cxx
deleted file mode 100644
index f6e0f9a..0000000
--- a/odb/details/win32/init.cxx
+++ /dev/null
@@ -1,41 +0,0 @@
-// file : odb/details/win32/init.cxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#include <odb/details/win32/init.hxx>
-#include <odb/details/win32/once-init.hxx>
-#include <odb/details/win32/tls-init.hxx>
-
-namespace odb
-{
- namespace details
- {
- void
- process_start ()
- {
- // The order is important.
- //
- once_process_start ();
- tls_process_start ();
- }
-
- void
- process_end (bool safe)
- {
- // The order is important.
- //
- tls_process_end (safe);
- once_process_end (safe);
- }
-
- void
- thread_start ()
- {
- }
-
- void
- thread_end ()
- {
- tls_thread_end ();
- }
- }
-}