Re: [sqlite] Another question about RAM

2006-07-28 Thread drh
GEMENT is defined when you compile, then the global variable contains the highwater mark of your total heap memory utilization. > > - Original Message - > From: "Sarah" <[EMAIL PROTECTED]> > To: <sqlite-users@sqlite.org> > Sent: Thursday, July 27,

Re: [sqlite] Another question about RAM

2006-07-28 Thread Martin Jenkins
Sarah wrote: >> Because uc/os-II doesn't provide malloc(), free() to manage memory, >> instead, it divides the memory into fixed-length blocks and >> provides OSMemGet() and OSMemPut() to get and put fixed-length >> memory block. >> >> In order to port SQLite, I have to wrap uc/os-II with a set

Re: [sqlite] Another question about RAM

2006-07-28 Thread Sarah
Can anyone give me some guide? - Original Message - From: "Sarah" <[EMAIL PROTECTED]> To: <sqlite-users@sqlite.org> Sent: Thursday, July 27, 2006 3:47 PM Subject: [sqlite] Another question about RAM > Hi, all > > I want to build SQLite on the uc/os-

[sqlite] Another question about RAM

2006-07-27 Thread Sarah
Hi, all I want to build SQLite on the uc/os-II kernel in an embedded device. Because uc/os-II doesn't provide malloc(), free() to manage memory, instead, it divides the memory into fixed-length blocks and provides OSMemGet() and OSMemPut() to get and put fixed-length memory block. In order to