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

Side by Side Diff: src/platform/mutex.h

Issue 23494047: Deuglify V8_INLINE and V8_NOINLINE. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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
« no previous file with comments | « src/platform/elapsed-timer.h ('k') | src/platform/mutex.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const NativeHandle& native_handle() const { 87 const NativeHandle& native_handle() const {
88 return native_handle_; 88 return native_handle_;
89 } 89 }
90 90
91 private: 91 private:
92 NativeHandle native_handle_; 92 NativeHandle native_handle_;
93 #ifdef DEBUG 93 #ifdef DEBUG
94 int level_; 94 int level_;
95 #endif 95 #endif
96 96
97 V8_INLINE(void AssertHeldAndUnmark()) { 97 V8_INLINE void AssertHeldAndUnmark() {
98 #ifdef DEBUG 98 #ifdef DEBUG
99 ASSERT_EQ(1, level_); 99 ASSERT_EQ(1, level_);
100 level_--; 100 level_--;
101 #endif 101 #endif
102 } 102 }
103 103
104 V8_INLINE(void AssertUnheldAndMark()) { 104 V8_INLINE void AssertUnheldAndMark() {
105 #ifdef DEBUG 105 #ifdef DEBUG
106 ASSERT_EQ(0, level_); 106 ASSERT_EQ(0, level_);
107 level_++; 107 level_++;
108 #endif 108 #endif
109 } 109 }
110 110
111 friend class ConditionVariable; 111 friend class ConditionVariable;
112 112
113 DISALLOW_COPY_AND_ASSIGN(Mutex); 113 DISALLOW_COPY_AND_ASSIGN(Mutex);
114 }; 114 };
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 229
230 private: 230 private:
231 Mutex* mutex_; 231 Mutex* mutex_;
232 232
233 DISALLOW_COPY_AND_ASSIGN(LockGuard); 233 DISALLOW_COPY_AND_ASSIGN(LockGuard);
234 }; 234 };
235 235
236 } } // namespace v8::internal 236 } } // namespace v8::internal
237 237
238 #endif // V8_PLATFORM_MUTEX_H_ 238 #endif // V8_PLATFORM_MUTEX_H_
OLDNEW
« no previous file with comments | « src/platform/elapsed-timer.h ('k') | src/platform/mutex.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698