diff options
author | 2009-08-25 14:49:07 -0700 | |
---|---|---|
committer | 2009-08-25 14:49:07 -0700 | |
commit | f5b4596a383b6ab83f92edecfe054e80b555c2d0 (patch) | |
tree | 76f91ae57eadbd3944c6368c9ff571534097ce54 /libs/rs/rsThreadIO.cpp | |
parent | c69a8807f3aae255c9fe61c4f61bc1ebdd355543 (diff) |
Implement java interface for RS shutdown and fix shutdown deadlock with the command fifo.
Diffstat (limited to 'libs/rs/rsThreadIO.cpp')
-rw-r--r-- | libs/rs/rsThreadIO.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/rs/rsThreadIO.cpp b/libs/rs/rsThreadIO.cpp index 4a1dbbb9f004..db4bb8144c79 100644 --- a/libs/rs/rsThreadIO.cpp +++ b/libs/rs/rsThreadIO.cpp @@ -30,6 +30,11 @@ ThreadIO::~ThreadIO() { } +void ThreadIO::shutdown() +{ + mToCore.shutdown(); +} + bool ThreadIO::playCoreCommands(Context *con, bool waitForCommand) { bool ret = false; |