{
shm_toc_estimator e;
int i;
- uint64 segsize;
+ Size segsize;
dsm_segment *seg;
shm_toc *toc;
test_shm_mq_header *hdr;
if (queue_size < 0 || ((uint64) queue_size) < shm_mq_minimum_size)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("queue size must be at least %lu bytes",
- (unsigned long) shm_mq_minimum_size)));
+ errmsg("queue size must be at least %zu bytes",
+ shm_mq_minimum_size)));
+ if (queue_size != ((Size) queue_size))
+ ereport(ERROR,
+ (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
+ errmsg("queue size overflows size_t")));
/*
* Estimate how much shared memory we need.
shm_toc_initialize_estimator(&e);
shm_toc_estimate_chunk(&e, sizeof(test_shm_mq_header));
for (i = 0; i <= nworkers; ++i)
- shm_toc_estimate_chunk(&e, queue_size);
+ shm_toc_estimate_chunk(&e, (Size) queue_size);
shm_toc_estimate_keys(&e, 2 + nworkers);
segsize = shm_toc_estimate(&e);
{
shm_mq *mq;
- mq = shm_mq_create(shm_toc_allocate(toc, queue_size), queue_size);
+ mq = shm_mq_create(shm_toc_allocate(toc, (Size) queue_size),
+ (Size) queue_size);
shm_toc_insert(toc, i + 1, mq);
if (i == 0)
if (origlen != newlen)
ereport(ERROR,
(errmsg("message corrupted"),
- errdetail("The original message was " UINT64_FORMAT " bytes but the final message is " UINT64_FORMAT " bytes.",
+ errdetail("The original message was %zu bytes but the final message is %zu bytes.",
origlen, newlen)));
for (i = 0; i < origlen; ++i)
if (origdata[i] != newdata[i])
ereport(ERROR,
(errmsg("message corrupted"),
- errdetail("The new and original messages differ at byte " UINT64_FORMAT " of " UINT64_FORMAT ".", i, origlen)));
+ errdetail("The new and original messages differ at byte %zu of %zu.", i, origlen)));
}