aboutsummaryrefslogtreecommitdiff
path: root/odb/details/win32/init.hxx
blob: b9752b3aae7064eebd6beb557941c603d831aac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// file      : odb/details/win32/init.hxx
// copyright : Copyright (c) 2009-2012 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