No empty .Rs/.Re
[netbsd-mini2440.git] / share / doc / psd / 05.sysman / 2.0.t
blobff89ad042b3ca523e4c8dff0f48bf14e54e25ff7
1 .\"     $NetBSD: 2.0.t,v 1.2 1998/01/09 06:54:47 perry Exp $
2 .\"
3 .\" Copyright (c) 1983, 1993, 1994
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)2.0.t       8.4 (Berkeley) 5/26/94
31 .\"
32 .Sh 1 "System facilities
33 .LP
34 The system abstractions described are:
35 .IP "Directory contexts
36 .br
37 A directory context is a position in the filesystem name
38 space.  Operations on files and other named objects in a filesystem are
39 always specified relative to such a context.
40 .IP "Files
41 .br
42 Files are used to store uninterpreted sequences of bytes,
43 which may be \fIread\fP and \fIwritten\fP randomly.
44 Pages from files may also be mapped into the process address space.
45 A directory may be read as a file if permitted by the underlying
46 storage facility,
47 though it is usually accessed using
48 .Fn getdirentries
49 (see section
50 .Xr 2.2.3.1 ).
51 (Local filesystems permit directories to be read,
52 although most NFS implementations do not allow reading of directories.)
53 .IP "Communications domains
54 .br
55 A communications domain represents
56 an interprocess communications environment, such as the communications
57 facilities of the 4.4BSD system,
58 communications in the INTERNET, or the resource sharing protocols
59 and access rights of a resource sharing system on a local network.
60 .IP "Sockets
61 .br
62 A socket is an endpoint of communication and the focal
63 point for IPC in a communications domain.  Sockets may be created in pairs,
64 or given names and used to rendezvous with other sockets
65 in a communications domain, accepting connections from these
66 sockets or exchanging messages with them.  These operations model
67 a labeled or unlabeled communications graph, and can be used in a
68 wide variety of communications domains.  Sockets can have different
69 \fItypes\fP\| to provide different semantics of communication,
70 increasing the flexibility of the model.
71 .IP "Terminals and other devices
72 .br
73 Devices include terminals (providing input editing, interrupt
74 generation, output flow control, and editing), magnetic tapes,
75 disks, and other peripherals.
76 They normally support the generic
77 \fIread\fP and \fIwrite\fP operations as well as a number of \fIioctl\fP\|'s.
78 .IP "Processes
79 .br
80 Process descriptors provide facilities for control and debugging of
81 other processes.