File: params.txt

package info (click to toggle)
python-sysv-ipc 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 540 kB
  • sloc: ansic: 3,140; python: 1,960; makefile: 8; sh: 4
file content (18 lines) | stat: -rwxr-xr-x 566 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# These parameters control how Mrs. Premise and Mrs. Conclusion behave.

# ITERATIONS is the number of times they'll talk to one another.
# LIVE_DANGEROUSLY is a Boolean (0 or 1); if set to 1 the programs
#    won't use the semaphore to coordinate access to the shared
#    memory. Corruption will likely result.
# KEY is the key to be used for the semaphore and shared memory.
# PERMISSIONS are in octal (note the leading 0).
# SHM_SIZE is the size of the shared memory segment in bytes.

ITERATIONS=1000
LIVE_DANGEROUSLY=1
KEY=42
PERMISSIONS=0600
SHM_SIZE=4096