Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc

Issue 18644009: [NaCl SDK] Upate atomic ops in nacl_io (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc
diff --git a/native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc b/native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc
index edac8f4c05d98bd47a1c63006c9a8abd9cf49eb7..30e2f28932f988304e9f5686508ba4b6e421781b 100644
--- a/native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc
+++ b/native_client_sdk/src/libraries/nacl_io/mount_html5fs.cc
@@ -171,7 +171,7 @@ void MountHtml5Fs::Destroy() {
Error MountHtml5Fs::BlockUntilFilesystemOpen() {
AutoLock lock(&lock_);
while (!filesystem_open_has_result_) {
- pthread_cond_wait(&filesystem_open_cond_, &lock_);
+ pthread_cond_wait(&filesystem_open_cond_, lock_);
}
return filesystem_open_error_;
}

Powered by Google App Engine
This is Rietveld 408576698