OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |