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

Unified Diff: src/trusted/service_runtime/nacl_text.c

Issue 6937003: modified nacl_sync.h to have NACL_WUR for all functions that return a (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 8 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
« no previous file with comments | « src/trusted/service_runtime/nacl_syscall_common.c ('k') | src/trusted/service_runtime/osx/nacl_ldt.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/nacl_text.c
===================================================================
--- src/trusted/service_runtime/nacl_text.c (revision 5177)
+++ src/trusted/service_runtime/nacl_text.c (working copy)
@@ -1,7 +1,7 @@
/*
- * Copyright 2009 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can
- * be found in the LICENSE file.
+ * Copyright (c) 2011 The Native Client Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
*/
#include <string.h>
@@ -10,6 +10,8 @@
#include "native_client/src/include/portability.h"
#include "native_client/src/shared/platform/nacl_check.h"
#include "native_client/src/shared/platform/nacl_log.h"
+#include "native_client/src/shared/platform/nacl_sync.h"
+#include "native_client/src/shared/platform/nacl_sync_checked.h"
#include "native_client/src/trusted/desc/nacl_desc_base.h"
#include "native_client/src/trusted/desc/nacl_desc_effector.h"
#include "native_client/src/trusted/desc/nacl_desc_effector.h"
@@ -384,25 +386,25 @@
* since threads only set their own generation it is safe
*/
if (natp->dynamic_delete_generation != generation) {
- NaClMutexLock(&natp->mu);
+ NaClXMutexLock(&natp->mu);
CHECK(natp->dynamic_delete_generation <= generation);
natp->dynamic_delete_generation = generation;
- NaClMutexUnlock(&natp->mu);
+ NaClXMutexUnlock(&natp->mu);
}
}
int NaClMinimumThreadGeneration(struct NaClApp *nap) {
int i, rv = 0;
- NaClMutexLock(&nap->threads_mu);
+ NaClXMutexLock(&nap->threads_mu);
for (i = 0; i < nap->num_threads; ++i) {
struct NaClAppThread *thread = NaClGetThreadMu(nap, i);
- NaClMutexLock(&thread->mu);
+ NaClXMutexLock(&thread->mu);
if (i == 0 || rv > thread->dynamic_delete_generation) {
rv = thread->dynamic_delete_generation;
}
- NaClMutexUnlock(&thread->mu);
+ NaClXMutexUnlock(&thread->mu);
}
- NaClMutexUnlock(&nap->threads_mu);
+ NaClXMutexUnlock(&nap->threads_mu);
return rv;
}
@@ -677,7 +679,7 @@
return 0;
}
- NaClMutexLock(&nap->dynamic_load_mutex);
+ NaClXMutexLock(&nap->dynamic_load_mutex);
if (NaClDynamicRegionCreate(nap, dest_addr, size) == 1) {
/* target memory region is free */
@@ -714,7 +716,7 @@
NaclTextMapClearCacheIfNeeded(nap, dest, size);
cleanup_unlock:
- NaClMutexUnlock(&nap->dynamic_load_mutex);
+ NaClXMutexUnlock(&nap->dynamic_load_mutex);
return retval;
}
@@ -784,7 +786,7 @@
return -NACL_ABI_EFAULT;
}
- NaClMutexLock(&nap->dynamic_load_mutex);
+ NaClXMutexLock(&nap->dynamic_load_mutex);
region = NaClDynamicRegionFind(nap, dest_addr, size);
if (NULL == region || region->start > dest_addr
@@ -864,7 +866,7 @@
NaclTextMapClearCacheIfNeeded(nap, dest, size);
cleanup_unlock:
- NaClMutexUnlock(&nap->dynamic_load_mutex);
+ NaClXMutexUnlock(&nap->dynamic_load_mutex);
if (code_copy != code_copy_buf) {
free(code_copy);
@@ -897,15 +899,15 @@
/* Nothing to delete. Just update our generation. */
int gen;
/* fetch current generation */
- NaClMutexLock(&nap->dynamic_load_mutex);
+ NaClXMutexLock(&nap->dynamic_load_mutex);
gen = nap->dynamic_delete_generation;
- NaClMutexUnlock(&nap->dynamic_load_mutex);
+ NaClXMutexUnlock(&nap->dynamic_load_mutex);
/* set our generation */
NaClSetThreadGeneration(natp, gen);
return 0;
}
- NaClMutexLock(&nap->dynamic_load_mutex);
+ NaClXMutexLock(&nap->dynamic_load_mutex);
/*
* this check ensures the to-be-deleted region is identical to a
@@ -964,6 +966,6 @@
}
cleanup_unlock:
- NaClMutexUnlock(&nap->dynamic_load_mutex);
+ NaClXMutexUnlock(&nap->dynamic_load_mutex);
return retval;
}
« no previous file with comments | « src/trusted/service_runtime/nacl_syscall_common.c ('k') | src/trusted/service_runtime/osx/nacl_ldt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698