0
votes
3answers
49 views
iPhone OS memory problem - how to debug?
I have a pretty weird problem in my iPhone app which is, I think, related to memory getting corrupted:
At one point, I need to sort an array, which I do with -[sortArrayUsingFunct …
1
vote
7answers
96 views
What’s the difference between operating system “swap” and “page”? [closed]
What is the difference between these 2 terms in Operating System: swap and page?
0
votes
3answers
73 views
Aligning a class to a class it inherits from? Force all stack alignment? Change sizeof?
I want to have a base class which dictates the alignment of the objects which inherit from it. This works fine for the heap because I can control how that gets allocated, and how a …
7
votes
10answers
240 views
Does stack grow upward or downward?
I have this piece of code in c:
int q=10;
int s=5;
int a[3];
printf("Address of a: %d\n",(int)a);
printf("Address of a[1]: %d\n",(int)&a[1]);
printf("Address o …
0
votes
2answers
100 views
Does garbage collector call Dispose()?
I thought the GC would call Dispose eventually if your program did not but that you should call Dispose() in your program just to make the cleanup deterministic.
However, from my …
0
votes
0answers
11 views
Overcommitting memory on an Ubuntu Server 9.10 running on VMWare Fusion 3.0 (osx) [closed]
I can't set the overcommit_memory from inside the shell:
root@ubuntu:~# /proc/sys/vm/overcommit_memory = 1
-bash: /proc/sys/vm/overcommit_memory: Permission denied
Also I tried …
1
vote
1answer
38 views
Appending to a serialized collection
I'm having a serialized array of some type.
Is there a way to append new objects to this serialized array (in a serialized form) without the need to read the already saved collecti …
0
votes
1answer
28 views
Mysql process uses more than 100% CPU usage and neat about 1 GB of memory
Hi All,
I am running mysql server on the server's which has following specifications -
Dual Xeon Quad Core 2.0, 2048MB RAM, 1x 160gig SATA
Fedora Core + SSH
But mysql process f …
4
votes
9answers
238 views
My (huge) application throws an OutOfMemoryException, now what?
This is by far the most complex software I've built and now it seems to be running out of memory at some point. I haven't done extensive testing yet, because I'm a bit lost how I s …
1
vote
2answers
38 views
Alternatives to mprotect()
The mprotect syscall protects the memory area within page boundary:
int mprotect(void *addr, size_t len, int prot);
Here len should be multiple of pagesize.
Is there any way to …
0
votes
2answers
70 views
How can I reuse objects in JavaScript?
I'm not new to JavaScript, but I've never really had too much in-depth knowledge of how it works. I'm currently developing some software for a cell phone that is done completely in …
1
vote
2answers
76 views
does argument in printf get located in memory?
in c, when I write:
printf("result %d ",72 & 184);
Does "72 & 184" get a a block in memory (for example 72 takes 4 bytes, 184 takes 4 bytes?...)
5
votes
7answers
221 views
Why doesn’t Python’s mmap work with large files?
I am writing a module that amongst other things allows bitwise read access to files. The files can potentially be large (hundreds of GB) so I wrote a simple class that lets me trea …
1
vote
6answers
87 views
How to get the root cause of a memory corruption in a embedded environment ?
Hello,
I have detected a memory corruption in my embedded environment (my program is running on a set top box with a proprietary OS ). but I couldn't get the root cause of it.
the …
0
votes
4answers
103 views
C++ Object, Member’s Memory Position Offset
Is there a better method to establish the positional offset of an object's data member than the following?
class object
{
int a;
char b;
int c;
};
object * o = new object() …
