0
votes
1answer
17 views

TLB translation vs cache

I am having a doubt regarding memory management in operating systems.I know that cache is a temporary storage location used to speed up memory accesses whereas TLB is used to speed up translation from ...
9
votes
9answers
429 views

C++ allocates abnormally large amout memory for variables

I recently got to know an integer takes 4 bytes from the memory. First ran this code, and measured the memory usage: int main() { int *pointer; } It took 144KB. Then I modified the code ...
0
votes
1answer
80 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 ...
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 ...
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 ...
2
votes
3answers
105 views

Allocate memory to char *** in C

So, I'm having trouble in allocating memory for a char *** type variable. My objective is to create a matrix of strings and the code I currently have for memory allocation is the following: char ...
2
votes
2answers
86 views

fwrite not return 0 when harddisk is full in linux why?

when hard disk is 100% full, fwrite(say 1000 Bytes) return 0 [Fail , as expected] but when hard disk is has little empty space say 600Bytes , then fwrite (1000 bytes) not return 0 [fail] but return ...
0
votes
0answers
39 views

How to save memory when working wave computations

I am doning some computations with audio data in Python. This used to be working very well until it comes to larger files. To get to the data I read a .wav file with the wave module, then unpack it ...
1
vote
0answers
35 views

Android Java memory usage with AdMob

I am experience som major memory issues with my projekt. If you could throw some advice for me that would be really helpfull.. I'll try to explain my whole usage. In the main activity, the first ...
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 ...
0
votes
2answers
28 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
1answer
64 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; ...
0
votes
2answers
40 views

Is it possible that another program reuses free memory once allocated and later freed by other program already running?

Let’s suppose that I have a Linux (64 bits, Kernel 2.6, glibc 2.4) OS running on a machine with 8Gb of RAM. All referenced programs are C implementations. Program A is started and let’s say that it ...
1
vote
0answers
33 views

Translate physical address to process/virtual address?

I've noticed that one of the cores goes into an infinite loop, leading another core to complain about it and freeze. I have the physical memory address at which it goes into a loop (and is constant ...
1
vote
3answers
91 views

When 32 bit machine can access max of 4GB RAM, how does it access 150GB of HDD [closed]

I understand that the memory size that can be accessed by a 32 bit machine is limited to 4GB. Since there are I/O ports like PCIe, USB, Serial, Parallel, PS/2, Audio I/O, CD drive, floppy drive, ...
0
votes
1answer
46 views

How to choose -Xms / -Xmx values correctly? [closed]

Are there any recommendations on how to choose initial / max heap size for a Java application? Why not to set both to available maximum at once?
1
vote
0answers
26 views

How does paging page tables size of the outer page table?

I understand paging the pages tables does reduces the size of the overall outer page table. But is this solving the problem of reducing space of the pages stored as we also store the actual inner ...
0
votes
1answer
46 views

Getting Memory Usage in percentage (%) in C#

I want to get the Memory Usage of a particular process in percentage (%). Below is the code which I used for CPU. But I am unable to get the same for Memory. There are so many counters in Memory ...
1
vote
1answer
87 views

RabbitMQ Memory Usage grows too high

I am experiencing a problem with rabbitmq 2.8.5. There are 3 queues that messages are published to and they are consumed relatively quickly by the consumers. So the queues aren't big at all. There ...
1
vote
2answers
56 views

Max Memory only 880 MB in Java Program

I'm trying to create a HashMap for a dataset that has 4400 records and 27000 features. I have increased the max limit to 4G in the .ini file of eclipse. But, when I print the maxMemory in the java ...
0
votes
3answers
54 views

iOS - View high resolution image

