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

Side by Side Diff: src/circular-queue.h

Issue 1514006: C++ profiles processor: put under #ifdef and fix issues. (Closed)
Patch Set: Created 10 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 const int record_size_; 113 const int record_size_;
114 const int chunk_size_in_bytes_; 114 const int chunk_size_in_bytes_;
115 const int chunk_size_; 115 const int chunk_size_;
116 const int buffer_size_; 116 const int buffer_size_;
117 const int producer_consumer_distance_; 117 const int producer_consumer_distance_;
118 Cell* buffer_; 118 Cell* buffer_;
119 byte* positions_; 119 byte* positions_;
120 ProducerPosition* producer_pos_; 120 ProducerPosition* producer_pos_;
121 ConsumerPosition* consumer_pos_; 121 ConsumerPosition* consumer_pos_;
122
123 DISALLOW_COPY_AND_ASSIGN(SamplingCircularQueue);
122 }; 124 };
123 125
124 126
125 } } // namespace v8::internal 127 } } // namespace v8::internal
126 128
127 #endif // V8_CIRCULAR_QUEUE_H_ 129 #endif // V8_CIRCULAR_QUEUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698