diff options
author | Magnus Hagander <magnus@hagander.net> | 2018-05-25 13:59:50 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2018-05-25 13:59:50 +0200 |
commit | 7019c21c1bf51eafb56595b916c216ca860ad499 (patch) | |
tree | 86d6e9e1ca8093fb5bff3361ca35bb301999a5c4 | |
parent | 2eb809ad7e71737b1a1ef5679d8e4c88e785669e (diff) | |
download | postgresql-7019c21c1bf51eafb56595b916c216ca860ad499.tar.gz postgresql-7019c21c1bf51eafb56595b916c216ca860ad499.zip |
Remove incorrect statement about IPC configuration on OpenBSD
kern.ipc.shm_use_phys is not a sysctl on OpenBSD, and SEMMAP is not
a kernel configuration option. These were probably copy pasteos from
when the documentation had a single paragraph for *BSD.
Author: Daniel Gustafsson <daniel@yesql.se>
-rw-r--r-- | doc/src/sgml/runtime.sgml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 39eaa73f54e..5523da33cf2 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -959,16 +959,9 @@ option SYSVSEM option SEMMNI=256 option SEMMNS=512 option SEMMNU=256 -option SEMMAP=256 </programlisting> </para> - <para> - You might also want to configure your kernel to lock shared - memory into RAM and prevent it from being paged out to swap. - This can be accomplished using the <command>sysctl</command> - setting <literal>kern.ipc.shm_use_phys</literal>. - </para> </listitem> </varlistentry> |