This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com

learn more… | top users | synonyms

-3
votes
0answers
26 views

JVM not release the RAM memory [closed]

I need help with the next situation. I have settings in my JVM with the following parameters: -XX:+CMSIncrementalMode -XX:+UseCompressedOops -XX:+UseConcMarkSweepGC -XX:MaxPermSize=512m ...
0
votes
1answer
39 views

Read from another CPU's memory without “asking” for it, (DMA)

I was thinking a bit about DMA. Is it possible to read from a CPU's memory without having the CPU deliver it via some form of communication? Like "reversed DMA". The project for which I'm asking ...
0
votes
1answer
20 views

How to monitor free memory using newrelic with/out buffers/cached

I am evaluating newrelic for server monitoring and could not find how to monitor the memory used by the operating system to buffer files.
0
votes
2answers
99 views

Reduce app's memory usage in PhoneGap

I have created app in PhoneGap which is just a simple digital clock written in HTML5 and JavaScript. The app eats ~12MB in v2.3 and ~18MB memory in v4.0+. Considering there is very little animation, ...
1
vote
3answers
47 views

Show a lot of images with really low memory using in C#?

I have a form in which I dynamically create 8 PictureBoxes in a Panel in which I show 8 different images, one every PictureBox. Images are 50Kb Jpeg. The problem is that I want to allow user to see ...
0
votes
1answer
34 views

memory used by glassfish vs heap dump

I am trying to find memory leak in an application. It's a Java EE app running on GlassFish 2 with Hibernate and Lucene. System monitor tells me that the memory used by GlassFish is more than 4gb. But ...
3
votes
1answer
58 views

Python list anomalous memory usage

I'm working on a project that involves accessing data from a large list that's kept in memory. Because the list is quite voluminous (millions of lines) I keep an eye on how much memory is being used. ...
0
votes
1answer
74 views

How to allocate memory using this malloc statement?

I have this method that reads a file. A matrix to be more specific where the first two numbers are the rows and the columns. However when i try to allocate the memory using malloc and using the rows ...
0
votes
0answers
19 views

Why MemoryError When using Networkx barabasi-albert graph builder?

I'm using the NetworkX graph builder to build a barabasi-albert graph. I get a memoryError with even the simplest graph -- a range of integers from 1 to 100. workerIndex = range(100) ...
0
votes
1answer
131 views

Read eax register

I would like to know if it is possible to read the eax register of another process immediately after an assembly instruction has been executed. In my case I have the following assembly code: mov ...
0
votes
1answer
45 views

ERROR: out of shared memory

I have a query that inserts a given number of test records. It looks something like this: CREATE OR REPLACE FUNCTION _miscRandomizer(vNumberOfRecords int) RETURNS void AS $$ declare -- declare ...
0
votes
1answer
57 views

memory usage in windows vs Linux [closed]

I ran the same C program and Perl program and Ada program on Windows 8 and Red Hat Linux 5.2. The programs are using twice as much memory on the windows system. Any ideas why? Sorry it is a ...
-4
votes
4answers
59 views

Assigning Memory to a 2-d Array [closed]

I am assigning memory to 2-d array for which,i know the depth int *array[size]; for(int i=0;;i++) { array[i]=new int[10]; } Am I doing it right?
0
votes
1answer
69 views

Stm32f4 Memory Jumping

I am working with the stm32f4 Discovery board and I am trying to jump to a section of flash where I will begin executing another program there.The variable ApplicationAddress is 0x08008000. When my ...
3
votes
2answers
117 views

Take screensot and save android

I'm a very new android developer with a basic understanding of java. I've undertaken a large project and I've hit a problem I can seem to fix. Basically my problem has three different parts: ...
1
vote
1answer
16 views

Declaring variable in class header VS. constantly declaring a variable in update cycle

Sorry if the title is a little vague, my terminology isn't that great yet. What I'm t?rying to say is: which one is better in terms of memory management and if there is any difference Or which one is ...
-2
votes
0answers
46 views

