Changeset 47050 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Aug 11, 2009, 12:51:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r47022 r47050 60 60 #include <windows.h> 61 61 62 #elif PLATFORM(HAIKU) 63 64 #include <OS.h> 65 62 66 #elif PLATFORM(UNIX) 63 67 64 68 #include <stdlib.h> 69 #if !PLATFORM(HAIKU) 65 70 #include <sys/mman.h> 71 #endif 66 72 #include <unistd.h> 67 73 … … 530 536 } 531 537 return (void*)stackBase; 538 #elif PLATFORM(HAIKU) 539 thread_info threadInfo; 540 get_thread_info(find_thread(NULL), &threadInfo); 541 return threadInfo.stack_end; 532 542 #elif PLATFORM(UNIX) 533 543 static void* stackBase = 0;
Note:
See TracChangeset
for help on using the changeset viewer.