Added the test example.

NSPR changes.


git-svn-id: svn://10.0.0.236/trunk@1114 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gagan
1998-05-05 00:37:53 +00:00
parent c4ea4cc289
commit b23ea7975d
32 changed files with 1511 additions and 128 deletions

View File

@@ -36,7 +36,7 @@ nsCacheModule::nsCacheModule():
{
}
nsCacheModule::nsCacheModule(const long i_size):
nsCacheModule::nsCacheModule(const PRUint32 i_size):
m_Size(i_size),
m_pNext(0),
m_Entries(0)
@@ -57,7 +57,7 @@ const char* nsCacheModule::Trace() const
char linebuffer[128];
char* total = 0;
sprintf(linebuffer, "CacheModule: Objects = %d\n", Entries());
sprintf(linebuffer, "nsCacheModule: Objects = %d\n", Entries());
APPEND(linebuffer);
return total;