OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_TRACKED_OBJECTS_H_ | 5 #ifndef BASE_TRACKED_OBJECTS_H_ |
6 #define BASE_TRACKED_OBJECTS_H_ | 6 #define BASE_TRACKED_OBJECTS_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <stack> | 10 #include <stack> |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
251 int birth_count_; | 251 int birth_count_; |
252 | 252 |
253 DISALLOW_COPY_AND_ASSIGN(Births); | 253 DISALLOW_COPY_AND_ASSIGN(Births); |
254 }; | 254 }; |
255 | 255 |
256 //------------------------------------------------------------------------------ | 256 //------------------------------------------------------------------------------ |
257 // Basic info summarizing multiple destructions of a tracked object with a | 257 // Basic info summarizing multiple destructions of a tracked object with a |
258 // single birthplace (fixed Location). Used both on specific threads, and also | 258 // single birthplace (fixed Location). Used both on specific threads, and also |
259 // in snapshots when integrating assembled data. | 259 // in snapshots when integrating assembled data. |
260 | 260 |
261 struct DeathDataPhaseSnapshot; | |
262 | |
263 //------------------------------------------------------------------------------ | |
264 // Information about deaths of a task on a given thread, called "death thread". | |
265 // Access to members of this class is never protected by the lock. The fields | |
266 // are accessed in such a way that corruptions resulting from race conditions | |
267 // are not significant, and don't accumulate as a result of multiple accesses. | |
268 // All snapshots and phase change notifications must be called from the same | |
269 // thread. It doesn't matter what thread it is, but it's important the same | |
270 // thread is used as a snapshot thread during the whole process lifetime. | |
271 // All fields except sample_probability_count_ can be snapshotted. | |
272 | |
261 class BASE_EXPORT DeathData { | 273 class BASE_EXPORT DeathData { |
262 public: | 274 public: |
263 // Default initializer. | 275 // Default initializer. |
264 DeathData(); | 276 DeathData(); |
265 | 277 |
266 // When deaths have not yet taken place, and we gather data from all the | 278 // When deaths have not yet taken place, and we gather data from all the |
267 // threads, we create DeathData stats that tally the number of births without | 279 // threads, we create DeathData stats that tally the number of births without |
268 // a corresponding death. | 280 // a corresponding death. |
269 explicit DeathData(int count); | 281 explicit DeathData(int count); |
270 | 282 |
283 ~DeathData(); | |
284 | |
271 // Update stats for a task destruction (death) that had a Run() time of | 285 // Update stats for a task destruction (death) that had a Run() time of |
272 // |duration|, and has had a queueing delay of |queue_duration|. | 286 // |duration|, and has had a queueing delay of |queue_duration|. |
273 void RecordDeath(const int32 queue_duration, | 287 void RecordDeath(const int32 queue_duration, |
274 const int32 run_duration, | 288 const int32 run_duration, |
275 const uint32 random_number); | 289 const uint32 random_number); |
276 | 290 |
277 // Metrics accessors, used only for serialization and in tests. | 291 // Metrics and past snapshots accessors, used only for serialization and in |
292 // tests. | |
278 int count() const; | 293 int count() const; |
279 int32 run_duration_sum() const; | 294 int32 run_duration_sum() const; |
280 int32 run_duration_max() const; | 295 int32 run_duration_max() const; |
281 int32 run_duration_sample() const; | 296 int32 run_duration_sample() const; |
282 int32 queue_duration_sum() const; | 297 int32 queue_duration_sum() const; |
283 int32 queue_duration_max() const; | 298 int32 queue_duration_max() const; |
284 int32 queue_duration_sample() const; | 299 int32 queue_duration_sample() const; |
300 DeathDataPhaseSnapshot* last_phase_snapshot() const; | |
285 | 301 |
286 // Reset all tallies to zero. This is used as a hack on realtime data. | 302 // Called when the current profiling phase, identified by |profiling_phase|, |
287 void Clear(); | 303 // ends. |
304 // Must be called only in the snapshot thread. | |
Alexei Svitkine (slow)
2015/04/08 20:54:26
Nit: "in" -> "on"
vadimt
2015/04/08 21:27:17
Done.
| |
305 void OnProfilingPhaseCompleted(int profiling_phase); | |
288 | 306 |
289 private: | 307 private: |
290 // Members are ordered from most regularly read and updated, to least | 308 // Members are ordered from most regularly read and updated, to least |
291 // frequently used. This might help a bit with cache lines. | 309 // frequently used. This might help a bit with cache lines. |
292 // Number of runs seen (divisor for calculating averages). | 310 // Number of runs seen (divisor for calculating averages). |
311 // Can be incremented only from the death thread. | |
293 int count_; | 312 int count_; |
294 // Basic tallies, used to compute averages. | 313 |
314 // Count used in determining probability of selecting exec/queue times from a | |
315 // recorded death as samples. | |
316 // Gets incremented only in the death thread, but can be set to 0 by | |
317 // OnProfilingPhaseCompleted() from the snapshot thread. | |
318 int sample_probability_count_; | |
319 | |
320 // Basic tallies, used to compute averages. Can be incremented only in the | |
321 // death thread. | |
295 int32 run_duration_sum_; | 322 int32 run_duration_sum_; |
296 int32 queue_duration_sum_; | 323 int32 queue_duration_sum_; |
297 // Max values, used by local visualization routines. These are often read, | 324 // Max values, used by local visualization routines. These are often read, |
298 // but rarely updated. | 325 // but rarely updated. The max values get assigned only in the death thread, |
326 // but these fields can be set to 0 by OnProfilingPhaseCompleted() from the | |
327 // snapshot thread. | |
299 int32 run_duration_max_; | 328 int32 run_duration_max_; |
300 int32 queue_duration_max_; | 329 int32 queue_duration_max_; |
301 // Samples, used by crowd sourcing gatherers. These are almost never read, | 330 // Samples, used by crowd sourcing gatherers. These are almost never read, |
302 // and rarely updated. | 331 // and rarely updated. They can be modified only from the death thread. |
303 int32 run_duration_sample_; | 332 int32 run_duration_sample_; |
304 int32 queue_duration_sample_; | 333 int32 queue_duration_sample_; |
334 | |
335 // Snapshot of this death data made at the last profiling phase completion, if | |
336 // any. DeathData owns the whole list starting with this pointer. | |
337 // Can be accessed only from the snapshot thread. | |
338 DeathDataPhaseSnapshot* last_phase_snapshot_; | |
339 | |
340 DISALLOW_COPY_AND_ASSIGN(DeathData); | |
305 }; | 341 }; |
306 | 342 |
307 //------------------------------------------------------------------------------ | 343 //------------------------------------------------------------------------------ |
308 // A "snapshotted" representation of the DeathData class. | 344 // A "snapshotted" representation of the DeathData class. |
309 | 345 |
310 struct BASE_EXPORT DeathDataSnapshot { | 346 struct BASE_EXPORT DeathDataSnapshot { |
311 DeathDataSnapshot(); | 347 DeathDataSnapshot(); |
312 explicit DeathDataSnapshot(const DeathData& death_data); | 348 explicit DeathDataSnapshot(const DeathData& death_data); |
313 ~DeathDataSnapshot(); | 349 ~DeathDataSnapshot(); |
314 | 350 |
351 // Calculates delta between this snapshot and an earlier snapshot of the same | |
352 // task |older| and assigns it back to this object. | |
353 void CalculateDelta(const DeathDataSnapshot& older); | |
354 | |
315 int count; | 355 int count; |
316 int32 run_duration_sum; | 356 int32 run_duration_sum; |
317 int32 run_duration_max; | 357 int32 run_duration_max; |
318 int32 run_duration_sample; | 358 int32 run_duration_sample; |
319 int32 queue_duration_sum; | 359 int32 queue_duration_sum; |
320 int32 queue_duration_max; | 360 int32 queue_duration_max; |
321 int32 queue_duration_sample; | 361 int32 queue_duration_sample; |
322 }; | 362 }; |
323 | 363 |
324 //------------------------------------------------------------------------------ | 364 //------------------------------------------------------------------------------ |
365 // A "snapshotted" representation of the DeathData for a particular profiling | |
366 // phase. Used as an element of the list of phase snapshots owned by DeathData. | |
367 | |
368 struct DeathDataPhaseSnapshot { | |
369 DeathDataPhaseSnapshot(int profiling_phase, const DeathData& death_data); | |
370 | |
371 // Profiling phase at which completion this snapshot was taken. | |
372 int profiling_phase; | |
373 // Death data snapshot. | |
374 DeathDataSnapshot death_data; | |
375 // Pointer to a snapshot from the previous phase. | |
376 DeathDataPhaseSnapshot* prev; | |
377 }; | |
378 | |
379 //------------------------------------------------------------------------------ | |
325 // A temporary collection of data that can be sorted and summarized. It is | 380 // A temporary collection of data that can be sorted and summarized. It is |
326 // gathered (carefully) from many threads. Instances are held in arrays and | 381 // gathered (carefully) from many threads. Instances are held in arrays and |
327 // processed, filtered, and rendered. | 382 // processed, filtered, and rendered. |
328 // The source of this data was collected on many threads, and is asynchronously | 383 // The source of this data was collected on many threads, and is asynchronously |
329 // changing. The data in this instance is not asynchronously changing. | 384 // changing. The data in this instance is not asynchronously changing. |
330 | 385 |
331 struct BASE_EXPORT TaskSnapshot { | 386 struct BASE_EXPORT TaskSnapshot { |
332 TaskSnapshot(); | 387 TaskSnapshot(); |
333 TaskSnapshot(const BirthOnThread& birth, | 388 TaskSnapshot(const BirthOnThreadSnapshot& birth, |
334 const DeathData& death_data, | 389 const DeathDataSnapshot& death_data, |
335 const std::string& death_thread_name); | 390 const std::string& death_thread_name); |
336 ~TaskSnapshot(); | 391 ~TaskSnapshot(); |
337 | 392 |
338 BirthOnThreadSnapshot birth; | 393 BirthOnThreadSnapshot birth; |
394 // Delta between death data for a thread for a certain profiling phase and the | |
395 // snapshot for the pervious phase, if any. Otherwise, just a snapshot. | |
339 DeathDataSnapshot death_data; | 396 DeathDataSnapshot death_data; |
340 std::string death_thread_name; | 397 std::string death_thread_name; |
341 }; | 398 }; |
342 | 399 |
343 //------------------------------------------------------------------------------ | 400 //------------------------------------------------------------------------------ |
344 // For each thread, we have a ThreadData that stores all tracking info generated | 401 // For each thread, we have a ThreadData that stores all tracking info generated |
345 // on this thread. This prevents the need for locking as data accumulates. | 402 // on this thread. This prevents the need for locking as data accumulates. |
346 // We use ThreadLocalStorage to quickly identfy the current ThreadData context. | 403 // We use ThreadLocalStorage to quickly identfy the current ThreadData context. |
347 // We also have a linked list of ThreadData instances, and that list is used to | 404 // We also have a linked list of ThreadData instances, and that list is used to |
348 // harvest data from all existing instances. | 405 // harvest data from all existing instances. |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
381 // only used by the message loop, which has a well defined thread name. | 438 // only used by the message loop, which has a well defined thread name. |
382 static void InitializeThreadContext(const std::string& suggested_name); | 439 static void InitializeThreadContext(const std::string& suggested_name); |
383 | 440 |
384 // Using Thread Local Store, find the current instance for collecting data. | 441 // Using Thread Local Store, find the current instance for collecting data. |
385 // If an instance does not exist, construct one (and remember it for use on | 442 // If an instance does not exist, construct one (and remember it for use on |
386 // this thread. | 443 // this thread. |
387 // This may return NULL if the system is disabled for any reason. | 444 // This may return NULL if the system is disabled for any reason. |
388 static ThreadData* Get(); | 445 static ThreadData* Get(); |
389 | 446 |
390 // Fills |process_data_snapshot| with phased snapshots of all profiling | 447 // Fills |process_data_snapshot| with phased snapshots of all profiling |
391 // phases, including the current one. | 448 // phases, including the current one, identified by |current_profiling_phase|. |
392 static void Snapshot(ProcessDataSnapshot* process_data_snapshot); | 449 // |current_profiling_phase| is necessary because a child process can start |
450 // after several phase-changing events, so it needs to receive the current | |
451 // phase number from the browser process to fill the correct entry for the | |
452 // current phase in the |process_data_snapshot| map. | |
453 static void Snapshot(int current_profiling_phase, | |
454 ProcessDataSnapshot* process_data_snapshot); | |
455 | |
456 // Called when the current profiling phase, identified by |profiling_phase|, | |
457 // ends. | |
458 // |profiling_phase| is necessary because a child process can start after | |
459 // several phase-changing events, so it needs to receive the phase number from | |
460 // the browser process to fill the correct entry in the | |
461 // completed_phases_snapshots_ map. | |
462 static void OnProfilingPhaseCompleted(int profiling_phase); | |
393 | 463 |
394 // Finds (or creates) a place to count births from the given location in this | 464 // Finds (or creates) a place to count births from the given location in this |
395 // thread, and increment that tally. | 465 // thread, and increment that tally. |
396 // TallyABirthIfActive will returns NULL if the birth cannot be tallied. | 466 // TallyABirthIfActive will returns NULL if the birth cannot be tallied. |
397 static Births* TallyABirthIfActive(const Location& location); | 467 static Births* TallyABirthIfActive(const Location& location); |
398 | 468 |
399 // Records the end of a timed run of an object. The |completed_task| contains | 469 // Records the end of a timed run of an object. The |completed_task| contains |
400 // a pointer to a Births, the time_posted, and a delayed_start_time if any. | 470 // a pointer to a Births, the time_posted, and a delayed_start_time if any. |
401 // The |start_of_run| indicates when we started to perform the run of the | 471 // The |start_of_run| indicates when we started to perform the run of the |
402 // task. The delayed_start_time is non-null for tasks that were posted as | 472 // task. The delayed_start_time is non-null for tasks that were posted as |
403 // delayed tasks, and it indicates when the task should have run (i.e., when | 473 // delayed tasks, and it indicates when the task should have run (i.e., when |
404 // it should have posted out of the timer queue, and into the work queue. | 474 // it should have posted out of the timer queue, and into the work queue. |
405 // The |end_of_run| was just obtained by a call to Now() (just after the task | 475 // The |end_of_run| was just obtained by a call to Now() (just after the task |
406 // finished). It is provided as an argument to help with testing. | 476 // finished). It is provided as an argument to help with testing. |
407 static void TallyRunOnNamedThreadIfTracking( | 477 static void TallyRunOnNamedThreadIfTracking( |
408 const base::TrackingInfo& completed_task, | 478 const base::TrackingInfo& completed_task, |
409 const TaskStopwatch& stopwatch); | 479 const TaskStopwatch& stopwatch); |
410 | 480 |
411 // Record the end of a timed run of an object. The |birth| is the record for | 481 // Record the end of a timed run of an object. The |birth| is the record for |
412 // the instance, the |time_posted| records that instant, which is presumed to | 482 // the instance, the |time_posted| records that instant, which is presumed to |
413 // be when the task was posted into a queue to run on a worker thread. | 483 // be when the task was posted into a queue to run on a worker thread. |
414 // The |start_of_run| is when the worker thread started to perform the run of | 484 // The |start_of_run| is when the worker thread started to perform the run of |
415 // the task. | 485 // the task. |
416 // The |end_of_run| was just obtained by a call to Now() (just after the task | 486 // The |end_of_run| was just obtained by a call to Now() (just after the task |
417 // finished). | 487 // finished). |
418 static void TallyRunOnWorkerThreadIfTracking(const Births* birth, | 488 static void TallyRunOnWorkerThreadIfTracking(const Births* births, |
419 const TrackedTime& time_posted, | 489 const TrackedTime& time_posted, |
420 const TaskStopwatch& stopwatch); | 490 const TaskStopwatch& stopwatch); |
421 | 491 |
422 // Record the end of execution in region, generally corresponding to a scope | 492 // Record the end of execution in region, generally corresponding to a scope |
423 // being exited. | 493 // being exited. |
424 static void TallyRunInAScopedRegionIfTracking(const Births* birth, | 494 static void TallyRunInAScopedRegionIfTracking(const Births* births, |
425 const TaskStopwatch& stopwatch); | 495 const TaskStopwatch& stopwatch); |
426 | 496 |
427 const std::string& thread_name() const { return thread_name_; } | 497 const std::string& thread_name() const { return thread_name_; } |
428 | 498 |
429 // Initializes all statics if needed (this initialization call should be made | 499 // Initializes all statics if needed (this initialization call should be made |
430 // while we are single threaded). Returns false if unable to initialize. | 500 // while we are single threaded). Returns false if unable to initialize. |
431 static bool Initialize(); | 501 static bool Initialize(); |
432 | 502 |
433 // Sets internal status_. | 503 // Sets internal status_. |
434 // If |status| is false, then status_ is set to DEACTIVATED. | 504 // If |status| is false, then status_ is set to DEACTIVATED. |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
486 // TODO(jar): Make this a friend in DEBUG only, so that the optimizer has a | 556 // TODO(jar): Make this a friend in DEBUG only, so that the optimizer has a |
487 // better change of optimizing (inlining? etc.) private methods (knowing that | 557 // better change of optimizing (inlining? etc.) private methods (knowing that |
488 // there will be no need for an external entry point). | 558 // there will be no need for an external entry point). |
489 friend class TrackedObjectsTest; | 559 friend class TrackedObjectsTest; |
490 FRIEND_TEST_ALL_PREFIXES(TrackedObjectsTest, MinimalStartupShutdown); | 560 FRIEND_TEST_ALL_PREFIXES(TrackedObjectsTest, MinimalStartupShutdown); |
491 FRIEND_TEST_ALL_PREFIXES(TrackedObjectsTest, TinyStartupShutdown); | 561 FRIEND_TEST_ALL_PREFIXES(TrackedObjectsTest, TinyStartupShutdown); |
492 FRIEND_TEST_ALL_PREFIXES(TrackedObjectsTest, ParentChildTest); | 562 FRIEND_TEST_ALL_PREFIXES(TrackedObjectsTest, ParentChildTest); |
493 | 563 |
494 typedef std::map<const BirthOnThread*, int> BirthCountMap; | 564 typedef std::map<const BirthOnThread*, int> BirthCountMap; |
495 | 565 |
566 typedef std::vector<std::pair<const Births*, DeathDataPhaseSnapshot>> | |
567 DeathsSnapshot; | |
568 | |
496 // Worker thread construction creates a name since there is none. | 569 // Worker thread construction creates a name since there is none. |
497 explicit ThreadData(int thread_number); | 570 explicit ThreadData(int thread_number); |
498 | 571 |
499 // Message loop based construction should provide a name. | 572 // Message loop based construction should provide a name. |
500 explicit ThreadData(const std::string& suggested_name); | 573 explicit ThreadData(const std::string& suggested_name); |
501 | 574 |
502 ~ThreadData(); | 575 ~ThreadData(); |
503 | 576 |
504 // Push this instance to the head of all_thread_data_list_head_, linking it to | 577 // Push this instance to the head of all_thread_data_list_head_, linking it to |
505 // the previous head. This is performed after each construction, and leaves | 578 // the previous head. This is performed after each construction, and leaves |
506 // the instance permanently on that list. | 579 // the instance permanently on that list. |
507 void PushToHeadOfList(); | 580 void PushToHeadOfList(); |
508 | 581 |
509 // (Thread safe) Get start of list of all ThreadData instances using the lock. | 582 // (Thread safe) Get start of list of all ThreadData instances using the lock. |
510 static ThreadData* first(); | 583 static ThreadData* first(); |
511 | 584 |
512 // Iterate through the null terminated list of ThreadData instances. | 585 // Iterate through the null terminated list of ThreadData instances. |
513 ThreadData* next() const; | 586 ThreadData* next() const; |
514 | 587 |
515 | 588 |
516 // In this thread's data, record a new birth. | 589 // In this thread's data, record a new birth. |
517 Births* TallyABirth(const Location& location); | 590 Births* TallyABirth(const Location& location); |
518 | 591 |
519 // Find a place to record a death on this thread. | 592 // Find a place to record a death on this thread. |
520 void TallyADeath(const Births& birth, | 593 void TallyADeath(const Births& births, |
521 int32 queue_duration, | 594 int32 queue_duration, |
522 const TaskStopwatch& stopwatch); | 595 const TaskStopwatch& stopwatch); |
523 | 596 |
524 // Snapshot (under a lock) the profiled data for the tasks in each ThreadData | 597 // Snapshots (under a lock) the profiled data for the tasks for this thread |
525 // instance. Also updates the |birth_counts| tally for each task to keep | 598 // and writes all of the executed tasks' data -- i.e. the data for all |
526 // track of the number of living instances of the task. | 599 // profiling phases (including the current one: |current_profiling_phase|) for |
527 static void SnapshotAllExecutedTasks( | 600 // the tasks with with entries in the death_map_ -- into |
528 ProcessDataPhaseSnapshot* process_data_phase, | 601 // |return_of_snapshot_hrenina|. Also updates the |birth_counts| tally for |
602 // each task to keep track of the number of living instances of the task -- | |
603 // that is, each task maps to the number of births for the task that have not | |
604 // yet been balanced by a death. | |
605 void SnapshotExecutedTasks( | |
606 int current_profiling_phase, | |
607 PhasedProcessDataSnapshotMap* phased_process_data_snapshots, | |
529 BirthCountMap* birth_counts); | 608 BirthCountMap* birth_counts); |
530 | 609 |
531 // Fills |process_data_phase| with all the recursive results in our process. | |
532 static void SnapshotCurrentPhase( | |
533 ProcessDataPhaseSnapshot* process_data_phase); | |
534 | |
535 // Snapshots (under a lock) the profiled data for the tasks for this thread | |
536 // and writes all of the executed tasks' data -- i.e. the data for the tasks | |
537 // with with entries in the death_map_ -- into |process_data_phase|. Also | |
538 // updates the |birth_counts| tally for each task to keep track of the number | |
539 // of living instances of the task -- that is, each task maps to the number of | |
540 // births for the task that have not yet been balanced by a death. | |
541 void SnapshotExecutedTasks(ProcessDataPhaseSnapshot* process_data_phase, | |
542 BirthCountMap* birth_counts); | |
543 | |
544 // Using our lock, make a copy of the specified maps. This call may be made | 610 // Using our lock, make a copy of the specified maps. This call may be made |
545 // on non-local threads, which necessitate the use of the lock to prevent | 611 // on non-local threads, which necessitate the use of the lock to prevent |
546 // the map(s) from being reallocated while they are copied. | 612 // the map(s) from being reallocated while they are copied. |
547 void SnapshotMaps(BirthMap* birth_map, | 613 void SnapshotMaps(int profiling_phase, |
548 DeathMap* death_map, | 614 BirthMap* birth_map, |
615 DeathsSnapshot* deaths, | |
549 ParentChildSet* parent_child_set); | 616 ParentChildSet* parent_child_set); |
550 | 617 |
618 // Called for this thread when the current profiling phase, identified by | |
619 // |profiling_phase|, ends. | |
620 void OnProfilingPhaseCompletionOnThread(int profiling_phase); | |
621 | |
551 // This method is called by the TLS system when a thread terminates. | 622 // This method is called by the TLS system when a thread terminates. |
552 // The argument may be NULL if this thread has never tracked a birth or death. | 623 // The argument may be NULL if this thread has never tracked a birth or death. |
553 static void OnThreadTermination(void* thread_data); | 624 static void OnThreadTermination(void* thread_data); |
554 | 625 |
555 // This method should be called when a worker thread terminates, so that we | 626 // This method should be called when a worker thread terminates, so that we |
556 // can save all the thread data into a cache of reusable ThreadData instances. | 627 // can save all the thread data into a cache of reusable ThreadData instances. |
557 void OnThreadTerminationCleanup(); | 628 void OnThreadTerminationCleanup(); |
558 | 629 |
559 // Cleans up data structures, and returns statics to near pristine (mostly | 630 // Cleans up data structures, and returns statics to near pristine (mostly |
560 // uninitialized) state. If there is any chance that other threads are still | 631 // uninitialized) state. If there is any chance that other threads are still |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
783 ProcessDataSnapshot(); | 854 ProcessDataSnapshot(); |
784 ~ProcessDataSnapshot(); | 855 ~ProcessDataSnapshot(); |
785 | 856 |
786 PhasedProcessDataSnapshotMap phased_process_data_snapshots; | 857 PhasedProcessDataSnapshotMap phased_process_data_snapshots; |
787 base::ProcessId process_id; | 858 base::ProcessId process_id; |
788 }; | 859 }; |
789 | 860 |
790 } // namespace tracked_objects | 861 } // namespace tracked_objects |
791 | 862 |
792 #endif // BASE_TRACKED_OBJECTS_H_ | 863 #endif // BASE_TRACKED_OBJECTS_H_ |
OLD | NEW |