Skip to content
Permalink
3471efde50
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
11 lines (10 sloc) 339 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;