2
votes
9answers
273 views
+150
RAM memory reallocation - Windows and Linux
I am working on a project involving optimizing energy consumption within a system. Part of that project consists in allocating RAM memory based on locality, that is allocating memo …
2
votes
4answers
70 views
Why Win32 HeapReAlloc() changes values?
Hi there!
I'm writing an app in C using win32 API.
When I try to enlarge the size of my array, using the HeapRealloc() function, it changes my current values in the array, instead …
0
votes
3answers
48 views
What will happen if a application is large enough to be loaded into the available RAM memory?
There is chance were a heavy weight application that needs to be launched in a low configuration system.. (Especially when the system has too less memory)
Also when we have already …
2
votes
1answer
74 views
MATLAB: Determine total length/size of a structure array with fields as structure arrays
I have a structure array containing fields as structure arrays of varying length. For example:
's' is a structure
'data' is a field in 's', and also a structure array itself
and
…
0
votes
3answers
53 views
CUDA Memory Allocation accessible for both host and device
I'm trying to figure out a way to allocate a block of memory that is accessible by both the host (CPU) and device (GPU). Other than using cudaHostAlloc() function to allocate page- …
4
votes
4answers
128 views
Why can’t compiler derive string length for array of strings?
Note: This question was influenced by this answer.
The following is valid C code:
char myString[] = "This is my string";
This will allocate a string of length 18 (including the …
0
votes
4answers
36 views
calling function from regular dll from c# - memory allocation issue?
Hi chaps(and chappettes)
Have a regular C dll with an exported function
int GetGroovyName(int grooovyId,char * pGroovyName, int bufSize,)
Basically you pass it an ID (int), a ch …
1
vote
3answers
90 views
java and memory layout
Hey guys, I'm reviewing some questions but I can't really figure it out, i looked through the text book but i'm not sure where i can find answer...
I know it would be quite hard t …
1
vote
2answers
91 views
Magic in placement new?
Hi, I'm playing with dynamic memory allocation "by hand" and I wanted to see how placement new is implemented by guys from MS but when debugging I "stepped into" it moved me to cod …
5
votes
5answers
111 views
When is stack space allocated for local variables?
I have a question about the following C code:
void my_function()
{
int i1;
int j1;
// Do something...
if (check_something())
{
int i2;
int j2 …
10
votes
6answers
327 views
Linux optimistic malloc: will new always throw when out of memory?
I have been reading about out of memory conditions on Linux, and the following paragraph from the man pages got me thinking:
By default, Linux follows an optimistic memory allo …
2
votes
5answers
189 views
Heap fragmentation and windows memory manager
Hi,
I'm having trouble with memory fragmentation in my program and not being able to allocate very large memory blocks after a while. I've read the related posts on this forum - m …
-1
votes
0answers
57 views
mapping an I/O port to memory? [closed]
I would like to map a memory for the port with address 0x1F000000 and use that for performing some very common bitwise operations. Let me know an efficient method of doing that.
0
votes
7answers
116 views
How to allocate the memory from OS instead of increasing the JVM’s heap size?
I need to detect whether the file I am attaching to an email is exceeding the server limit. I am not allowed to increase the JVM heap size to do this since it is going to affect t …
3
votes
4answers
181 views
List<T> and ArrayList default capacity
I have been looking at .NET's List and ArrayList implementations with Reflector.
When looking at the Add(T item) I ran across this.EnsureCapacity(this._size + 1):
public void Add …
