Skip to content

Commit

Permalink
Version 3.5.0-124.0.dev
Browse files Browse the repository at this point in the history
Merge ed5aeab into dev
  • Loading branch information
Dart CI committed May 2, 2024
2 parents c34adf6 + ed5aeab commit faabc0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion runtime/bin/ffi_test/ffi_test_functions_vmspecific.cc
Original file line number Diff line number Diff line change
Expand Up @@ -480,9 +480,10 @@ intptr_t MyCallbackBlocking(intptr_t a) {
auto callback = my_callback_blocking_fp_; // Define storage duration.
std::condition_variable cv;
bool notified = false;
const Work work = [a, &result, callback, &cv, &notified]() {
const Work work = [a, &result, callback, &mutex, &cv, &notified]() {
result = callback(a);
printf("C Da: Notify result ready.\n");
std::unique_lock<std::mutex> lock(mutex);
notified = true;
cv.notify_one();
};
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 5
PATCH 0
PRERELEASE 123
PRERELEASE 124
PRERELEASE_PATCH 0

0 comments on commit faabc0c

Please sign in to comment.