Re: dynamic heap size, palm os 4.0

2006-08-30 Thread Dmitry Grinberg
3.5 and below: http://www.palmos.com/dev/support/docs/palmos/PalmOSCompanion/Memory.html#1025909 4.0 and above: all different. here are some: T5: 4MB E2: 6MB TH55: 8MB TT: 800K TX: 6MB On 8/30/06, Jeff Ondich <[EMAIL PROTECTED]> wrote: Thanks, Dmitri. One follow-up question. Do any of you k

Re: dynamic heap size, palm os 4.0

2006-08-30 Thread Jeff Ondich
Thanks, Dmitri. One follow-up question. Do any of you know of a list of the various heap sizes made available by different versions of Palm OS? (Or maybe it varies by device, too?) Thanks, Jeff Dmitry Grinberg wrote: if you're feeling lucky: HwrEnableDataWrites(true); PilotMain(); Hw

Re: dynamic heap size, palm os 4.0

2006-08-30 Thread Dmitry Grinberg
if you're feeling lucky: HwrEnableDataWrites(true); PilotMain(); HwrEnableDataWrites(false); and replace all calls to MemPtrNew(sz) with MemChunkNew(1,sz,0x203); and all MemHandleNew(sz) with MemHandleNew(1,sz,3); this will work on OS2.0 - 5.2.1. In all OS versions after 5.2.1 the HwrEnableD

Re: Dynamic Heap Size..?

2001-01-28 Thread Alan Ingleby
e feel free to go ahead and > > pummel me with Reality. :-) > > > > -- Keith Rollin > > -- Palm OS Emulator engineer > > > > "B. Cameron Lesiuk" <[EMAIL PROTECTED]> on 01/24/2001 08:23:27 PM > > > > Please respond to "Pal

Re: Dynamic Heap Size..?

2001-01-25 Thread David Fedor
>One weird thing I noticed is that the largest chunk available on a 1 meg 3.5 >device with b&w screen is only about 10K, whereas the color device is 35K!! >This was causing the problem. Anyone know why this is? (David??) The size of the dynamic heap, as of 3.5, is determined at boot time based

Re: Dynamic Heap Size..?

2001-01-25 Thread DIAMOND JEFF
:-) > > -- Keith Rollin > -- Palm OS Emulator engineer > > "B. Cameron Lesiuk" <[EMAIL PROTECTED]> on 01/24/2001 08:23:27 PM > > Please respond to "Palm Developer Forum" <[EMAIL PROTECTED]> > > Sent by: "B. Cameron Lesiuk" &l

Re: Dynamic Heap Size..?

2001-01-25 Thread krollin
. Cameron Lesiuk" <[EMAIL PROTECTED]> on 01/24/2001 08:23:27 PM Please respond to "Palm Developer Forum" <[EMAIL PROTECTED]> Sent by: "B. Cameron Lesiuk" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> cc:(Keith

Re: Dynamic Heap Size..?

2001-01-24 Thread Alan Ingleby
Thanks for that. I was sure the info was out there, but had trouble locating it using their search engine.. 8-) FYI: I wrote this tiny bit of code to tell me a bit about the heap during my programs start-up. Char buffer[10]; Int16 i; UInt32 x; UInt32 y; UInt32 z; DebugAlert("Analysi

Re: Dynamic Heap Size..?

2001-01-24 Thread B. Cameron Lesiuk
Check out the Programmer's Companion on the PalmOS web site http://www.palmos.com/dev/tech/docs/palmos/Memory.html You'll want to read the whole thing. The chart you're looking for is near the very bottom. -Cam Alan Ingleby wrote: > A) Is there a way to programmatically determine the Dynamic H

RE: Dynamic Heap Size

2000-06-21 Thread Michael S. Davis
PM > To: Palm Developer Forum > Subject: Re: Dynamic Heap Size > > > > > > > >I know this is probably a stupid question, but is there any way to > increase > > > >the size of the dynamic heap? Is it fixed by the Operating System? > > > > &g

RE: Dynamic Heap Size

2000-06-21 Thread Frank Nichols
Ah ha! A challenge! /fn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, June 21, 2000 12:40 PM To: Palm Developer Forum Subject: Re: Dynamic Heap Size > > >I know this is probably a stupid question, but

Re: Dynamic Heap Size

2000-06-21 Thread krollin
> > >I know this is probably a stupid question, but is there any way to increase > > >the size of the dynamic heap? Is it fixed by the Operating System? > > > > Sounds like a perfectly reasonable question to me... :o) > > > > It's determined during boot according to the total amount of RAM inst

Re: Dynamic Heap Size

2000-06-21 Thread Michael S. Davis
On Wed, 21 Jun 2000, Jim Schram wrote: > At 1:10 PM -0500 2000/06/21, Rob Graber wrote: > >I know this is probably a stupid question, but is there any way to increase > >the size of the dynamic heap? Is it fixed by the Operating System? > > Sounds like a perfectly reasonable question to me... :

Re: Dynamic Heap Size

2000-06-21 Thread Jim Schram
At 1:10 PM -0500 2000/06/21, Rob Graber wrote: >I know this is probably a stupid question, but is there any way to increase >the size of the dynamic heap? Is it fixed by the Operating System? Sounds like a perfectly reasonable question to me... :o) It's determined during boot according to the t