0
votes
2answers
14 views
Address Error in Assembly (ColdFire MCF5307)
Taking my first course in assembly language, I am frustrated with cryptic error messages during debugging... I acknowledge that the following information will not be enough to find …
0
votes
2answers
26 views
C# .. Asynchronous Sockets .. where is the State Object Stored?
Hi all,
A simple question really, but one where I cannot find any anwsers too.
When I execute an Asynchronous Socket operation, such as :
socket.BeginSend
(
new byte[]{6}, …
5
votes
7answers
211 views
How does a program look in memory?
How is a program (e.g. C or C++) arranged in computer memory? I kind of know a little about segments, variables etc, but basically I have no solid understanding of the entire struc …
1
vote
3answers
78 views
interesting OutOfMemoryException with StringBuilder
I have the need to continuously build large strings in a loop and save them to database wich currently occasioanlly yields an OutOfMemoryException.
What is basically going on her …
0
votes
3answers
47 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 …
0
votes
0answers
20 views
Java POI HSSF Memory Handling Question
I have a design question on how to design parsing a large excel file say 1000 x 100 Rows, and about 10 tabs.
Each Tab having a set of records with primary key as the first col. bu …
1
vote
2answers
65 views
Limit Python VM memory
I'm trying to find a way to limit the memory available for the Python VM, as the option "-Xmx" in the Java VM does. (The idea is to be able to play with the MemoryError exception)
…
0
votes
4answers
49 views
Simple read vs write boolean variable performance comparison question
What should be the preferred way by programmers:
1) Only Write:
SomeBoolean = True
2) Read but write only if necessary
If Not SomeBoolean Then SomeBoolean = True
0
votes
3answers
65 views
how do I tell .NET to how much memory it should use? & how much memory it should allocate for a process?
Hello,
I'm aware that .NET doesn't use complete physical memory availabe. I've encountered a System.OutOfMemoryException while the physical memory usage as only 79%. I've run my s …
0
votes
6answers
168 views
malloc() and heap memory
I am getting a strange result in the following C code.
int main()
{
int *p = (int *) malloc(100);
p[120] = 5;
printf("\n %d", p[120]);
}
Since I have allocated only …
2
votes
15answers
401 views
C memcpy() a function
Hi guys,
Is there any method to calculate size of a function? I have a pointer to a function and I have to copy entire function using memcpy. I have to malloc some space and know …
1
vote
1answer
42 views
Is there a gdb (or similar) frontend that will show the program stack visually?
Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.
2
votes
2answers
83 views
Auto-scrolling text box uses more memory than expected (C#, .NET v3.5)
I have an application that logs messages to the screen using a TextBox. The update function uses some Win32 functions to ensure that the box automatically scrolls to the end unless …
0
votes
2answers
70 views
Average php memory usage per request ?
What is your average php memory usage per request . I know lots of people will say that php memory usage depends on the application , but i just want to get general idea about you …
0
votes
0answers
46 views
Boost.Python + OpenGL segmentation faults
I have a (almost) perfectly working C++ code written with Boost.Python. It wraps a shared pointer based structure hierarchy of 3 or 4 classes, nothing terribly complex (i.e. class …
