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

Side by Side Diff: Source/wtf/WTF.cpp

Issue 1053793004: Add a UseCounter that measures the amount of memory used in PartitionAlloc (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "wtf/FastMalloc.h" 35 #include "wtf/FastMalloc.h"
36 #include "wtf/Partitions.h" 36 #include "wtf/Partitions.h"
37 37
38 namespace WTF { 38 namespace WTF {
39 39
40 extern void initializeThreading(); 40 extern void initializeThreading();
41 41
42 bool s_initialized; 42 bool s_initialized;
43 bool s_shutdown; 43 bool s_shutdown;
44 44
45 void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncr easingTimeFunction) 45 void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncr easingTimeFunction, HistogramEnumerationFunction histogramEnumerationFunction)
46 { 46 {
47 // WTF, and Blink in general, cannot handle being re-initialized, even if sh utdown first. 47 // WTF, and Blink in general, cannot handle being re-initialized, even if sh utdown first.
48 // Make that explicit here. 48 // Make that explicit here.
49 ASSERT(!s_initialized); 49 ASSERT(!s_initialized);
50 ASSERT(!s_shutdown); 50 ASSERT(!s_shutdown);
51 s_initialized = true; 51 s_initialized = true;
52 setCurrentTimeFunction(currentTimeFunction); 52 setCurrentTimeFunction(currentTimeFunction);
53 setMonotonicallyIncreasingTimeFunction(monotonicallyIncreasingTimeFunction); 53 setMonotonicallyIncreasingTimeFunction(monotonicallyIncreasingTimeFunction);
54 Partitions::initialize(); 54 Partitions::initialize(histogramEnumerationFunction);
55 initializeThreading(); 55 initializeThreading();
56 } 56 }
57 57
58 void shutdown() 58 void shutdown()
59 { 59 {
60 ASSERT(s_initialized); 60 ASSERT(s_initialized);
61 ASSERT(!s_shutdown); 61 ASSERT(!s_shutdown);
62 s_shutdown = true; 62 s_shutdown = true;
63 Partitions::shutdown(); 63 Partitions::shutdown();
64 } 64 }
65 65
66 bool isShutdown() 66 bool isShutdown()
67 { 67 {
68 return s_shutdown; 68 return s_shutdown;
69 } 69 }
70 70
71 } // namespace WTF 71 } // namespace WTF
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698