diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-02-16 19:27:19 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-02-16 19:27:19 +0000 |
commit | 88c55990ce5570b149379b34e70b936215ef3882 (patch) | |
tree | ec4dd0c617d1549ea6b73567ed18227c14760b0b /doc/src | |
parent | 1ad93b7e4505624a5ded515e93a272aa1ca4a5cf (diff) | |
download | postgresql-88c55990ce5570b149379b34e70b936215ef3882.tar.gz postgresql-88c55990ce5570b149379b34e70b936215ef3882.zip |
Update BSDI FAQ.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index a003c727855..35917084f03 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.52 2001/02/16 16:10:06 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.53 2001/02/16 19:27:19 momjian Exp $ --> <Chapter Id="runtime"> @@ -1578,19 +1578,13 @@ options "SYSPTSIZE=13" <para> The defaults are in <filename>/sys/sys/sem.h</>: <programlisting> -/* Configuration parameters */ -#ifndef SEMMNI #define SEMMNI 10 /* # of semaphore identifiers */ -#endif -#ifndef SEMMNS + #define SEMMNS 60 /* # of semaphores in system */ -#endif -#ifndef SEMUME + #define SEMUME 10 /* max # of undo entries per process */ -#endif -#ifndef SEMMNU + #define SEMMNU 30 /* # of undo structures in system */ -#endif </programlisting> Set the values you want in your kernel config file, e.g.: <programlisting> |