I want to display a high resolution image in imageview. Here is what i do Prepare UIImage in the background When the file is loaded, switch to main thread Display the image [ by using UIImageView's ...
-2
votes
0answers
40 views

GPU Memory profiler

CUDA Memory leaks, we are looking for a profiler which will give us more details about the gpu memory consumption. can anyone recommend on a gpu memory profiler something like ANTS Profiler for CPU ...
1
vote
1answer
105 views

iOS app exhausting memory during download of very large file

I know variations of my question have been asked in one form or another many times on here - I've been searching these posts extensively for days and I think my problem is unique. Allow me to ...
5
votes
1answer
56 views

Running an intensive batch process in PHP, and avoiding memory exhaustion

I have several thousand records (stored in in a table in a MYSQL table) that I need to "batch process." All of the records contain a large JSON. In some cases, the JSON is over 1MB (yes, my DB is well ...
1
vote
0answers
59 views

What is the Remainder in the Eclipse Memory Analyser main pie chart?

I just started learning about memory management for Android. After doing a memory dump on the application I am working on and analyzing it with Eclipse Memory Analyzer, I found out that 37MB (out of ...
0
votes
1answer
49 views

Using inactive memory to my advantage. What is this code storing in RAM or inactive memory?

I'm developing on OS X 10.8.3. The following code is simple. It can perform two operations. If the read function is uncommented then the program will open the file at "address" and transfer all of its ...
0
votes
3answers
55 views

OutOfMemory Exception on two PCs [closed]

Given two PCs Core i5 3rd Gen 4GB RAM (Dell Optiflex 7010) Core i7 2nd Gen 16GB RAM (Samsung 700G7C) Update 1 - what's interesting, reducing the number of T's properties by two times changes ...
1
vote
0answers
20 views

can we forcibily place data in a specific cache

I am trying to forcibly put data into a cache(either L1, L2 or L3). After that i will create two threads and perform some read/write operations by accessing data present in the cache and measure the ...
0
votes
0answers
27 views

find the cache data accessed by thread

I read from wiki that "Data is transferred between memory and cache in blocks of fixed size, called cache lines. When a cache line is copied from memory into the cache, a cache entry is created. The ...
0
votes
0answers
47 views

How can I detect memory leaks with dev c++?

I'm using windows and dev c++. How can i detect memory leaks? The only memory leak detector for window I found so far is visual memory detector.
0
votes
0answers
25 views

PKMAP_BASE is 0xBFE00000. How kernel accesses pkmap space?

Below is boot log when kernel starts. <5>[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) <5>[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) ...
4
votes
1answer
86 views

Java GC tuning for strings

Profiling the application I figured out that there are a lot of strings on heap. In my situation, strings are created on heap and not interned and they are not literals. Are there are specific GC ...
1
vote
0answers
196 views

Google Map Api v2 Outof memory error Android

I am using google map api v2 for android. Here is my code of fragment class mapview.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
2
votes
1answer
76 views

Memory allocation in string concatenation in C#

Let, string a = “Test”; string b = “test 2”; string c = a + b The output of c is "Testtest 2" I would like to know how is the memory allocated?
3
votes
1answer
162 views

Out of bound address when directly reading from array

I am developing a CUDA application which has some routines for allocation and deallocation of arrays in shared memory. In this application (that, I am sorry, I cannot make available), I have a class ...
2
votes
2answers
60 views

Statistics of young and tenured generation memory in java

Is there any way in Java we can get access to the current state of memory like, how much of tenured memory or young generation memory is used currently by the JVM. Doing a ...
2
votes
4answers
63 views

If object is supposed to exist during all run of program don't need to delete?

After reading this answer about what is memory leak one can conclude that if object is supposed to exist during all run of program, and was creating via new, there is no need to call delete on such ...
1
vote
2answers
59 views

WPF memory issue

I am trying to load pictures with the code below: void LoadPictures(int s) { grdScene.Children.Clear(); TabControl tab = new TabControl(); for (int ...
1
vote
1answer
67 views

Only when len is < 3, I get a heap corruption error. How comes? [closed]

For some reason, if len<3, I will get a heap corruption error at the delete[] buffer line. case WM_COMMAND: { switch(LOWORD(wParam)) { case ID_BUTTON_OK: { int len ...
15
votes
3answers
333 views

memory_get_peak_usage() with “real usage”

If the real_usage argument is set to true the PHP DOCS say it will get the real size of memory allocated from system. If it's false it will get the memory reported by emalloc() Which one of these 2 ...
1
vote
1answer
57 views

Cocos2d 2.0: I get a higher memory allocation peak setting default pixel format to kCCTexture2DPixelFormat_RGBA4444

I am getting kind of crazy. I got an AppDelegate from where I lunch an Introduction Scene. I used TexturePacker to get a plist and png file using RGBA4444 pixel format and set in XCode to "NO" for the ...
-5
votes
1answer
127 views

what does a program needs memory for? [closed]

Ok so I wrote this minimal C code and complied it in release mode 1.void main() 2.{ for(;;); } //this is here to make the app hang. The program itself is 6kb, I didn't include any headers. Even if ...
1
vote
0answers
58 views

XCode, iOS: Allocations vs Real memory usage

I run my Instruments on my iPod touch 4th gen and notice that the real memory usage in the activity monitor starts from 60 MB (Introduction scene) and goes to above 100 MB (Main menu scene). Whereas ...
5
votes
2answers
76 views

Does PHP dynamically handle memory usage based on its limit?

I have a script that runs successfully when PHP's memory_limit is set to 50M at about 25 seconds of runtime. When I print memory_get_peak_usage at the end of the script, it lands pretty closely to ...
0
votes
0answers
46 views

using mmap to allocate locally invalid address in userspace

Using http://www.spinics.net/lists/newbies/msg13355.html as reference i am trying to code a distributed shared memory system in user space. Here is the code that i have so far i cant seem to ...
0
votes
1answer
128 views

Memory management, many images in UICollectionView

I'm showing thumbnails of pictures (from the internet) in a UICollectionView in my app. When there are too many (like 20+) and too high res'd images the app simply crashes. I'm sort of an amateur when ...
3
votes
3answers
7k views

Allowed memory size of 134217728 bytes exhausted

Hot to solve this problem and why it happens? Zend Server Log: PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 538798977 bytes) in C:\Program Files ...
294
votes
6answers
117k views

How to discover memory usage of my application in Android

I would like to know how I can find the memory used on my Android application, programmatically. I hope there is a way to do it. Plus I would like to understand how to get the free memory of the ...
5
votes
3answers
7k views

Tracking Memory Usage in PHP

I'm trying to track the memory usage of a script that processes URLs. The basic idea is to check that there's a reasonable buffer before adding another URL to a cURL multi handler. I'm using a ...
10
votes
4answers
3k views

What does python *intern* do, and when should it be used?

I came across this question about memory management of dictionaries, which mentions the intern function. What exactly does it do, and when would it be used? To give an example: If I have a set ...

1 2 3 4 5 22