| Index: runtime/bin/platform_android.cc
|
| diff --git a/runtime/bin/platform_android.cc b/runtime/bin/platform_android.cc
|
| index 445ea014dcc88ce9659335be2ef920d3dc02895b..dbf56d228882169e8d054b82b6ca322d07134936 100644
|
| --- a/runtime/bin/platform_android.cc
|
| +++ b/runtime/bin/platform_android.cc
|
| @@ -78,6 +78,12 @@ void Platform::PrintBlocking(FILE* file, const char* format, ...) {
|
| FDUtils::SetNonBlocking(fd);
|
| }
|
|
|
| +
|
| +void Platform::Cleanup() {
|
| + FDUtils::SetBlocking(fileno(stdout));
|
| + FDUtils::SetBlocking(fileno(stderr));
|
| +}
|
| +
|
| } // namespace bin
|
| } // namespace dart
|
|
|
|
|