Threaded execution support interface added. Optional built-in threading implementatio...
commit30fbb3d83048d558d95670c06b1568092534275e
authorOleh Derevenko <oleh.derevenko@gmail.com>
Sat, 17 Mar 2012 00:14:15 +0000 (17 00:14 +0000)
committerOleh Derevenko <oleh.derevenko@gmail.com>
Sat, 17 Mar 2012 00:14:15 +0000 (17 00:14 +0000)
treec24c57cfc88775d150aa3eff62e170a69762b7bc
parent4ed15c6608a708898f4e8005cbf59791fbc7bf3a
Threaded execution support interface added. Optional built-in threading implementation added.
31 files changed:
CHANGELOG.txt
build/config-default.h
build/premake4.lua
configure.in
include/ode/Makefile.am
include/ode/objects.h
include/ode/ode.h
include/ode/threading.h [new file with mode: 0644]
include/ode/threading_impl.h [new file with mode: 0644]
ode/demo/demo_boxstack.cpp
ode/demo/demo_heightfield.cpp
ode/demo/demo_moving_trimesh.cpp
ode/demo/demo_trimesh.cpp
ode/src/Makefile.am
ode/src/objects.cpp
ode/src/objects.h
ode/src/ode.cpp
ode/src/odeinit.cpp
ode/src/threading_atomics_provs.h [new file with mode: 0644]
ode/src/threading_base.cpp [new file with mode: 0644]
ode/src/threading_base.h [new file with mode: 0644]
ode/src/threading_fake_sync.h [new file with mode: 0644]
ode/src/threading_impl.cpp [new file with mode: 0644]
ode/src/threading_impl.h [copied from include/ode/ode.h with 50% similarity]
ode/src/threading_impl_posix.h [new file with mode: 0644]
ode/src/threading_impl_templates.h [new file with mode: 0644]
ode/src/threading_impl_win.h [new file with mode: 0644]
ode/src/threading_pool_posix.cpp [new file with mode: 0644]
ode/src/threading_pool_win.cpp [new file with mode: 0644]
ode/src/util.cpp
ode/src/util.h