Tagged Questions

14
votes
4answers
3k views

From what Linux kernel/libc version is Java Runtime.exec() safe with regards to memory?

At work one of our target platforms is a resource constrained mini-server running Linux (kernel 2.6.13, custom distribution based on an old Fedora Core). The application is written in Java (Sun JDK ...
2
votes
1answer
27 views

Why don't these memory allocation numbers add up?

I am seeing the following thing in my adb logcat window: 01-24 14:40:56.916: E/dalvikvm-heap(24727): 1957200-byte external allocation too large for this process. 01-24 14:40:56.966: ...
2
votes
1answer
325 views

Displaying a bitmap of arbitrary size without running out of memory

How do I display an image of arbitrary size without OOMing or downscaling the image. I dont want to downscale due to zooming and dragging of the picture? If it isnt possible to display an image of ...
2
votes
1answer
600 views

MATLAB block size and memory management

I'm using a block processing approach to handle a calculation between two large matrices. The code significantly speeds up when using a larger block size. But if I go too large, then I get an Out ...
1
vote
1answer
918 views

Android - BitmapFactory.decodeByteArray - OutOfMemoryError (OOM)

I have read 100s of article about the OOM problem. Most are in regard to large bitmaps. I am doing a mapping application where we download 256x256 weather overlay tiles. Most are totally transparent ...
0
votes
3answers
134 views

Out of memory condition for a simple activity

I have an activity which does this: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.list); ListView lv = ...
0
votes
2answers
228 views

Program is Killed During Testing

When I run my program I get the message Killed with some information about the script. After doing some research on the problem, I found out that I wasn't deleting my dynamically allocated variables ...