aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flsupport.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-08-06 02:32:50 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-08-06 02:32:50 +0000
commit78c44b42bf4a07b0caf7d27b1dfb4725f14531f6 (patch)
treeb2a622b0202e55f14b507527970d5dc3b5c5c767 /externals/grill/flext/source/flsupport.h
parent5aeb36ec9e7aaee34ce8f5f248029d39047e2918 (diff)
""
svn path=/trunk/; revision=828
Diffstat (limited to 'externals/grill/flext/source/flsupport.h')
-rw-r--r--externals/grill/flext/source/flsupport.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h
index f0b3d34f..ac875980 100644
--- a/externals/grill/flext/source/flsupport.h
+++ b/externals/grill/flext/source/flsupport.h
@@ -69,7 +69,8 @@ public:
*/
/*! Overloaded new memory allocation method
- \warning Max/MSP (or MacOS) allows only 16K in overdrive mode!
+ \note this uses a fast allocation method of the real-time system
+ \warning Max/MSP (or MacOS) allows only 32K in overdrive mode!
*/
void *operator new(size_t bytes);
//! Overloaded delete method
@@ -80,6 +81,13 @@ public:
void operator delete[](void *blk) { operator delete(blk); }
#endif
+ /*! Get a large memory block
+ the normal C library function is used here
+ */
+ static void *NewLarge(size_t bytes) { return ::operator new(bytes); }
+ //! Free a large memory block
+ static void FreeLarge(void *blk) { return ::operator delete(blk); }
+
//! Get an aligned memory block
static void *NewAligned(size_t bytes,int bitalign = 128);
//! Free an aligned memory block