Formula for calculating Index and Tag bits [closed]

I need to calculate Cache Hits and Misses with the given values: Main Memory Size, suppose 375MB Cache Memory Size suppose 1024KB Block Size 32Bit Set associativity 2 Currently I am using the ...
1
vote
0answers
40 views

Java service memory usage varying

I created a service which reads every 10 seconds(Thread.sleep) new messages from an online text file(chat). When I look in the settings the memory usage starts at 4.0MB which is ok, but every minute ...
0
votes
1answer
12 views

Virtual vs Physical Address

I am a little unsure about the physical and virtual address concepts. Here is what I have understood: The virtual address of the instructions in an already compiled (exe) application file are fixed ...
5
votes
1answer
81 views

mudflap throws core dump when using new() operator to allocate memory

Here is my code snippet. int main() { int *var = new int(6); cout<<"Hello\n"; delete var; return 0; } when compiled with mudflap as $export MUDFLAP_OPTIONS="-print-leaks ...
0
votes
0answers
37 views

Can I write Java code (client) that invoke low-level API in Jikes rvm?

I am new to Jikes rvm. Is is possiable for us to write Java code that invokes Jikes rvm API such as the APIs from package "magic"? Can I use these APIs to do low level stuff, like access memory ...
0
votes
0answers
50 views

memory leak on start and stop of an application

I am facing the issue of memory leak on start stop of an application. I referred many other threads and finally used jHat to find the reason for memory leak. Most of the memory leaks were due to the ...
0
votes
1answer
62 views

SIGTRAP when freeing first element of a Queue

I'm in trouble, everytime my function calls "desenfileirar" I had some breakpoints. Can anyone help me? I need to print a bidimensional array that means the path traveled by an ant. It needs to start ...
-1
votes
0answers
17 views

Logging the Details of Memory Addresses

Is anybody aware of a tool (no matter in Linux or windows) which can reveal the details (bank,row,column) of accessed addresses in the memory? Any help is appreciated
4
votes
4answers
86 views

Memory confusion

I have an app in which I'm trying to create a very large "cube" of bytes. A 3 dimensional array (~1000x1000x500) saves all of the values that I'm interested in - but I'm getting out of memory ...
1
vote
1answer
41 views

UART to SD Card

I'm trying to implement a method to write data to an SD card from a dsPIC33F. I currently can transmit the data via UART to Bluetooth and USB, but I can't find anything online in regards to writing to ...
0
votes
1answer
21 views

actionscript 3.0 how to clear RAM

i'm using actionscript p2p application to transfer files between peers. all received files byteArrays are stored in one array like this one: recvFiles[peerID][fileID].data:ByteArray = ...
0
votes
0answers
4 views

How can I instrument (e.g. using library calls) a program to measure the bytes transferred between main memory and last-level cache?

My goal is to measure the memory traffic between main memory and last-level cache of a program. I have got the source code, so instrumentation at source code level is possible. It runs on a GNU/Linux ...
1
vote
1answer
41 views

Should I unset my PHP array values?

Does garbage collection on array values work like the garbage collection on normal variables? I.e. will the complete $array be kept in memory until each array key is unset or the whole array no ...
1
vote
2answers
17 views

Do unassigned properties take up memory in a class?

