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)

-1
votes
1answer
49 views

incremental garbage collection simulation using c++ [closed]

i have a project that requires me to simulate increamental garbage collection. This uses the generational algorithm combined with mark and sweep method. So far i have designed a structure as shown in ...
0
votes
1answer
80 views

Best way to assign memory for a program

I am currently working on a code, incremental garbage collection which is just a simulation. What i mean is that in the program, the user wil enter the amount of physical memory to be assigned and ...
0
votes
2answers
58 views

how to release the memory for a structure, pointer for each iteration of loop

I have a structure typedef struct { unsigned ccc; unsigned ddd; unsigned aaa; unsigned bbb; string ddd; } objinfo; which has be involved in the following places in my code: objinfo ...
0
votes
1answer
75 views

Malloc seemingly using less memory than new[]

Could there be any reason why: new X[n]; would consume more memory as compared to: X* x = reinterpret_cast<X*>(malloc(n * sizeof(X)) for(X* p = x; p != x + n; ++p) new (p) X(); for ...
3
votes
1answer
105 views

Why does an empty struct in C# consume memory

I always understood structs (value types) contain exactly the number of bytes as defined in the fields of the structure... however, I did some tests and there seems to be an exception for the empty ...
0
votes
3answers
71 views

Lightweight Map implementation Java (little memory overhead)

I am currently writing some code in java meant to be a little framework for a project which revolves around a database with some billions of entries. I want to keep it high-level and the data ...
0
votes
0answers
7 views

Unit of retained heap in eclipse?

I am getting numeric value of 1294736 in 'retained Heap' column when I use Memory Analyzer in Eclipse-Helios, what is the unit of this numeric value ? is it bytes or kBytes? Same query for shallow ...
2
votes
4answers
95 views

how to avoid objects allocations? how to reuse objects instead of allocating them?

My financical software processes constantly almost the same objects. For example I have such data online: HP 100 1 HP 100 2 HP 100.1 1 etc. I've about 1000 updates every second. Each update is ...
-10
votes
1answer
67 views

how a program maps onto a computer's memory and operations? [closed]

What writes compiler for functions and does it allocate memory for it ?and how? Generally it is easy to visualize that data structures are stored in memory. But how OPERATIONS? like statements in a ...
0
votes
1answer
38 views

How to align a kmalloc() address in linux

I have a requirement in kernel space wherein i have to program device register with 64K aligned address. Currently i am using kmalloc() to allocate memory but not sure how to align this 64K. Does ...
1
vote
0answers
88 views

Computer memory and operations [closed]

I have been reading C++ book by jarne Stroustrup and found following statement "More philosophically, I am among the large group of computer professionals who are of the opinion that if you lack a ...
0
votes
0answers
10 views

Need to take print of Histogram- Eclipse Memory analyzer

I am using Eclipse's Memory Analyzer Tool and I used RegEx to get my classes specific Issues' Histogram Now I want to take a print but I have found no option to do so, I even tried to copy data on ...
0
votes
0answers
39 views

Java Issue: Memory and CPU usage in MAC OS

I am developing a javaFx application for MAC and Windows, and I found that the application is using extremely large memory and cpu usage in MAC compared to Windows. When I see my application's ...
0
votes
5answers
72 views

Lifetime and memory setup of this struct

given a struct in the form ( declared before the main() or after ) struct { ... } bar; I don't know how to manage this and how to treat this kind of object. In general I would like a 360° ...
4
votes
2answers
55 views

Creating big amount of Sitecore Items causes memory leak

I have a Sitecore application where I need to create a large number of Sitecore items in a loop from another system. Below is my testing purpose loop; using (new ...
1
vote
3answers
80 views

Contiguous Memory Allocation

In an application i have to allocate two buffers of 480 MB each. Memory allocation is done using HeapAlloc method. The application works fine in the systems where not many applications are running. ...
1
vote
0answers
28 views

Perl: Devel::Gladiator module and memory management

I have a perl script that needs to run in the background constantly. It consists of several .pm module files and a main .pl file. What the program does is to periodically gather some data, do some ...
1
vote
2answers
31 views

Does the distance between a program's stack and data segment have an effect on CPU caching?

I've read that on linux, program memory layout can be broadly visualized as follows (and I assume it's similar on most other operating systems): Now, I'm not sure if I remember correctly, but I ...
2
votes
3answers
79 views

find unique values from a large file

I have a large file (say 10 terabytes) with stream of MD5 hashes (which contains duplicates), I am given a memory of 10MB(very limited) and unlimited hard disc space. Find all the unique ...
0
votes
1answer
43 views

Arduino F(): what does it actually do

I have asked a similar question before, but I realize that I can't make heads or tails of the macrology and templateness. I'm a C (rather than C++) programmer. What does F() actually do? When does it ...
0
votes
4answers
51 views

Is it better to return a buffer, or return a properly sized string?

I wrote a little string compression algorithm as part of an exercise (basically takes the string "aaaabbbccc" and return "a4b3c3"). Code is as follows: char *compress(char string[]) { char ...
0
votes
1answer
68 views

How virtual addresses work on computers without virtual memory?

I am reading memory management schemes in Operating System.I got confused from this Question How virtual addresses work on computers without virtual memory? Is this possible virtual address can work ...
0
votes
1answer
23 views

python memory error with large text list

I'm trying to get a list of every word, 2-word, and 3-word phrase used in a bunch of product reviews (200K+ reviews). The reviews are provided to me as json objects. I have attempted to remove as ...
-1
votes
0answers
41 views

What are some good articles on memory management and event loops in objective c? [closed]

I'm starting an internship as an app developer, and was told to do as much research as I could. I'm already aware of developer.apple.com and google, and was wondering if anyone had any ...
0
votes
3answers
73 views

Array memory Allocation doesn't work

I have the next classes: class A { }; class B : public A { int num; }; in my main I have: int main() { A* vec; // A is a class with pure virtual functions vec = new B[2]; // want to ...
2
votes
1answer
35 views

Configuring v8's memory management to be smart for a node.js process

We run an XMPP server on node.js, on a machine with around 3.8 GB RAM. Here are the command line parameters we pass while invoking node : /opt/node/bin/node --max-old-space-size=3000 ...
1
vote
1answer
36 views

memory fragmentation in cuda

I am having a memory allocation problem which I can't understand. I am trying to allocate a char array in GPU (I am guessing it is probably a memory fragmentation issue). here is my code, ...
4
votes
1answer
93 views

What's the intent behind C++ Standard requirement that new char[] yields aligned memory?

According to C++03 Standard, 5.3.4/10 For arrays of char and unsigned char, the difference between the result of the new-expression and the address returned by the allocation function shall be an ...
0
votes
1answer
28 views

What happen when a process request more memory than available?

What happen when a process try to allocate more memory than available memory (including virtual memory) ? will that process crash?
-1
votes
1answer
80 views

memory management of C++ string [closed]

Should I release an array of string which is dynamically allocated? my code: cin>>n; string* patterns = new string [n]; for (int i=0; i<n; i++) cin>>patterns[i]; delete [] patterns; ...
0
votes
2answers
43 views

Java Heaps and GC on Multi-Processor machines?

How does Java deal with GC and Heap Allocation on multi-processor machines? In the reading I've done, there doesn't seem to be any difference in the algorithms used between single and multi-processor ...
2
votes
0answers
21 views

Allocating memory for small JITted code

Is there a way to share pages between different invocations of a JIT assembler in a multi-threaded program? I'm building a little JIT engine. It seems the basic principle behind JITting is simple ...
0
votes
0answers
11 views

Memory fragmentation affect sqlite3 performance

I have following sequence in my application. Download contacts from mobile phone using Bluetooth's PBAP. Writing these contacts to a custom database created with SQLite. I configured SQLite with ...
3
votes
2answers
17 views

How does kernel know, which pages in the virtual address space correspond to a swapped out physical page frame?

Consider the following situation: the kernel has exhausted the physical RAM and needs to swap out a page. It picks least recently used page frame and wants to swap its contents out to the disk and ...
0
votes
2answers
43 views

How to reduce memory usage on windows azure shared website?

I have a site hosted on Windows Azure shared websites. It just got suspended for going over memory usage limit of 512MB/hour. I do use .net caching rather heavily (to prevent multiple calls to ...
2
votes
1answer
58 views

When unset() should really be used?

I'm curious about using of unset() language construct just about everywhere, where I took memory or declare some variables (regardless of structure). I mean, when somebody declares variable, when ...
0
votes
2answers
60 views

allocate a new memory for matrix

I have two classes: class A class B: class A I want to create a matrix that each pointer point to B (mat of 1X2). so I defined: A **mat; mat = new A*[1]; *mat = new B[2]; // call the ...
0
votes
4answers
72 views

Segfault — but the pointer isn't NULL [closed]

I am doing something like the following in C: void *initialize() { my_type *ret = malloc(sizeof(my_type)); return (void*)ret; } void test() { my_type* ret = (mytype*)initialize(); ...
0
votes
3answers
77 views

why cant i manage ~382MB of memory when i have it available?

OBJECTIVE: manage a unsigned long tomBOLA[5][10000000]; $top gives me: top - 14:05:35 up 4:06, 4 users, load average: 0.46, 0.48, 0.44 Tasks: 182 total, 1 running, 180 sleeping, 1 stopped, ...
3
votes
1answer
42 views

does python stores similar objects at contiguous memory locations?

Does Python stores similar objects at memory locations nearer to each other? Because id of similar objects, say lists and tuples, are nearer to each other than an object of type str.
0
votes
0answers
32 views

mutableCopyWithZone: is causing memory leak.How to fix the memory leak.I am not using ARC

Very Good Afternoon I am facing memory leak problem due to mutableCopyWithZone: method.The following will tell that wwe are allocating and giving mutable copy of an object.So definitely its retain ...
1
vote
2answers
147 views

Performance: better to inizialize variable or just fill it?

Let's say i have a function that is called 10 times a second, something like: void RxData(System::Byte *Data){} in this function i want to fill a struct with *Data, where the struct is like: ...
0
votes
2answers
67 views

Proper memory management when invoking a delegate callback that may cause object to be released

I'm trying to figure out the best practice for memory management around invoking a delegate callback. One issue I had seen in the past is that invoking a delegate callback may cause the object to be ...
0
votes
3answers
48 views

Out of Memory on Bitmap Android

I want to make implement this in android For this, I have to load images from asset folder and I am making two HorizontalScrollView in xml file and load dynamically ImageView in it. For loading ...
0
votes
1answer
26 views

Why does available memory varies while no launched application?

I have an android application from which we can launch other installed applications.This have a background service which execute always while running my application.When testing on some devices ...
1
vote
1answer
26 views

Declare and allocate memory for an array of structures in C

I'm trying to declare and allocate memory for an array of structures defined as follows: typedef struct y{ int count; char *word; } hstruct What I have right now is: hstruct *final_list; ...
0
votes
2answers
63 views

Do c++ values created in an initialization list go on the stack?

In other words, is the following code valid? -- It works with gcc 4.7, however, I am not sure is it in the standard or only implementation dependent. struct A { int data[3] = { 1, 2, 3 }; }; ...
3
votes
5answers
80 views

Which is better in C allocating/deallocating memory of using a local variable? and Why?

If I need to do string manipulation or manipulating any kind of arrays be it stantard types like int or a self defined data structure. What is better local variable or dynamically allocating and ...
0
votes
1answer
36 views

Out of memory error when nesting gridview inside listview

I'm trying to add a GridView of images (ImageView) for my android application. I've successfully implemented lazy loading and caching of images and all of my high quality images work flawlessly when I ...
0
votes
2answers
44 views

How is the validity of pointer comparisons within an array ensured?

The C standard guarantees the validity of a pointer comparison when both point to elements of the same array, but how does that typically get ensured in a system? The compiler might let you choose ...

1 2 3 4 5 223