Changeset 32807 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.h
- Timestamp:
- May 2, 2008, 3:07:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.h
r32652 r32807 167 167 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue* value, unsigned attributes); 168 168 169 // Linked list of all global objects.170 static JSGlobalObject* head() { return s_head; }169 // Per-thread linked list of all global objects. 170 static JSGlobalObject*& head(); 171 171 JSGlobalObject* next() { return d()->next; } 172 172 … … 256 256 static ThreadClassInfoHashTables* threadClassInfoHashTables(); 257 257 258 void* operator new(size_t); 259 258 260 private: 259 261 void init(JSObject* thisValue); … … 266 268 void deleteActivationStack(); 267 269 void checkActivationCount(); 268 269 static JSGlobalObject* s_head;270 270 }; 271 271
Note:
See TracChangeset
for help on using the changeset viewer.