- Timestamp:
 - Nov 29, 2011, 10:49:58 AM (14 years ago)
 - Location:
 - branches/gcc-kmk
 - Files:
 - 
      
- 4 edited
 
- 
          
  include/odin.h (modified) (1 diff)
 - 
          
  include/stats.h (modified) (1 diff)
 - 
          
  src/odincrt/malloc.cpp (modified) (1 diff)
 - 
          
  src/odincrt/malloc_vac.cpp (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
branches/gcc-kmk/include/odin.h
r21804 r21826 93 93 #ifdef __INNOTEK_LIBC__ 94 94 #define SYSTEM _System 95 #define _LNK_CONV _Optlink95 #define _LNK_CONV 96 96 #else 97 97 #define SYSTEM CDECL  - 
      
branches/gcc-kmk/include/stats.h
r21802 r21826 5 5 6 6 //Get memory statistics from odincrt 7 void _LNK_CONVgetcrtstat(unsigned long *pnrcalls_malloc,8 unsigned long *pnrcalls_free,9 unsigned long *ptotalmemalloc);7 void SYSTEM getcrtstat(unsigned long *pnrcalls_malloc, 8 unsigned long *pnrcalls_free, 9 unsigned long *ptotalmemalloc); 10 10 #ifdef __cplusplus 11 11 extern "C" {  - 
      
branches/gcc-kmk/src/odincrt/malloc.cpp
r21823 r21826 16 16 17 17 // currently, it's a dumb stub 18 void _LNK_CONVgetcrtstat(unsigned long *pnrcalls_malloc,19 unsigned long *pnrcalls_free,20 unsigned long *ptotalmemalloc)18 void SYSTEM getcrtstat(unsigned long *pnrcalls_malloc, 19 unsigned long *pnrcalls_free, 20 unsigned long *ptotalmemalloc) 21 21 { 22 22 *pnrcalls_malloc = nrcalls_malloc;  - 
      
branches/gcc-kmk/src/odincrt/malloc_vac.cpp
r21794 r21826 25 25 unsigned long totalmemalloc = 0; 26 26 27 void _LNK_CONVgetcrtstat(unsigned long *pnrcalls_malloc,28 unsigned long *pnrcalls_free,29 unsigned long *ptotalmemalloc)27 void SYSTEM getcrtstat(unsigned long *pnrcalls_malloc, 28 unsigned long *pnrcalls_free, 29 unsigned long *ptotalmemalloc) 30 30 { 31 31 *pnrcalls_malloc = nrcalls_malloc;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  