-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy path4.4-psd.html
137 lines (87 loc) · 4.4 KB
/
4.4-psd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html>
<head>
<title>4.4BSD Programmer's Supplementary Documents (PSD)</title>
</head>
<body>
<h1>4.4BSD Programmer's Supplementary Documents (PSD)</h1>
<h2>Documents of Historical Interest</h2>
<h3>The Unix Time-Sharing System</h3>
Dennis Ritchie and Ken Thompson's original paper about UNIX, reprinted
from Communications of the ACM.
<h3>Unix Implementation</h3>
Ken Thompson's description of the implementation of the Version 7
kernel and file system.
<h3>The Unix I/O System</h3>
Dennis Ritchie's overview of the I/O System of Version 7; still helpful for
those writing device drivers.
<h3>Unix Programming - Second Edition</h3>
Describes the programming interface to the UNIX version 7 operating
system and the standard I/O library. Should be supplemented by
Kernighan and Pike, ``The UNIX Programming Environment'',
Prentice-Hall, 1984 and especially by the Programmer Reference Manual
section 2 (system calls) and 3 (library routines).
<h3><a href="ftp://ftp.openbsd.org/pub/OpenBSD/src/share/doc/psd/05.sysman">Berkeley Software Architecture Manual (4.4 Edition)</a></h3>
A concise and terse description of the system call interface
provided in Berkeley Unix, as revised for 4.4BSD.
This will never be a best seller.
<h2>Languages in common use</h2>
<h3>The C Programming Language - Reference Manual</h3>
Official statement of the syntax of C.
Should be supplemented by ``The C Programming Language,''
B.W. Kernighan and D.M. Ritchie, Prentice-Hall, 1978, that
contains a tutorial introduction and many examples.
<h3>Berkeley Pascal User's Manual</h3>
An implementation of this language popular for learning to program.
<h3>A Portable Fortran 77 Compiler</h3>
A revised version of the document which originally appeared in
Volume 2b of the Bell Labs documentation;
this version reflects the work done at Berkeley.
<h3>Introduction to the f77 I/O Library</h3>
A description of the revised input/output library for Fortran 77,
reflecting work carried out at Berkeley.
<h2>Programming Tools</h2>
<h3>Debugging with GDB: The GNU Source-Level Debugger</h3>
How to debug programs using the source level <B>gdb</B> debugger
(or how to debug programs without having to know much about machine language).
<h3>A Tutorial Introduction to ADB</h3>
How to debug programs using the assembly-language level <B>adb</B> debugger.
<h3>Make - A Program for Maintaining Computer Programs</h3>
Indispensable tool for making sure large programs are properly
compiled with minimal effort.
<h3>An Introduction to the Revision Control System</h3>
RCS is a user-contributed tool for working together with other people
without stepping on each other's toes.
An alternative to <B>sccs</B> for controlling software changes.
<h3>An Introduction to the Source Code Control System</h3>
A useful introductory article for those users with
installations licensed for SCCS.
<h3>YACC: Yet Another Compiler-Compiler</h3>
Converts a BNF specification of a language and semantic actions
written in C into a compiler for that language.
<h3>LEX - A Lexical Analyzer Generator</h3>
Creates a recognizer for a set of regular expressions:
each regular expression can be followed by arbitrary C code
to be executed upon finding the regular expression.
<h3>The M4 Macro Processor</h3>
M4 is a macro processor useful in its own right and as a
front-end for C, Ratfor, and Cobol.
<h3>gprof: a Call Graph Execution Profiler</h3>
A program to show the call graph and execution time of a program.
Indispensable aid for improving the running time of almost everything.
<h2>Programming Libraries</h2>
<h3>Screen Updating and Cursor Movement Optimization</h3>
Describes the <B>curses</B> package, an aid for writing screen-oriented,
terminal-independent programs.
<h2>General Reference</h2>
<h3><a href="ftp://ftp.openbsd.org/pub/OpenBSD/src/share/doc/psd/20.ipctut">An Introductory 4.4BSD Interprocess Communication Tutorial</a></h3>
How to write programs that use the Interprocess Communication Facilities
of 4.4BSD.
<h3><a href="ftp://ftp.openbsd.org/pub/OpenBSD/src/share/doc/psd/21.ipc">An Advanced 4.4BSD Interprocess Communication Tutorial</a></h3>
The reference document (with some examples) for the Interprocess Communication
Facilities of 4.4BSD.
<hr>
<a href=docum.html><img height=24 width=24 src=back.gif border=0 alt=OpenBSD></a>
<a href="mailto:[email protected]">[email protected]</a>
<br><small>$OpenBSD: 4.4-psd.html,v 1.3 1998/06/19 15:05:54 pauls Exp $</small>
</body>
</html>