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

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

Issue 576001: Merged third_party/tcmalloc/vendor/src(google-perftools r87) into... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Removed the unnecessary printf and ASSERT(0) 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
178 /* Define to 1 if the system has the type `__int64'. */ 181 /* Define to 1 if the system has the type `__int64'. */
179 #define HAVE___INT64 1 182 #define HAVE___INT64 1
180 183
181 /* prefix where we look for installed files */ 184 /* prefix where we look for installed files */
182 #undef INSTALL_PREFIX 185 #undef INSTALL_PREFIX
183 186
184 /* Define to 1 if int32_t is equivalent to intptr_t */ 187 /* Define to 1 if int32_t is equivalent to intptr_t */
185 #undef INT32_EQUALS_INTPTR 188 #undef INT32_EQUALS_INTPTR
186 189
187 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ 190 /* 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
264 # define _WIN32_WINNT 0x0400 267 # define _WIN32_WINNT 0x0400
265 #endif 268 #endif
266 269
267 // We want to make sure not to ever try to #include heap-checker.h 270 // We want to make sure not to ever try to #include heap-checker.h
268 #define NO_HEAP_CHECK 1 271 #define NO_HEAP_CHECK 1
269 272
270 // TODO(csilvers): include windows/port.h in every relevant source file instead? 273 // TODO(csilvers): include windows/port.h in every relevant source file instead?
271 #include "windows/port.h" 274 #include "windows/port.h"
272 275
273 #endif /* GOOGLE_PERFTOOLS_WINDOWS_CONFIG_H_ */ 276 #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