OpenSS7 SS7 for the Common Man |
© Copyright 1997-2004,OpenSS7 Corporation, All Rights Reserved. |
||||||||||||||||||||||||||
Home | Overview | Status | News | Documentation | Resources | About | |||||||||||||||||||||
File /code/strss7/drivers/str/com.cc#ident "@(#) $Id: com.cc,v 0.8 2003/02/24 13:00:06 brian Exp $" static char const ident[] = "$Id: com.cc,v 0.8 2003/02/24 13:00:06 brian Exp $"; #pragma implementation #include "com.h" #ifdef __HONOR_STD namespace std { #endif // // Replacements for new operators // void *operator new(size_t s) { return kmalloc(s, GFP_KERNEL); } void *operator new[] (size_t s) { return kmalloc(s, GFP_KERNEL); } inline void *operator new(size_t s, void *place) { return (place); } inline void *operator new[] (size_t s, void *place) { return (place); } void operator delete(void *a) { kfree(a); } void operator delete[] (void *a) { kfree(a); } #ifdef __HONOR_STD } // namepsace std #endif extern "C" { void __pure_virtual(void) { }}
|
|||||||||||||||||||||||||||
OpenSS7 SS7 for the Common Man |
Home | Overview | Status | News | Documentation | Resources | About | ||||||||||||||||||||
© Copyright 1997-2004,OpenSS7 Corporation, All Rights Reserved. |