Changeset 12564 in webkit for trunk/JavaScriptCore/kxmlcore/FastMalloc.cpp
- Timestamp:
- Feb 4, 2006, 5:43:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/FastMalloc.cpp
r11962 r12564 96 96 } 97 97 98 #if ndefWIN3298 #if !WIN32 99 99 void fastMallocRegisterThread(pthread_t thread) 100 100 { … … 106 106 #else 107 107 108 #include <new> 109 #include <stdio.h> 110 #include <stddef.h> 111 #if defined HAVE_STDINT_H 108 #if HAVE_STDINT_H 112 109 #include <stdint.h> 113 #elif definedHAVE_INTTYPES_H110 #elif HAVE_INTTYPES_H 114 111 #include <inttypes.h> 115 112 #else 116 113 #include <sys/types.h> 117 114 #endif 115 116 #include "AlwaysInline.h" 117 #include "Assertions.h" 118 #include "TCPageMap.h" 119 #include "TCSpinLock.h" 120 #include "TCSystemAlloc.h" 121 #include <errno.h> 122 #include <new> 123 #include <pthread.h> 124 #include <stdarg.h> 125 #include <stddef.h> 126 #include <stdio.h> 118 127 #include <string.h> 119 #include <pthread.h>120 128 #include <unistd.h> 121 #include <errno.h>122 #include <stdarg.h>123 #include "TCSpinLock.h"124 #include "TCPageMap.h"125 #include "TCSystemAlloc.h"126 127 #include "Assertions.h"128 129 #ifdef __GNUC__130 #define ALWAYS_INLINE inline __attribute__((always_inline))131 #else132 #define ALWAYS_INLINE inline133 #endif134 129 135 130 #if KXC_CHANGES
Note:
See TracChangeset
for help on using the changeset viewer.