From 4014067a1668d94000b059d72832482a06cf8369 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 6 Jan 2007 19:39:56 +0000 Subject: Added ability to get Raul Thread for current calling context. Strong threading assertions. Flowcanvas port removal fixes. Patch port destruction. Code cleanups, bug fixes. git-svn-id: http://svn.drobilla.net/lad/raul@234 a436a847-0d15-0410-975c-d299462d15a1 --- tests/thread_test.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/thread_test.cpp (limited to 'tests/thread_test.cpp') diff --git a/tests/thread_test.cpp b/tests/thread_test.cpp new file mode 100644 index 0000000..7a4d875 --- /dev/null +++ b/tests/thread_test.cpp @@ -0,0 +1,16 @@ +#include +#include + +using namespace std; + +int +main() +{ + Thread& this_thread = Thread::get(); + this_thread.set_name("Main"); + + cerr << "Thread name: " << Thread::get().name() << endl; + + return 0; +} + -- cgit v1.2.1