Changed the default/min/max number of users to 8/2/512 for all machine

types. This is closer to the reality of reasonable values.
This commit is contained in:
David Greenman 1995-12-29 18:24:43 +00:00
parent e6c645fad2
commit c418fae48f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13109

View File

@ -120,14 +120,14 @@ static struct users {
int u_min;
int u_max;
} users[] = {
{ 24, 8, 1024 }, /* MACHINE_VAX */
{ 4, 2, 128 }, /* MACHINE_TAHOE */
{ 8, 2, 64 }, /* MACHINE_HP300 */
{ 8, 2, 64 }, /* MACHINE_I386 */
{ 8, 2, 64 }, /* MACHINE_MIPS */
{ 8, 2, 64 }, /* MACHINE_PMAX */
{ 8, 2, 64 }, /* MACHINE_LUNA68K */
{ 8, 2, 64 }, /* MACHINE_NEWS3400 */
{ 8, 2, 512 }, /* MACHINE_VAX */
{ 8, 2, 512 }, /* MACHINE_TAHOE */
{ 8, 2, 512 }, /* MACHINE_HP300 */
{ 8, 2, 512 }, /* MACHINE_I386 */
{ 8, 2, 512 }, /* MACHINE_MIPS */
{ 8, 2, 512 }, /* MACHINE_PMAX */
{ 8, 2, 512 }, /* MACHINE_LUNA68K */
{ 8, 2, 512 }, /* MACHINE_NEWS3400 */
};
#define NUSERS (sizeof (users) / sizeof (users[0]))