comparison src/share/vm/code/codeBlob.hpp @ 1663:7139e81efd2d

6970566: runThese fails with SIGSEGV Reviewed-by: kvn
author never
date Thu, 22 Jul 2010 15:29:22 -0700
parents e9ff18c4ace7
children 126ea7725993
comparison
equal deleted inserted replaced
1662:e0ba4e04c839 1663:7139e81efd2d
217 //---------------------------------------------------------------------------------------------------- 217 //----------------------------------------------------------------------------------------------------
218 // AdapterBlob: used to hold C2I/I2C adapters 218 // AdapterBlob: used to hold C2I/I2C adapters
219 219
220 class AdapterBlob: public BufferBlob { 220 class AdapterBlob: public BufferBlob {
221 private: 221 private:
222 AdapterBlob(int size) : BufferBlob("I2C/C2I adapters", size) {} 222 AdapterBlob(int size, CodeBuffer* cb);
223 AdapterBlob(int size, CodeBuffer* cb) : BufferBlob("I2C/C2I adapters", size, cb) {}
224 223
225 public: 224 public:
226 // Creation 225 // Creation
227 static AdapterBlob* create(CodeBuffer* cb); 226 static AdapterBlob* create(CodeBuffer* cb);
228 227