aboutsummaryrefslogtreecommitdiff
path: root/odb/details/posix
AgeCommit message (Collapse)AuthorFilesLines
2016-08-05Initial take on build2-based buildBoris Kolpackov2-2/+4
Only C++11 is supported with GCC 4.8 and up and VC 14 and up. This change also introduces the ODB_THREADS_CXX11 threading model. It is the default for the build2 build but can be disabled with a global ODB_THREADS_NONE define (global means that it should be in effect both when building and using the library).
2016-06-15Get rid of C++11 deprecation warnings for auto_ptr, exception specsBoris Kolpackov2-2/+3
In particular, std::auto_ptr is no longer mapped in C++11.
2015-02-06Update copyrightBoris Kolpackov12-12/+12
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov2-0/+9
2013-02-09Update copyright yearBoris Kolpackov12-12/+12
2012-04-26Replace remaining std::auto_ptr uses with odb::details::unique_ptrBoris Kolpackov2-6/+4
GCC in C++11 mode issues a deprecation warning for std::auto_ptr.
2012-01-29Update copyright yearBoris Kolpackov12-12/+12
2012-01-29Remove author field from file headerBoris Kolpackov12-12/+0
Too much effort to maintain.
2011-01-04Copyright updateBoris Kolpackov12-12/+12
2010-11-22Allow implicit conversion of TLS pointersBoris Kolpackov1-2/+3
2010-09-28Get rid of compiler warningsBoris Kolpackov1-3/+3
2010-09-10Add support for early destruction of TLS objectBoris Kolpackov2-3/+29
2010-09-03Implement Win32 TLS supportBoris Kolpackov1-3/+0
2010-08-26Add support for creating other build systems (meta-building)Boris Kolpackov5-10/+36
Add support for automake, VC++ 9, and VC++ 10. Also add the Win32 and 'NULL' threading model implementations.
2010-08-18Add multi-threading primitivesBoris Kolpackov12-0/+554
Currently only the pthread-based implementation is present.