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

Side by Side Diff: third_party/tcmalloc/chromium/src/windows/config.h

Issue 1076002: Revert 41938 - Merged third_party/tcmalloc/vendor/src(googleperftools r87) in... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 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
OLDNEW
1 /* A manual version of config.h fit for windows machines. */ 1 /* A manual version of config.h fit for windows machines. */
2 2
3 /* Sometimes we accidentally #include this config.h instead of the one 3 /* Sometimes we accidentally #include this config.h instead of the one
4 in .. -- this is particularly true for msys/mingw, which uses the 4 in .. -- this is particularly true for msys/mingw, which uses the
5 unix config.h but also runs code in the windows directory. 5 unix config.h but also runs code in the windows directory.
6 */ 6 */
7 #ifdef __MINGW32__ 7 #ifdef __MINGW32__
8 #include "../config.h" 8 #include "../config.h"
9 #define GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ 9 #define GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_
10 #endif 10 #endif
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 168
169 /* Define to 1 if you have the <unistd.h> header file. */ 169 /* Define to 1 if you have the <unistd.h> header file. */
170 #undef HAVE_UNISTD_H 170 #undef HAVE_UNISTD_H
171 171
172 /* Define to 1 if you have the <unwind.h> header file. */ 172 /* Define to 1 if you have the <unwind.h> header file. */
173 #undef HAVE_UNWIND_H 173 #undef HAVE_UNWIND_H
174 174
175 /* define if your compiler has __attribute__ */ 175 /* define if your compiler has __attribute__ */
176 #undef HAVE___ATTRIBUTE__ 176 #undef HAVE___ATTRIBUTE__
177 177
178 /* Define to 1 if compiler supports __environ */
179 #undef HAVE___ENVIRON
180
181 /* Define to 1 if the system has the type `__int64'. */ 178 /* Define to 1 if the system has the type `__int64'. */
182 #define HAVE___INT64 1 179 #define HAVE___INT64 1
183 180
184 /* prefix where we look for installed files */ 181 /* prefix where we look for installed files */
185 #undef INSTALL_PREFIX 182 #undef INSTALL_PREFIX
186 183
187 /* Define to 1 if int32_t is equivalent to intptr_t */ 184 /* Define to 1 if int32_t is equivalent to intptr_t */
188 #undef INT32_EQUALS_INTPTR 185 #undef INT32_EQUALS_INTPTR
189 186
190 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ 187 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 # define _WIN32_WINNT 0x0400 264 # define _WIN32_WINNT 0x0400
268 #endif 265 #endif
269 266
270 // We want to make sure not to ever try to #include heap-checker.h 267 // We want to make sure not to ever try to #include heap-checker.h
271 #define NO_HEAP_CHECK 1 268 #define NO_HEAP_CHECK 1
272 269
273 // TODO(csilvers): include windows/port.h in every relevant source file instead? 270 // TODO(csilvers): include windows/port.h in every relevant source file instead?
274 #include "windows/port.h" 271 #include "windows/port.h"
275 272
276 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ 273 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */
OLDNEW
« no previous file with comments | « third_party/tcmalloc/chromium/src/thread_cache.cc ('k') | third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698