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

Side by Side Diff: src/v8globals.h

Issue 23625003: Cleanup Mutex and related classes. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE 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/v8.cc ('k') | src/v8threads.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 class SplayTree; 156 class SplayTree;
157 class String; 157 class String;
158 class Name; 158 class Name;
159 class Struct; 159 class Struct;
160 class Variable; 160 class Variable;
161 class RelocInfo; 161 class RelocInfo;
162 class Deserializer; 162 class Deserializer;
163 class MessageLocation; 163 class MessageLocation;
164 class VirtualMemory; 164 class VirtualMemory;
165 class Mutex; 165 class Mutex;
166 class RecursiveMutex;
166 167
167 typedef bool (*WeakSlotCallback)(Object** pointer); 168 typedef bool (*WeakSlotCallback)(Object** pointer);
168 169
169 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer); 170 typedef bool (*WeakSlotCallbackWithHeap)(Heap* heap, Object** pointer);
170 171
171 // ----------------------------------------------------------------------------- 172 // -----------------------------------------------------------------------------
172 // Miscellaneous 173 // Miscellaneous
173 174
174 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being 175 // NOTE: SpaceIterator depends on AllocationSpace enumeration values being
175 // consecutive. 176 // consecutive.
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 560
560 enum ClearExceptionFlag { 561 enum ClearExceptionFlag {
561 KEEP_EXCEPTION, 562 KEEP_EXCEPTION,
562 CLEAR_EXCEPTION 563 CLEAR_EXCEPTION
563 }; 564 };
564 565
565 566
566 } } // namespace v8::internal 567 } } // namespace v8::internal
567 568
568 #endif // V8_V8GLOBALS_H_ 569 #endif // V8_V8GLOBALS_H_
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | src/v8threads.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698