File: README

package info (click to toggle)
ace 8.0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,932 kB
  • sloc: cpp: 341,621; perl: 31,868; sh: 1,963; python: 529; yacc: 511; xml: 330; lex: 158; lisp: 116; makefile: 85; csh: 20; ansic: 19; tcl: 5
file content (23 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23


This directory currently only contains one example for testing process
semaphores.

proc_sema:
  This test can be used to test out the named process semaphores
support on your platform.  It can be run as either a supplier or a
consumer process.  The available options are:

        -c:     Make us a consumer.
        -s:     Make us a supplier.
        -x:     Remove the semaphore after we're done.
        -n:     Specify the name of the semaphore.
        -i:     Number of acquire/release we'll perform.
        -d:     Delay for # of second before exiting the program

  You can use this test to see how process semaphores work.  For
example, run the program as:

   proc_sema -c -i 10
   proc_sema -s -i 3
   proc_sema -s -i 7