summaryrefslogtreecommitdiffstats
path: root/ppapi/native_client/src/trusted/plugin/service_runtime.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/native_client/src/trusted/plugin/service_runtime.cc')
-rw-r--r--ppapi/native_client/src/trusted/plugin/service_runtime.cc9
1 files changed, 2 insertions, 7 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
index d570f4c..ffce563 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
@@ -238,7 +238,8 @@ void PluginReverseInterface::ReportCrash() {
}
void PluginReverseInterface::ReportExitStatus(int exit_status) {
- service_runtime_->set_exit_status(exit_status);
+ // We do nothing here; reporting exit status is handled through a separate
+ // embedder interface.
}
int64_t PluginReverseInterface::RequestQuotaForWrite(
@@ -582,10 +583,4 @@ ServiceRuntime::~ServiceRuntime() {
NaClMutexDtor(&mu_);
}
-void ServiceRuntime::set_exit_status(int exit_status) {
- nacl::MutexLocker take(&mu_);
- if (main_service_runtime_)
- plugin_->set_exit_status(exit_status & 0xff);
-}
-
} // namespace plugin