This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com
0
votes
1answer
42 views
How to get memory “used” by a process in Linux?
My program wants to detect how much memory it's using & issue a warning if it goes larger than a threshold. I don't care about memory that has been allocated but never accessed, since that's not ...
0
votes
0answers
14 views
Oracle use memory without any processes
After Oracle instance crash there is no one running process, but memory still doesn't free.
What need to do in Linux OS/Win?
0
votes
2answers
54 views
Multi Threaded Windows Application uses more memory when idle
I've got a technical question around memory usage and multi-threaded applications.
My scenario is that I've built a server application (in C#) that is constantly running and updating DB info ...
1
vote
0answers
54 views
Java - Memory Leak? [duplicate]
I have a Java server that is collecting tons of data and holds it just for a short while. New data is replacing old data.
The server can be stopped so that the socket is closed and port free for use. ...
2
votes
3answers
80 views
Using pointers to move between elements in struct
This is closely related to this question.
I am writing some USB code using libusb. Looking at the source code of the library I see they are using pointers to parse data and fill structs.
Example:
...
-1
votes
1answer
28 views
python - How much space does a subclass require in memory
Let's say I create some class named A() with two custom methods in it.
When I instantiate it, an object will be created in some address in the memory representinf this instance.
Now I create a ...
2
votes
1answer
36 views
Using PHP ini_set “memory_limit” safely
I currently have a script that is going to be running for quite a long time (forked in its own separate process though). It's not going to be running very often but when it does it's going to use ...
0
votes
3answers
48 views
mem compare arrays to get number of matching bytes
int a[10];
int b[10];
memcmp(a, b, sizeof(int) * 10);
memcmp() only tells us which memory block is bigger/smaller since it just returns -1,0,+1.
Is there a way to know number of matching elements in ...
1
vote
1answer
29 views
Trying to debug memory leaks using Visual Studio 2008 Heap Debugger
We're trying to track down memory leaks in our Visual Studio C++ application. The application is unmanaged. I've been trying to use the VS Heap Debugger, to display file locations of leaked memory.
...
10
votes
7answers
323 views
How to determine if returned pointer is on the stack or heap
I have a plugin architecture, where I call functions in a dynamic library and they return me a char* which is the answer, it is used at some later stage.
This is the signature of a plugin function:
...
0
votes
0answers
10 views
CheatEngine NFS memory detection
I just started playing NFSUG2 and am interested how to detect memory adresses such as:
speed,is the rice won and etc. so i try to make a good trainer. Do you have any ideas where i can find the ...
0
votes
1answer
68 views
A strange use of c++ keyword of new
I met with some codes as below.
char *buffer = new char[sizeof(PoolThread) * numThreads];
m_threads = reinterpret_cast<PoolThread*>(buffer);
for (int i = 0; i < numThreads; i++)
{
new ...
1
vote
2answers
41 views
Casting an inherited class back to the base class
What happens to the data stored in the fields of a child class if and instance of that child class is cast back to the inherited class? And how does this work in memory?
public abstract class ...
0
votes
0answers
26 views
Android Eclipse DDMS > Heap > Cause GC greyed out
I'm unable to click the Cause GC button in the Heap tab under the DDMS Perspective in Eclipse because it is greyed out.
I'm using ADT v22 (the Eclipse/Android/ADT package) on OS X. Device I'm using ...
0
votes
0answers
23 views
How to pack huge randomly accessed array on the GPU?
I have a huge array which I need to access on the GPU. The array is visible to each thread and any thread can access any memory location of the array ( hence its in global memory ) . I have sufficient ...
0
votes
0answers
33 views
is uncached memory always contiguous?
I am trying to understand the internals of cached and uncached memory from linux perspective.
Is an uncached memory always contiguous? How does the linux handle internally between the cached and ...
1
vote
2answers
31 views
Memory size of function handle - MATLAB
One of the fields in my structure is a function handle:
strct.handl=@(arg1,arg2)handl(arg1,arg2,par1,par2)
Now, arg1 and arg2 are defined every time I use the handle, but par1 and par2 are stored ...
0
votes
0answers
7 views
Instruction Address Inside The EIP Register
Can any one let me know if the instruction address inside the eip register is the physical address of that instruction? or it is just the virtual address?
Thanks in advance
60
votes
4answers
1k views
What is “cache-friendly” code?
Could someone possibly give an example of "cache unfriendly code" and the "cache friendly" version of that code?
How can I make sure I write cache-efficient code? What are the do's and don't's? Any ...
0
votes
0answers
5 views
Details of Memory Controller
According to dmidecode manual page, using the option -t 5 must report the information about the memory controller module. I tried it on my machine, however, nothing was reported!
What is the problem? ...
0
votes
0answers
16 views
ZwAllocateVirtualMemory equivalent in linux
anybody know how the equivalent for ZwAllocateVirtualMemory in linux ? I want a linux device driver to allocate virtual address space in a process.
0
votes
1answer
24 views
Best way to upload photos with php : Allowed memory size of 67108864 bytes exhausted
On my website, there is the possibility for users to upload their own photos. The php code stores them in an image, makes a miniature, renames them and stores them on the website. The photos have to ...
1
vote
0answers
14 views
looking for ways of avoiding python json.dumps rrunning out of memory
I am running a python script on an Ubuntu box which collects a lot of data into a tree-like JSON structure and then dumps it all at once into a file. It crashes for large trees with the following ...
0
votes
1answer
41 views
Reaching memory limit in R
I am having a strange issue in R.
I have a large data.table dataTs1 :
Classes ‘data.table’ and 'data.frame': 419172 obs. of 5 variables:
$ TimeStamp: chr "01MAR13:07:15:00" "01MAR13:07:16:00" ...
0
votes
1answer
28 views
Display cpu,memory info in android application
I'm writing an android application displays some info about cpu, memory etc etc.. How can i display theese infos on the screen? With the textview or other way?
0
votes
2answers
66 views
Obective C create a C array property
I'd like to create a property made by an array of CGRect pointers, the number is not defined at the beginning, so I'd like to create a pointer of to a zone o memory that contains the beginning of this ...
1
vote
1answer
40 views
Memory build up in a java program GapContent$MarkData
I am currently developing an application that need to be very fast executing about every 20ms (yeah I know, should not have taken Java in the first place). I worked a lot optimizing the code so it ...
0
votes
2answers
33 views
Does iOS retrieve leak memory?
Supposed my app alloc memory every ViewDidLoad and not release. And my app does some work that cause memory fragmented.
Does iOS retrieve that leak memory, or that leak memory is untouched until next ...
0
votes
1answer
25 views
Provider contacts is always in use and because Android Core Apps (android.process.acore) not released after querying Contacts Provider
My app queries the contacts content provider to display a list of frequent contacts (using the Contacts.CONTENT_STREQUENT_URI) and their photos (Data.CONTENT_URI). The cursor returned from the query ...
0
votes
1answer
16 views
GStreamer memory buffer usage
I'm experimenting with gstreamer on an embedded system and I'm wondering if there is a way to determine the maximum amount amount of memory gstreamer will use. If I have a simple source -> filter ...
1
vote
1answer
36 views
What does the usage of mprotect() as an ASM syscall look like with respect to its third argument?
In i386 architecture Linux I know that you can build a syscall by loading the identity of the syscall into EAX and the arguments into EBX, ECX, etc.
I am confused by what the third argument for ...
1
vote
1answer
53 views
Python memory error for a large data set
I want to generate a 'bag of words' matrix containing documents with the corresponding counts for the words in the document. In order to do this I run below code for initialising the bag of words ...
1
vote
2answers
61 views
How do you define a block of executable memory in windows?
I know that Linux supports the mmap system command for being able to define a block of executable memory. How do you do the same thing in windows? I imagine there is some windows equivalent function ...
-6
votes
0answers
28 views
Dynamically allocating space for a new ArrayList (C) [closed]
the function ArrayList *createArrayList(int length); is supposed to dynamically allocate space for a new ArrayList. Initialize its internal array to be of length length or DEFAULT_INIT_LEN, whichever ...
-1
votes
0answers
34 views
Linux Project Program Help for a NOOB [closed]
Need to do for school something that involves: "Your final project must include at least two components from our study, which are CPU (ALU), memory (memory address, stack), and interface ...
0
votes
3answers
25 views
Is deallocation of multiple large bunches of memory worth it?
Say for instance I write a program which allocates a bunch of large objects when it is initialized. Then the program runs for awhile, perhaps indefinitely, and when it's time to terminate, each of the ...
0
votes
1answer
34 views
How can I get around memory problems in R?
I'm applying the function image(cp) to gps data but when I do so it throws up the following error
Error in image(as(x, "SpatialGridDataFrame"), ...) :
error in evaluating the argument 'x' in ...
0
votes
2answers
42 views
How to store information: a database or your apps memory? [closed]
I've been wondering about this a lot.
So I made a database for my Android application. What is the big advantage to this over just making all the information into strings and retrieving them that ...
0
votes
1answer
30 views
Linux loop script: Cannot allocate memory
I face a huge problem with a script on linux.
I work on an apache2 server and I have to execute a php script every seconds to update the database (yes, every second, I'm sure).
To do that, I created ...
0
votes
2answers
35 views
PHPExcel memory still exhausted even with cell caching - other solutions
<b>Fatal error</b>: Allowed memory size of 134217728 bytes exhausted (tried to allocate 78 bytes) in ...
1
vote
1answer
54 views
C Segfaults when trying to free memory that no longer needs to be used
I am working on a circular buffer program in C. The buffer has to be able to expand and shrink depending on certain conditions that are checked each time the buffer is updated with a new quote (the ...
-1
votes
1answer
38 views
Tomcat 7, best memory setting , jrockit jvm 64 bit [closed]
i need help to configure/tune jvm setting for tomcat 7.
I use jrockit :
java.version 1.6.0_37
java.vm.info compiled mode
java.vm.name Oracle JRockit(R)
java.vm.specification.name Java ...
0
votes
0answers
35 views
pointers and linked list with shared memory
I want to get 2 programs to communicate, one (server) would store datas, and the other (client) would just access it.
I'll have to use a linked list to store datas because it won't stop storing, and ...
0
votes
1answer
34 views
virtual address page replacement with LRU policy?
How can I use LRU page replacement to the following virtual addresses ??
0xdeadbeef,
0xcdacdacd,
0xbad2ceed,
0xcdacd123,
0xdeadb341,
0x34312315
How many page fault will be there??
...
5
votes
1answer
50 views
Is all program code loaded into the text\code section\segment of memory
I have started to look at c programming and whilst I am not a complete beginner (I have knowledge of java and web development) there are a lot of things I do not understand.
My question is about when ...
1
vote
2answers
42 views
How to get % Memory usage of a process using Performnace Counter in C#
I want to get the % of memory used by a process.
Right now, I'm able to get only the available memory by using:
PerformanceCounter pc = new PerformanceCounter("Memory", "Available KBytes");
Is ...
-2
votes
0answers
13 views
Memory Limits of Virtual Intances in Iaas depending upon Memory of Physical Machines? [closed]
Can we create virtual machine(virtual instance) of 8 GB memory in the cloud (IaaS) built over 6 or more physical machines containing only 4GB of physical memory each?
0
votes
2answers
34 views
Did virtual devices have temporary memory?
While I was using a virtual device to test my application I noticed that sometimes, after the device has been turned off for a while (for example: I used the device to test my app today; turned off ...
0
votes
1answer
28 views
Exception in thread “main” java.lang.OutOfMemoryError: Java heap space with BASE64Decoder [closed]
I want to create message signing and verifying software written in java.
thus, I decided to use some code from the Internet.
While codes have no syntax error, it shows java heap space error.
...
0
votes
2answers
75 views
How to make three processes work in C/C++
I have to make three processes A, B and C that use shared memory. A and B write 100 integers in the shared memory, and C reads them and writes them to a binary file. That is what I made, but it ...



