Memory management is the act of managing computer memory. The essential requirement of memory management is to provide ways to dynamically allocate portions of memory to programs at their request, and freeing it for reuse when no longer needed. This is critical to the computer system.

learn more… | top users | synonyms (2)

0
votes
0answers
14 views

FLASHING IMAGE(.img) IN SDCARD

Every time i try to copy a directory along with its contents to my sdcard it shows different disk usage. to copy the directory i use sudo cp -a folder-name/* /media/system/ while being in the ...
0
votes
3answers
17 views

Memory allocation error - malloc: cannot convert void* to structure pointer

I am getting this error error C2440: '=' : cannot convert from 'void *' to 'TrackedObj *' my TrackedObj structure looks like this : typedef struct { IplImage* hsv; IplImage* hue; ...
1
vote
1answer
16 views

.net memory usage reporting difference between task manager and windbg/sos

I have a .net application. In task manager it showing 249 MB usage in Memory (private working set) column. Then I attach windb and ran !address –summary command. Below is its result. The memory usage ...
-1
votes
1answer
64 views

how memory is being allocated in c for unsigned short

main() { while(1) { if(j==7) { unsigned short Alphabet[10]; //what is size of this variable /* if i came out of this loop will the memory allocated be cleared? if not then how ...
0
votes
0answers
3 views

Flushing a Gembox Spreadsheet object to a stream while reading from a DataReader

Here's the scenario: I have around 400k records in a SQL Server 2008 R2 database that I want to export to an XLSX spreadsheet. The application is an ASP.NET 4.0 web application I tried using a ...
-1
votes
1answer
29 views

How to use a mmap file mapping for variables

I'm currently experimenting with IPC via mmap on Unix. So far, I'm able to map a sparse-file of 10MB into the RAM and access it reading and writing from two separated processes. Awesome :) Now, I'm ...
0
votes
2answers
64 views

Polynomial class with 2d array of terms as data member and uses operator + overloading

A polynomial class is implemented, with 2 D array of terms, and number of terms as data members. array rows are coefficients and array columns are exponents. we aim to overload + operator to do ...
1
vote
1answer
70 views

glibc detected-double free or corruption

I have the following function which reads a buffer from a serial device, get some tokens and print these tokens every 10 seconds. I want these results to save them in a data.txt which I created in my ...
5
votes
2answers
118 views

Avoid creating multiple copies of code in memory

I'm new to developing on embedded systems and am not used to having very little program memory (16kB in this case) to play with. I would like to be able to create global variables, arrays, and ...
0
votes
1answer
104 views

Case classes memory consumption

I have the code that defines some entity structure, for example: case class EntityDefinition(id: UUID, name: String, propertyDefinitions: ...
1
vote
1answer
43 views

Memory leak in CABasicAnimation

The following code points to a memory allocation leak (using the allocation tool in profiler) - Can someone point out why - I am using a CABAsicAnimation to rotate a UIImageView ...
0
votes
1answer
51 views

Resizing string arrays that may be too big

Some background: I'm writing a C function that reads text from a file into a dynamically reallocated array. I start off with BUF_SIZE character, read until I've hit the limit, then reallocate. When ...
2
votes
1answer
29 views

is it retain cycle in objective of the block function?

[UIView animateWithDuration:0.2 delay:0.0f options:UIViewAnimationOptionCurveEaseIn animations:^{ ...
0
votes
0answers
22 views

Retained size of Javascript Object full of Booleans

I am new to using Chrome's profiler. So this might be a misinterpretation of the results I'm getting. If I open Chromes profiler and take a heap snapshot of the following webpage I notice that obj3, ...
0
votes
0answers
50 views

UIWebView and memory management

In my app there are times when I display a UIWebView to display a web page. When I create the UIWebView it takes around 60 mb in vm. After deleting all the pointers to the UIWebView it doesn't free ...
1
vote
1answer
40 views

Anyone use CFAllocatorSetDefault succesfully in an iPhone app?

I wish to replace the default CFAllocator in my iPhone app with my own implementation. I want to control the memory allocated by the UIWebView since it seems to hold on to so much memory after loading ...
11
votes
1answer
153 views

How does the memory management of closures in Scala work?

Scala allows closure like def newCounter = { var a=0 () => {a+=1;a} } which defines a function that on every call returns a new independent counter function starting at 1: scala> val ...
0
votes
0answers
37 views

Segmentation fault - pointers and allocations in Bison with Flex

My main problem is I get really dizzy when it comes to pointers and memory allocation, so I dedicate this topic to my ignorance of the subject. If someone can take a look at the following code I'd be ...
11
votes
3answers
218 views

What is the lifecycle of a C++ object? [closed]

I'm a seasoned C developer who is just now getting into C++, and I must admit, I'm very confused about how many ways there are to create, retain, and destroy C++ objects. In C, life is simple: ...
0
votes
2answers
61 views

Updating an UILabel looks like wasting performances

I'm working on a project, where i have to update the text of a UILabel really regularly (0.085f). So, I insert the update of the label in a loop like this : MetresNumber = MetresNumber + 0.25; ...
13
votes
0answers
309 views

concurrent garbage collection for a c++ graph data structure

I have a directed graph data structure used for audio signal processing (see http://audulus.com if you're curious). I would like graph edges to be strong references, so in the absence of cycles, ...
0
votes
0answers
13 views

Received memory warning in ARC based project

I am working with ARC based project. all its working fine, but when I do some activity for for longer time then I am getting warning like : Received memory warning So please suggest me to find ...
1
vote
1answer
16 views

ARC based project is able to Analyze or not?

I am working onxcode 4.6 with ARC based project. but When I am going to do project Analyze, then it's not doing. So please anyone tell me for ARC based project Analyze works or not?
-3
votes
0answers
45 views

Pragma and Compiler depndency [closed]

In the padding it will take memory than it's actual size,but when I use pragma pack It show the actual memory which I used in code. Can anybody tell me how actually pragma do? Is pragma compiler ...
0
votes
1answer
31 views

How to find memory usage of my android application written C++ using NDK

I am porting a game written in C++ to Android using NDK. I need to know how much memory it consumes while running. I am looking for programmatically way to find the memory usage of Android application ...
0
votes
5answers
80 views

C++ Allocate and free memory in function

Consider the following code (building with g++): #include <stdlib.h> #include <stdio.h> typedef struct { int a; int b; char c; } memstr_t; memstr_t *ptt_backup; void ...
0
votes
1answer
15 views

Windows: track memory usage and limit threads

I am writing a Windows based application that uses the OpenCV library for image processing. This is a multi-threaded application and each thread loads an image and processes it. My problem is that ...
0
votes
0answers
43 views

strong weak IBOutlet in iOS 6

The general recommendation was to use weak IBOutlet for the subviews. But now in iOS 6, views are no longer purged with memory warning, so is there any real practical difference between declaring an ...
0
votes
2answers
22 views

Referring to weak self inside a nested block

Suppose I already create a weak self using __weak typeof(self) weakSelf = self; [self doABlockOperation:^{ ... }]; Inside that block, if I nest another block: [weakSelf ...
0
votes
1answer
44 views

obj c class memory management

I have extended UIView in order to implement some unique functionality. Along with this, I have included several objects as properties and defined them in the initialiser as defaults. This means that ...
0
votes
0answers
32 views

How do I clean up dirty memory from CG Image

In my app, it seems like CG image is eating up a lot of dirty memory: Is there any API to call to flush all the dirty image in the memory? In the code I am just resizing the images with this ...
0
votes
1answer
16 views

Change the order on element

I'm now doing an application, where i need to put some elements in the top of the views sometimes. For example, how could i do to make the entire CGRect red and not the green visible here : Could ...
3
votes
1answer
40 views

Loading image resources as RGB 565

I'm trying to lower the memory usage of my app, and I noticed most of it is caused by the activities' backgrounds: in XHDPI, 720*1280*4 = 3.6Mbytes each, and Android doesn't seem to release them as ...
3
votes
4answers
111 views

Are there any practical differences between constructing a string via strdup() and malloc()?

Suppose I want to write a function that will produce a string, and while I can set an upper limit on the size of the string I don’t know in advance exactly how much space the string will take up. I ...
0
votes
1answer
60 views

cudaHostAlloc limitations

I have a system running Windows Server 2012. The system has 128 GB of memory and 6 Nvidia K10 GPUs with 8 GB of memory. I use pinned host memory for all my devices (about 47 GB, 12 * 3.92 GB per ...
2
votes
4answers
73 views

Understanding the use of a temporary object

Maybe a stupid question but I thought I'll ask it anyway since I am still trying to wrap my head around memory management. Is this : 1. ViewController *tViewController = [[ViewController alloc] ...
0
votes
1answer
29 views

receiving memory warning issue in iphone when taking picture from iphone camera

i have a problem while i am taking snap from iphone camera then i receive this error on device console "Received memory warning". while i am pick snap from iphone photo libarary then i dont get any ...
0
votes
0answers
38 views

Sequential read and write on ssd

How can I determine whether the file being read or written are in sequence. Further is there any way to know whether the files written on flash drives are in sequential order. Assume the flash drive ...
0
votes
2answers
85 views

Dynamic Memory Allocation and Memory Leaks

I am writing a matlab mex function using c code. I am having a little trouble freeing allocated memory. I am having trouble with the following code. If I get rid of all the free() lines, the code ...
1
vote
2answers
63 views

Fast allocation of linked list and slow deallocation

I'm a C++ novice and I've run into a frustrating problem - I have this templated LinkedList implementation: template <typename U> class LinkedList : std::iterator<std::input_iterator_tag, ...
0
votes
0answers
25 views

Cplex C++ inferface. How to clean up memory?

Background: The C++ interface of IBM ILOG Cplex allocates and de-allocates memory rather unconventionally: A declaration of an ILO environment IloEnv environment;, followed by a construction of ...
3
votes
2answers
42 views

iOS/iPhone ARC memory management

__weak NSString *strin = [[NSString alloc] initWithFormat:@"hey"] ; NSLog(@"weak %@",strin); //returns weak (null) __weak NSString *strin =@"hey"; NSLog(@"weak %@",strin); //returns weak hey ...
0
votes
0answers
12 views

How SMMU and MMU is related with each other?

As we know for a multicore system , we have dedicated MMU i.e each core is having seperate MMU unit. Could someone put some light on SMMU and what is the need of SMMU ? The ARM System MMU (SMMU) ...
3
votes
1answer
70 views

Does Perl v5.10.1 have memory leaks or how to interpret valgrind

I have a script that has memory leaks. I believe this is so because after I perform undef on my nested objects, the amount of memory in script is unchanged. I have used Devel::Cycle to locate any ...
2
votes
1answer
27 views

android:largeHeap=“true” convention?

I'm writing an image gallery app and I keep running into out of memory errors. I cache all my images but the problem occurs when I try switching between images really fast. I'm assuming the app is ...
0
votes
2answers
42 views

Objective-C: is there any leaks? [closed]

currentSettings - ivar settings - method's parameter here is the method which usually executed many times. ARC is enabled. currentSettings = [[NSMutableDictionary alloc]init]; currentSettings = ...
0
votes
0answers
21 views

XCode Instrument: are Heap growth and Live bytes related?

My project uses ARC, and I use Instruments to profile memory usage. Suppose each time I do an operation (then return to baseline state), the heap growths 1MB. Does that mean if I repeat that operation ...
1
vote
1answer
53 views

Allocating an Array in Memory Manager

I want to successfully allocate an Array in my Memory Manager. I am having a hard time getting the data setup successfully in my Heap. I don't know how to instantiate the elements of the array, and ...
8
votes
3answers
74 views

Free memory from complex objects in Java

I try to do my best to explain my question. Maybe it's a bit abstract. I read some literature about not invoking GC explictly in Java code, finalize method, pointing to null, etc. I have some large ...
3
votes
3answers
70 views

MemoryFailPoint always throws InsufficientMemoryException even when memroy is available

I have written following line to check Insufficient memory while (true) { try { // Check for available memory. memFailPoint = new MemoryFailPoint(250); break; } catch ...

1 2 3 4 5 228