Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
136 views

malloc returns NULL and sets errno to ENOMEM, but there is plenty of heap space available?

I have a situation in which malloc() returns NULL and sets errno to ENOMEM. But the CRT heap (which is growable) has plenty of memory to work with. At the time of malloc, my process memory is about ...
2
votes
1answer
127 views

Causes for ENOMEM from ::popen()

I have an application that mostly works, but am having one condition wherein the call to ::popen() gets an error with errno set to ENOMEM. The man page for ::popen() refers you to page for ::fork() ...
0
votes
1answer
36 views

mmap returns ENOMEM with shm_open file object

experimenting with shm_open in linux and running into problems. i'm frequently resizing a shared memory segment with ftrunc and using mmap to remap the resized segment. however, right around the 20 ...