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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/proxy_var.cc

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "native_client/src/shared/ppapi_proxy/proxy_var.h"
6
7 #include "native_client/src/shared/platform/nacl_sync_checked.h"
8 #include "native_client/src/untrusted/pthread/pthread.h"
9
10 #include <limits>
11
12 namespace ppapi_proxy {
13
14 namespace {
15
16 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER;
17
18 } // namespace
19
20 int64_t ProxyVar::unique_var_id = 0;
21
22 ProxyVar::ProxyVar(PP_VarType pp_var_type) : pp_var_type_(pp_var_type) {
23 // Roll id of INT64_MAX to 1, because an id of 0 is not valid.
24 nacl::ScopedPthreadMutexLock ml(&mu);
25 if (unique_var_id > std::numeric_limits<int64_t>::max() - 1)
26 unique_var_id = 0;
27 id_ = ++unique_var_id;
28 }
29
30 } // namespace ppapi_proxy
OLDNEW
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/proxy_var.h ('k') | ppapi/native_client/src/shared/ppapi_proxy/proxy_var_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698