#include #ifdef PAGE_TEST #include #include #include #include #include #include #include #include #include #include #include #include #include unsigned long mmPage_tab[MAX_PAGE_TAB]; char mmUse_tab [MAX_PAGE_TAB]; int mmPage_tab_ind=0; int mmPage_tab_acc=0; static caddr_t startAddr = (caddr_t) 0; #ifndef PROT_NONE #define PROT_NONE 0 #endif #if ( !defined(MAP_ANONYMOUS) && defined(MAP_ANON) ) #define MAP_ANONYMOUS MAP_ANON #endif extern int sys_nerr; extern char * sys_errlist[]; static const char * mmStringErrorReport(void) { if ( errno > 0 && errno < sys_nerr ) return sys_errlist[errno]; else return "Unknown error.\n"; } /* * Create memory. */ #if defined(MAP_ANONYMOUS) void * mmPage_Create(size_t size) { caddr_t allocation; /* * In this version, "startAddr" is a _hint_, not a demand. * When the memory I map here is contiguous with other * mappings, the allocator can coalesce the memory from two * or more mappings into one large contiguous chunk, and thus * might be able to find a fit that would not otherwise have * been possible. I could _force_ it to be contiguous by using * the MMAP_FIXED flag, but I don't want to stomp on memory mappings * generated by other software, etc. */ allocation = (caddr_t) mmap( startAddr ,(int)size ,PROT_READ|PROT_WRITE ,MAP_PRIVATE|MAP_ANONYMOUS ,-1 ,0); /* * Set the "address hint" for the next mmap() so that it will abut * the mapping we just created. * * HP/UX 9.01 has a kernel bug that makes mmap() fail sometimes * when given a non-zero address hint, so we'll leave the hint set * to zero on that system. HP recently told me this is now fixed. * Someone please tell me when it is probable to assume that most * of those systems that were running 9.01 have been upgraded. */ startAddr = allocation + size; if ( allocation == (caddr_t)-1 ) printf("mmap() failed: %s", mmStringErrorReport()); if (mmPage_tab_ind0); #endif } memset(mmUse_tab,'0',MAX_PAGE_TAB); mmPage_tab_acc=0; } void mmEndStat() { if (mmStatFile!=NULL) { mmWriteStat(); #if 0 fprintf(mmStatFile,"# %d %d\n",MAX_PAGE_TAB,mmStatLines); #endif fclose(mmStatFile); } } #endif