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.
0
votes
0answers
10 views
3
votes
2answers
88 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
90 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
41 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
50 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
26 views
is it retain cycle in objective of the block function?
[UIView animateWithDuration:0.2
delay:0.0f
options:UIViewAnimationOptionCurveEaseIn
animations:^{
...
0
votes
0answers
21 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
43 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 ...
11
votes
1answer
143 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
34 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
215 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;
...
7
votes
0answers
178 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
12 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
15 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
79 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
42 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
21 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
43 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
31 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
39 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
110 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
59 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
28 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
62 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
21 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
11 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
68 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
26 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
20 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
52 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
68 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
votes
3answers
56 views
Error on large dimension value - Run-Time Check Failure #2 - Stack around the variable 'mat' was corrupted
I am getting following error:
"Run-Time Check Failure #2 - Stack around the variable 'mat' was corrupted" after giving result in console.
However, What I observed that, CreateMatrix function throws ...
2
votes
1answer
29 views
ReleaseComObject does not work in static method
While testing my code, I came across a behavior that I find strange.
This:
if (_sampGrabber != null)
{
Marshal.ReleaseComObject(_sampGrabber);
_sampGrabber = null;
}
yields ...
0
votes
0answers
4 views
Reason for the difference in the number of DRAM Channel 0 open commands issued for read and write operations
It is seen that for a memory read of 64 bytes from DDR3 SDRAM of 1Gb, about 16 DRAM Channel 0 open commands are issued, whereas for a memory write, only 0.52 DRAM Channel 0 open commands are issued ...
1
vote
1answer
45 views
Memory management in javascript jquery mobile with phonegap
I'm building a jquery mobile + phonegap app to bundle for iOS. The JQM site/app works as it should on a web browser. However, when bundled with phonegap and tested on a phone, it seems to forget ...
-1
votes
1answer
18 views
How am I supposed to release an imbedded Core Foundation object?
This is the code:
- (void) drawToday {
int x;
int y;
int day;
CFGregorianDate today = CFAbsoluteTimeGetGregorianDate(currentTime, CFTimeZoneCopyDefault());
if(today.month == currentMonthDate.month ...
1
vote
2answers
26 views
linkers, absolute references, and a processes address space
I'm quite confused reading up on relocating absolute references, shared libraries and position-independent code. I hypothesize that I don't know enough yet about an individual processess address ...
-1
votes
3answers
132 views
Dynamic address relocation of C++ objects
I'm wondering if it's possible to address a class with a dynamic base address as opposed to a static one. The basic idea is as follows:
Have an object A defined like so:
class A
{
//member ...
1
vote
0answers
24 views
MAXMEM macro - Linux Memory Management
I read Professional Linux Kernel Architechture. They said: "MAXMEM denotes the maximum possible amount of physical RAM that can be directly addressed by the kernel"
In kernel source
#define MAXMEM ...






