Skip to content
Permalink
7bf200bc05
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (13 sloc) 413 Bytes
/**/
#include "common.h"
#define EXTERN
/* Some global variables used externally */
/* Maximum number of segments allowed to be in the system. Must be a power of 2 */
EXTERN unsigned int MaxSeg;
/* Base-2 log */
EXTERN unsigned int LogMaxSeg;
/* MAXSEG-1; MAXSEG must be a power of 2 */
EXTERN unsigned int MaxSegRemainderBitMask;
#include "dynarr.h"
#include "dynarr_freenodelist.h"
SEGALLOC_USE();