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

Side by Side Diff: third_party/tcmalloc/chromium/src/config_linux.h

Issue 7430007: Merge tcmalloc r111 (perftools v. 1.8) with the chromium/ branch. Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 /* src/config.h. Generated from config.h.in by configure. */ 1 /* src/config.h. Generated from config.h.in by configure. */
2 /* src/config.h.in. Generated from configure.ac by autoheader. */ 2 /* src/config.h.in. Generated from configure.ac by autoheader. */
3 3
4 /* Define to 1 if compiler supports __builtin_stack_pointer */ 4 /* Define to 1 if compiler supports __builtin_stack_pointer */
5 /* #undef HAVE_BUILTIN_STACK_POINTER */ 5 /* #undef HAVE_BUILTIN_STACK_POINTER */
6 6
7 /* Define to 1 if you have the <conflict-signal.h> header file. */ 7 /* Define to 1 if you have the <conflict-signal.h> header file. */
8 /* #undef HAVE_CONFLICT_SIGNAL_H */ 8 /* #undef HAVE_CONFLICT_SIGNAL_H */
9 9
10 /* Define to 1 if you have the <cygwin/signal.h> header file. */ 10 /* Define to 1 if you have the <cygwin/signal.h> header file. */
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 /* prefix where we look for installed files */ 181 /* prefix where we look for installed files */
182 #define INSTALL_PREFIX "/usr/local" 182 #define INSTALL_PREFIX "/usr/local"
183 183
184 /* Define to 1 if int32_t is equivalent to intptr_t */ 184 /* Define to 1 if int32_t is equivalent to intptr_t */
185 /* #undef INT32_EQUALS_INTPTR */ 185 /* #undef INT32_EQUALS_INTPTR */
186 186
187 /* Define to the sub-directory in which libtool stores uninstalled libraries. 187 /* Define to the sub-directory in which libtool stores uninstalled libraries.
188 */ 188 */
189 #undef LT_OBJDIR 189 #undef LT_OBJDIR
190 190
191 /* Define to 'volatile' if __malloc_hook is declared volatile */
192 #ifdef __MALLOC_HOOK_VOLATILE
193 #define MALLOC_HOOK_MAYBE_VOLATILE volatile
194 #else
195 #define MALLOC_HOOK_MAYBE_VOLATILE
196 #endif
197
191 /* Define to 1 if your C compiler doesn't accept -c and -o together. */ 198 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
192 /* #undef NO_MINUS_C_MINUS_O */ 199 /* #undef NO_MINUS_C_MINUS_O */
193 200
194 /* Name of package */ 201 /* Name of package */
195 #define PACKAGE "google-perftools" 202 #define PACKAGE "google-perftools"
196 203
197 /* Define to the address where bug reports for this package should be sent. */ 204 /* Define to the address where bug reports for this package should be sent. */
198 #define PACKAGE_BUGREPORT "opensource@google.com" 205 #define PACKAGE_BUGREPORT "opensource@google.com"
199 206
200 /* Define to the full name of this package. */ 207 /* Define to the full name of this package. */
(...skipping 23 matching lines...) Expand all
224 231
225 /* printf format code for printing a size_t and ssize_t */ 232 /* printf format code for printing a size_t and ssize_t */
226 #define PRIdS "zd" 233 #define PRIdS "zd"
227 234
228 /* printf format code for printing a size_t and ssize_t */ 235 /* printf format code for printing a size_t and ssize_t */
229 #define PRIuS "zu" 236 #define PRIuS "zu"
230 237
231 /* printf format code for printing a size_t and ssize_t */ 238 /* printf format code for printing a size_t and ssize_t */
232 #define PRIxS "zx" 239 #define PRIxS "zx"
233 240
241 /* Mark the systems where we know it's bad if pthreads runs too
242 early before main (before threads are initialized, presumably). */
243 #undef PTHREADS_CRASHES_IF_RUN_TOO_EARLY
244
234 /* Define to necessary symbol if this constant uses a non-standard name on 245 /* Define to necessary symbol if this constant uses a non-standard name on
235 your system. */ 246 your system. */
236 /* #undef PTHREAD_CREATE_JOINABLE */ 247 /* #undef PTHREAD_CREATE_JOINABLE */
237 248
238 /* Define to 1 if you have the ANSI C header files. */ 249 /* Define to 1 if you have the ANSI C header files. */
239 #define STDC_HEADERS 1 250 #define STDC_HEADERS 1
240 251
241 /* the namespace where STL code like vector<> is defined */ 252 /* the namespace where STL code like vector<> is defined */
242 #define STL_NAMESPACE std 253 #define STL_NAMESPACE std
243 254
244 /* Version number of package */ 255 /* Version number of package */
245 #define VERSION "1.7" 256 #define VERSION "1.7"
246 257
247 /* C99 says: define this to get the PRI... macros from stdint.h */ 258 /* C99 says: define this to get the PRI... macros from stdint.h */
248 #ifndef __STDC_FORMAT_MACROS 259 #ifndef __STDC_FORMAT_MACROS
249 # define __STDC_FORMAT_MACROS 1 260 # define __STDC_FORMAT_MACROS 1
250 #endif 261 #endif
251 262
252 /* Define to `__inline__' or `__inline' if that's what the C compiler 263 /* Define to `__inline__' or `__inline' if that's what the C compiler
253 calls it, or to nothing if 'inline' is not supported under any name. */ 264 calls it, or to nothing if 'inline' is not supported under any name. */
254 #ifndef __cplusplus 265 #ifndef __cplusplus
255 /* #undef inline */ 266 /* #undef inline */
256 #endif 267 #endif
257 268
258 269
259 #ifdef __MINGW32__ 270 #ifdef __MINGW32__
260 #include "windows/mingw.h" 271 #include "windows/mingw.h"
261 #endif 272 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698