Commit d5ca4a8b authored by Davis King's avatar Davis King

Changed the thread_pool so it uses auto_mutex::unlock() in the appropriate places

instead of mutex::unlock().
parent d6c20069
...@@ -275,7 +275,7 @@ namespace dlib ...@@ -275,7 +275,7 @@ namespace dlib
// aren't any other worker threads free so just perform the task right // aren't any other worker threads free so just perform the task right
// here // here
m.unlock(); M.unlock();
bfp(); bfp();
// return a task id that is both non-zero and also one // return a task id that is both non-zero and also one
......
...@@ -182,7 +182,7 @@ namespace dlib ...@@ -182,7 +182,7 @@ namespace dlib
// aren't any other worker threads free so just perform the task right // aren't any other worker threads free so just perform the task right
// here // here
m.unlock(); M.unlock();
(obj.*funct)(); (obj.*funct)();
// return a task id that is both non-zero and also one // return a task id that is both non-zero and also one
...@@ -225,7 +225,7 @@ namespace dlib ...@@ -225,7 +225,7 @@ namespace dlib
// aren't any other worker threads free so just perform the task right // aren't any other worker threads free so just perform the task right
// here // here
m.unlock(); M.unlock();
(obj.*funct)(arg1); (obj.*funct)(arg1);
// return a task id that is both non-zero and also one // return a task id that is both non-zero and also one
...@@ -270,7 +270,7 @@ namespace dlib ...@@ -270,7 +270,7 @@ namespace dlib
// aren't any other worker threads free so just perform the task right // aren't any other worker threads free so just perform the task right
// here // here
m.unlock(); M.unlock();
(obj.*funct)(arg1, arg2); (obj.*funct)(arg1, arg2);
// return a task id that is both non-zero and also one // return a task id that is both non-zero and also one
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment