Changeset 38175 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Nov 6, 2008, 9:48:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r38137 r38175 447 447 } 448 448 return static_cast<char*>(stackBase) + stackSize; 449 #elif PLATFORM(SYMBIAN) 450 static void* stackBase = 0; 451 if (stackBase == 0) { 452 TThreadStackInfo info; 453 RThread thread; 454 thread.StackInfo(info); 455 stackBase = (void*)info.iBase; 456 } 457 //fixme 458 return (void*)stackBase; 449 459 #else 450 460 #error Need a way to get the stack base on this platform
Note:
See TracChangeset
for help on using the changeset viewer.