This might be a bit of a noob question, but I need to ask it anyway. Consider the following two classes public class Book{ public string Title; public string Author; public string ISBN; ...
2
votes
1answer
46 views

Size of class in bytes

Is there a method to see the size of allocated memory for a class in ruby? I have built a custom class and I would like to know its size in memory. So is there a function with the likeness of ...
-1
votes
1answer
36 views

Export a large number of data and memory overflow

I import more than one hundred data use eclipse in the computer and no problem. But when I deploy on application server it will out of memory, and I copy the local tomcat. what is this problem? The ...
2
votes
1answer
63 views

Why do byte spills occur and what do they achieve?

What is a byte spill? When I dump the x86 ASM from an LLVM intermediate representation generated from a C program, there are numerous spills, usually of a 4 byte size. I cannot figure out why they ...
0
votes
0answers
22 views

how to detect ECC error in memroy testing under UEFI shell

I wrote a EFI binary file to test physical DIMMs under UEFI shell, the process is quite simple - first write a test pattern in to a physical address, then read it out and compare with the original ...
0
votes
2answers
30 views

variable storage and php out of memory error [closed]

suppose PHP memory limit is set to 128M now suppose you do $v = "128 M worth of data"; will this cause a PHP out of memory error to occur?
0
votes
2answers
93 views

Arrays implementation in erlang

My question is, how are arrays implemented in Erlang, as opposed to lists. With immutable types doing things like, move ([X | Xs], Ys) -> [X | Ys]. Ls = move([1,2,3], [2,3,4]) would take ...
1
vote
0answers
15 views

Creating a separate log for each Passenger process in a Rails app

I'm trying to determine the cause of high app server instance memory usage and to do so I need a separate log for each running Passenger process (e.g., production_18204.log). Is there a simple way to ...
0
votes
3answers
94 views

Read from a file (.txt) and save into a char* C

I have a file.txt that it contais, for example, "This is a txt file" (this content can be variable) and I need a function that reads file.txt and save its content into a char*. file.txt contains -> ...
0
votes
3answers
86 views

FIFO String Allocation in C#

I am currently having a problem with the program that I'm creating right now. I already looked for answers, but it's different from what I want to happen because the given here are strings. We were ...
-1
votes
1answer
57 views

How to keep an object in memory in Scala?

Is it possible in Scala to create an object and keep it in memory? I hope this question doesn't exist yet. I have not found anything Scala specific at least. The problem is, that I want to read an ...
5
votes
1answer
82 views

Codeigniter optimization / best place to load models is?

I am working on a large project, made in Codeigniter and I am wondering if there is difference in the performance of an controller dependent, where the required models are loaded. The question: ...
2
votes
6answers
133 views

Ruby String operations on HUGE String

I have a string that is ~10 GB in size (huge RAM usage ofc..). The thing is, I need to perform string operations like gsub and split on it. I noticed that Ruby will just "stop working" at some point ...
2
votes
2answers
80 views

memory layout for packed and unpacked structure

I have 2 structures defined like below. #include<stdint.h> typedef struct { uint32_t a; uint8_t b; uint8_t pad[3]; //padding here is added intentionally. uint32_t c; }A; typedef ...
0
votes
1answer
32 views

Image animation - memory issues

I’m searching for the best and easiest way to animate images on iPhone. I have about 75 images that needs to be animated in full screen when the user pushes a button. I have tried: ...
0
votes
1answer
62 views

Memory allocation of array in a struct

I read the code of redis, it define a struct: typedef struct zskiplistNode { robj *obj; double score; struct zskiplistNode *backward; struct zskiplistLevel { struct ...
-1
votes
0answers
21 views

Getting images from memory dump

I am doing some experiments with recovering info from memory. I recently dumped memory into an .img file. So now I want to use it to recover data from it. I used programm called foremost, but it's ...
0
votes
1answer
68 views

c++ free memory allocation in constructor when facing exception

I found some interesting behavior in the case of exception when construct an object: class bookentry { public: bookentry(){ t1.reset(new test1); //0 test1 *t11 = new test1; ...
1
vote
1answer
15 views

Questions about Memory models

When I read the book related to compiler , I saw that there are two major memory models. Register to Register model and Memory to memory model. In the book, it says that register-to-register models ...
2
votes
1answer
38 views

random issues with python flask application on apache

I have an apache webserver which I have setup a website using flask using mod_wsgi. I am having a couple of issues which may or may not be related. With every call to a certain page (which runs a ...
2
votes
1answer
42 views

scikit-learn - silhouette score

I run a clustering algorithm and want to evaluate the result by using silhouette score in scikit-learn. But in the scikit-learn, it needs to calculate the distance matrix: distances = ...

1 2 3 4 5 221