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

Unified Diff: src/shared/platform/nacl_sync_checked.h

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/shared/platform/nacl_sync.h ('k') | src/shared/platform/nacl_sync_checked.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/platform/nacl_sync_checked.h
===================================================================
--- src/shared/platform/nacl_sync_checked.h (revision 5177)
+++ src/shared/platform/nacl_sync_checked.h (working copy)
@@ -1,7 +1,7 @@
/*
- * Copyright 2008 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.
*/
/*
@@ -25,10 +25,12 @@
* abort on any unexpected return value.
*/
+void NaClXMutexCtor(struct NaClMutex *mp);
void NaClXMutexLock(struct NaClMutex *mp);
NaClSyncStatus NaClXMutexTryLock(struct NaClMutex *mp);
void NaClXMutexUnlock(struct NaClMutex *mp);
+void NaClXCondVarCtor(struct NaClCondVar *cvp);
void NaClXCondVarSignal(struct NaClCondVar *cvp);
void NaClXCondVarBroadcast(struct NaClCondVar *cvp);
void NaClXCondVarWait(struct NaClCondVar *cvp,
« no previous file with comments | « src/shared/platform/nacl_sync.h ('k') | src/shared/platform/nacl_sync_checked.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698