diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-12-16 10:13:34 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-12-16 10:13:34 +0000 |
commit | 11377ba6688e003064b9870a7e4e1164229fec89 (patch) | |
tree | a8139c6df2eb6e03e62f03aed4faab7c1d12b852 /winsup/cygserver/cygserver.conf | |
parent | 5c07a5745f47771a1e460a954c4744e9de4fd164 (diff) | |
download | cygnal-11377ba6688e003064b9870a7e4e1164229fec89.tar.gz cygnal-11377ba6688e003064b9870a7e4e1164229fec89.tar.bz2 cygnal-11377ba6688e003064b9870a7e4e1164229fec89.zip |
* bsd_helper.cc (tunable_params): Add entries for kern.ipc.msgmnb and
kern.ipc.msgtql. Raise max value for kern.ipc.msgseg to 65535.
* cygserver.conf: Add kern.ipc.msgmnb and kern.ipc.msgtql.
* sysv_msg.cc (msginit): Add TUNABLE_INT_FETCH call for
kern.ipc.msgmnb and kern.ipc.msgtql.
Diffstat (limited to 'winsup/cygserver/cygserver.conf')
-rw-r--r-- | winsup/cygserver/cygserver.conf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/winsup/cygserver/cygserver.conf b/winsup/cygserver/cygserver.conf index b7db6bbcf..1369e1100 100644 --- a/winsup/cygserver/cygserver.conf +++ b/winsup/cygserver/cygserver.conf @@ -66,17 +66,25 @@ # it doesn't make sense if it is less than 8 or greater than about 256. # kern.ipc.msgseg: Maximum no. of message queue segments hold concurrently. -# Default: 2048, Min: 256, Max: 32767 +# Default: 2048, Min: 256, Max: 65535 #kern.ipc.msgseg 2048 # kern.ipc.msgssz: Size of segment in bytes. Must be a power of 2 value. # Default: 8, Min: 8, Max: 1024 #kern.ipc.msgssz 8 +# kern.ipc.msgmnb: Maximum no. of bytes in a single message queue. +# Default: 2048, Min: 1, Max: 65535 +#kern.ipc.msgmnb 2048 + # kern.ipc.msgmni: Maximum no. of message queue identifiers hold concurrently. # Default: 40, Min: 1, Max: 1024 #kern.ipc.msgmni 40 +# kern.ipc.msgtql: Maximum no. of messages hold concurrently. +# Default: 40, Min: 1, Max: 1024 +#kern.ipc.msgtql 40 + # XSI semaphore parameters # kern.ipc.semmni: Maximum no. of semaphore identifiers hold concurrently. |