git-svn-id: svn://db.shs.com.ru/pip@748 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2019-02-09 23:27:12 +00:00
parent 5db117fbc5
commit 7fb674b3c4
2 changed files with 3 additions and 3 deletions

View File

@@ -449,7 +449,7 @@ private:
}
pid_size = new_size;
size_t as = asize(pid_start + new_size);
if(as > 1000) printf("too much deque size %d(%d)", (int)new_size, (int)as);
if(as > 1000) piCout << "too much deque size" << new_size << as;
if (as != pid_rsize) {
//printf("(%p) realloc %d -> %d (%p)\n", this, pid_rsize, as, pid_data);
PIINTROSPECTION_CONTAINER_ALLOC((as-pid_rsize)*sizeof(T))
@@ -466,7 +466,7 @@ private:
if (pid_start + start_offset < 0)
as = asize(pid_rsize - start_offset);
else as = pid_rsize;
if(as > 1000) printf("too much deque size %d(%d)", (int)new_size, (int)as);
if(as > 1000) piCout << "too much deque size" << new_size << as;
//printf("%X alloc %d %d\n", this, pid_rsize, start_offset);
//printf("%X alloc %d %d %d %d %d %d\n", this, new_size, pid_size, pid_rsize, as, pid_start, start_offset);

View File

@@ -360,7 +360,7 @@ private:
piv_size = new_size;
size_t as = asize(new_size);
if (as == piv_rsize) return;
if(as > 1000) printf("too much vector size %d(%d)", (int)new_size, (int)as);
if(as > 1000) piCout << "too much vector size" << new_size << as;
//cout << std::hex << " ![("<<this<<")realloc " << piv_data << " data ... <\n" << endl;
T * p_d = (T*)(realloc((void*)(piv_data), as*sizeof(T)));