Message-ID: <358915F7.A94B8CA7@acm.org> From: Randy Maas MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: Dynamic memory allocation in real time aplications References: <01bd9aac$22753140$0100a8c0 AT dismuntel DOT ctv DOT es> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 12 Date: Thu, 18 Jun 1998 13:26:27 GMT NNTP-Posting-Host: 209.98.113.62 NNTP-Posting-Date: Thu, 18 Jun 1998 08:26:27 CDT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Javier Calleja wrote: > But, must I use dynamic memory allocation with real time aplications? Is > the O.S. fast enough in memory assignment and memory release? And, is the > dynamic memory allocation a robust programming method or may the O.S. crash > my programm? Generally, for real time work, you would want to allocate you memory only at startup and lock it into memory. Randy