3786c5e5ee
Fix an issue where DDS would fail to initialize when an isolate in the target process was unable to handle service requests (e.g., when executing FFI code or blocked on a system call). Fixes b/323386606 Change-Id: I659ebaf750e2c800e9819809d1104e024cb059da Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/354681 Reviewed-by: Derek Xu <derekx@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
11 lines
303 B
Dart
11 lines
303 B
Dart
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:io';
|
|
|
|
void main() {
|
|
print('started');
|
|
sleep(Duration(minutes: 5));
|
|
}
|