Subject: Re: 'machine' DDB command
To: John Hawkinson <jhawk@MIT.EDU>
From: Bill Sommerfeld <sommerfeld@orchard.arlington.ma.us>
List: tech-kern
Date: 01/18/2001 11:51:44
> What's the advantage of making the table const? You're making it sound
> like an end rather than a means.

it allows for more of the kernel to potentially be run-in-place from
write-protected memory (important for embedded devices).

it's also just generally better to have static data be "const" if at
all possible from a robustness standpoint.

					- Bill