| OLD | NEW |
| 1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "native_client/src/shared/ppapi_proxy/proxy_var.h" | 5 #include "native_client/src/shared/ppapi_proxy/proxy_var.h" |
| 6 | 6 |
| 7 #include "native_client/src/shared/platform/nacl_sync_checked.h" | 7 #include "native_client/src/shared/platform/nacl_sync_checked.h" |
| 8 #include "native_client/src/untrusted/pthread/pthread.h" | 8 #include "native_client/src/untrusted/pthread/pthread.h" |
| 9 | 9 |
| 10 #include <limits> | 10 #include <limits> |
| 11 | 11 |
| 12 namespace ppapi_proxy { | 12 namespace ppapi_proxy { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; | 16 pthread_mutex_t mu = PTHREAD_MUTEX_INITIALIZER; |
| 17 | 17 |
| 18 } // namespace | 18 } // namespace |
| 19 | 19 |
| 20 int64_t ProxyVar::unique_var_id = 0; | 20 int64_t ProxyVar::unique_var_id = 0; |
| 21 | 21 |
| 22 ProxyVar::ProxyVar(PP_VarType pp_var_type) : pp_var_type_(pp_var_type) { | 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. | 23 // Roll id of INT64_MAX to 1, because an id of 0 is not valid. |
| 24 nacl::ScopedPthreadMutexLock ml(&mu); | 24 nacl::ScopedPthreadMutexLock ml(&mu); |
| 25 if (unique_var_id > std::numeric_limits<int64_t>::max() - 1) | 25 if (unique_var_id > std::numeric_limits<int64_t>::max() - 1) |
| 26 unique_var_id = 0; | 26 unique_var_id = 0; |
| 27 id_ = ++unique_var_id; | 27 id_ = ++unique_var_id; |
| 28 } | 28 } |
| 29 | 29 |
| 30 } // namespace ppapi_proxy | 30 } // namespace ppapi_proxy |
| OLD | NEW |