OLD | NEW |
(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 |
OLD | NEW |