git-svn-id: svn://db.shs.com.ru/pip@745 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5
This commit is contained in:
@@ -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)", new_size, as);
|
||||
if(as > 1000) printf("too much deque size %d(%d)", (int)new_size, (int)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)", new_size, as);
|
||||
if(as > 1000) printf("too much deque size %d(%d)", (int)new_size, (int)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);
|
||||
|
||||
Reference in New Issue
Block a user