Raw File
#include <stdlib.h>
#include <stdio.h>
#include "msw.h"

#define VECT_SIZE	350

char *	v1[VECT_SIZE];
char *	v2[VECT_SIZE];

static par = 0;

void
test1()
{
	int i;

	for (i = 1; i < VECT_SIZE; i++) {
		v1[i] = (char *) mswAlloc(i);
		v1[i] = (char *) mswAllocOpaque(i * 80);
	}

	for (i = 1; i < VECT_SIZE; i++) {
		v1[i] = (char *) mswAllocOpaque(i * 80);
	}
}

extern void mswShowFreeChunks(void);

int 
main(int argc, char ** argv)
{

	if (argc == 2)
	      par = atoi(argv[1]);

	if (par)
	      printf("\n+++++ Using collector +++++\n");

	mswInit(MSW_OnDemand);

	test1();
	if (par) 
	      mswCollect();
	test1();
	if (par)
	      mswCollect();

	mswShowInfo();
	mswCheckHeap(1);

	return 0;
}
back to top