-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_library.ps
17410 lines (17298 loc) · 400 KB
/
server_library.ps
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-2.0
%%Title:
%%Creator: FrameMaker
%%CreationDate: Mon May 17 12:18:54 1993
%%For: dmw
%%DocumentFonts: (atend)
%%Pages: (atend) 1
%%BoundingBox: (atend)
%%DocumentPaperSizes: Letter
%%Orientation: Portrait
%%EndComments
%%BeginDocument: /usr/lib/NextStep/printPackage.ps
%!PS-Adobe-2.0
%%Title: Printing Package
%%EndComments
%Version: 2.0
%Copyright: 1988, NeXT, Inc.
/__NXdef{1 index where{pop pop pop}{def}ifelse}bind def
/__NXbdef{1 index where{pop pop pop}{bind def}ifelse}bind def
/UserObjects 10 array __NXdef
/defineuserobject{
exch dup 1 add dup UserObjects length gt{
array dup 0 UserObjects putinterval
/UserObjects exch def
}{pop}ifelse UserObjects exch 3 -1 roll put
}__NXbdef
/undefineuserobject{UserObjects exch null put}__NXbdef
/execuserobject{UserObjects exch get exec}__NXbdef
/__NXRectPath{4 2 roll moveto 1 index 0 rlineto
0 exch rlineto neg 0 rlineto closepath}__NXbdef
/__NXProcessRectArgs{
1 index type /arraytype eq{
exch 0 4 2 index length 1 sub{
dup 3 add 1 exch{1 index exch get exch}for
5 1 roll 5 index exec
}for pop pop
}{exec}ifelse
}__NXbdef
/rectfill{gsave newpath {__NXRectPath fill} __NXProcessRectArgs grestore}__NXbdef
/rectclip{newpath {__NXRectPath} __NXProcessRectArgs clip newpath}__NXbdef
/rectstroke{
gsave newpath dup type /arraytype eq{dup length 6 eq}{false}ifelse{
{gsave __NXRectPath null concat stroke grestore}
dup length array cvx copy dup 2 4 -1 roll put __NXProcessRectArgs
}{{__NXRectPath stroke} __NXProcessRectArgs}ifelse grestore
}__NXbdef
/xyshow{
0 1 3 index length 1 sub{
currentpoint 4 index 3 index 1 getinterval show
3 index 3 index 2 mul 1 add get add exch
3 index 3 index 2 mul get add exch moveto pop
}for pop pop
}__NXbdef
/xshow{
0 1 3 index length 1 sub{
currentpoint 4 index 3 index 1 getinterval show
exch 3 index 3 index get add exch moveto pop
}for pop pop
}__NXbdef
/yshow{
0 1 3 index length 1 sub{
currentpoint 4 index 3 index 1 getinterval show
3 index 3 index get add moveto pop
}for pop pop
}__NXbdef
/arct{arcto pop pop pop pop}__NXbdef
/setbbox{pop pop pop pop}__NXbdef
/ucache{}__NXbdef
/ucachestatus{mark 0 0 0 0 0}__NXbdef
/setucacheparams{cleartomark}__NXbdef
/uappend{systemdict begin cvx exec end}__NXbdef
/ueofill{gsave newpath uappend eofill grestore}__NXbdef
/ufill{gsave newpath uappend fill grestore}__NXbdef
/ustroke{
gsave newpath dup length 6 eq
{exch uappend concat}{uappend}ifelse
stroke grestore
}__NXbdef
/__NXustrokepathMatrix dup where {pop pop}{matrix def}ifelse
/ustrokepath{
newpath dup length 6 eq{
exch uappend __NXustrokepathMatrix currentmatrix exch concat
strokepath setmatrix
}{uappend strokepath}ifelse
} __NXbdef
/upath{
[exch {/ucache cvx}if pathbbox /setbbox cvx
{/moveto cvx}{/lineto cvx}{/curveto cvx}{/closepath cvx}pathforall]cvx
} __NXbdef
/setstrokeadjust{pop}__NXbdef
/currentstrokeadjust{false}__NXbdef
/selectfont{exch findfont exch
dup type /arraytype eq {makefont}{scalefont}ifelse setfont}__NXbdef
/_NXCombineArrays{
counttomark dup 2 add index dup length 3 -1 roll {
2 index length sub dup 4 1 roll 1 index exch 4 -1 roll putinterval exch
}repeat pop pop pop
}__NXbdef
/setcmykcolor{
1.0 exch sub dup dup 6 -1 roll
sub dup 0 lt{pop 0}if 5 1 roll
4 -1 roll sub dup 0 lt{pop 0}if 3 1 roll
exch sub dup 0 lt{pop 0}if setrgbcolor
}__NXbdef
/currentcmykcolor{currentrgbcolor 3{1.0 exch sub 3 1 roll}repeat 0}__NXbdef
/flushgraphics{}def
/setwindowtype{pop pop}def
/currentwindowtype{pop 0}def
/setalpha{pop}def
/currentalpha{1.0}def
/hidecursor{}def
/obscurecursor{}def
/revealcursor{}def
/setcursor{4 {pop}repeat}bind def
/showcursor{}def
/NextStepEncoding where not{
/NextStepEncoding StandardEncoding 256 array copy def
0 [129/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/Ccedilla/Egrave
/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/Ugrave/Uacute
/Ucircumflex/Udieresis/Yacute/Thorn/mu/multiply/divide/copyright
176/registered 181/brokenbar 190/logicalnot 192/onesuperior 201/twosuperior
204/threesuperior 209/plusminus/onequarter/onehalf/threequarters/agrave
/aacute/acircumflex/atilde/adieresis/aring/ccedilla/egrave/eacute
/ecircumflex/edieresis/igrave 226/iacute 228/icircumflex/idieresis/eth
/ntilde 236/ograve/oacute/ocircumflex/otilde/odieresis 242/ugrave/uacute
/ucircumflex 246/udieresis/yacute 252/thorn/ydieresis]
{dup type /nametype eq
{NextStepEncoding 2 index 2 index put pop 1 add}{exch pop}ifelse
}forall pop
/NextStepEncoding NextStepEncoding readonly def
/_NXfstr 128 string dup 0 (_NX) putinterval def
/findfont{
% Because we can never let NextStepEncoding get into
% SharedFontDirectory, we cannot reencode a font to NextStepEncoding
% if we are in shared mode. So if currentshared is true,
% we call the normal findfont and return that
/currentshared where {pop currentshared} {false} ifelse
{//findfont exec}
{dup _NXfstr 3 125 getinterval cvs length 3 add _NXfstr 0 3 -1 roll
getinterval cvn exch FontDirectory 2 index known
{pop FontDirectory exch get}
{//findfont exec dup /Encoding get StandardEncoding eq
{ dup length dict exch
{1 index /FID ne {2 index 3 1 roll put}{pop pop}ifelse}forall
dup /Encoding NextStepEncoding put definefont
}{exch pop} ifelse
}ifelse
}ifelse
}bind def
}{pop}ifelse
/_NXProcArray 5 array __NXdef
/_NXChannels 0 __NXdef
/_NXTotalBytes 0 __NXdef
/_NXDoImageOp{
1 index{dup}{1}ifelse /_NXChannels exch store
_NXChannels 2 add 2 roll _NXProcArray 0 _NXChannels getinterval astore pop
5 index 4 index mul 2 index{1 sub 8 idiv 1 add mul}{mul 1 sub 8 idiv 1 add}ifelse
4 index mul /_NXTotalBytes exch store pop exch pop
gsave matrix invertmatrix concat 0.5 setgray 0 0 4 2 roll rectfill grestore
{ 0 1 _NXChannels 1 sub{
_NXProcArray exch get exec
length _NXTotalBytes exch sub /_NXTotalBytes exch store}for
_NXTotalBytes 0 le{exit}if
}loop /_NXProcArray 5 array def
}__NXbdef
/colorimage{_NXDoImageOp}__NXbdef
/alphaimage{1 add _NXDoImageOp}def
%%EndDocument
/FMwantcolorprinting false def
%-
%- FrameMaker Postscript Prolog 3.0, for use with FrameMaker 3.0
%- Copyright (c) 1986, 87, 88, 89, 90, 91 by Frame Technology, Inc.
%- All rights reserved.
%-
%-
/landscape false def/t300[0.000 0.006 0.011 0.017 0.022 0.028 0.033 0.039
0.045 0.050 0.056 0.061 0.067 0.073 0.078 0.084 0.089 0.095 0.101 0.117 0.133
0.148 0.164 0.179 0.195 0.210 0.225 0.240 0.255 0.270 0.285 0.299 0.314 0.329
0.344 0.359 0.374 0.389 0.404 0.419 0.435 0.451 0.466 0.482 0.498 0.513 0.529
0.544 0.560 0.576 0.591 0.610 0.632 0.654 0.677 0.699 0.721 0.744 0.766 0.788
0.821 0.866 0.911 0.955 1.000]def/t400[0.000 0.003 0.006 0.009 0.012 0.014
0.017 0.020 0.023 0.026 0.029 0.032 0.035 0.038 0.041 0.043 0.046 0.049 0.056
0.063 0.071 0.079 0.087 0.095 0.104 0.117 0.130 0.143 0.157 0.173 0.189 0.205
0.225 0.245 0.259 0.272 0.285 0.298 0.314 0.329 0.345 0.361 0.376 0.392 0.407
0.423 0.439 0.454 0.470 0.486 0.502 0.528 0.554 0.580 0.605 0.628 0.650 0.672
0.695 0.727 0.762 0.796 0.857 0.922 1.000]def/tlinear[0.000 0.016 0.031 0.047
0.062 0.078 0.094 0.109 0.125 0.141 0.156 0.172 0.188 0.203 0.219 0.234 0.250
0.266 0.281 0.297 0.312 0.328 0.344 0.359 0.375 0.391 0.406 0.422 0.438 0.453
0.469 0.484 0.500 0.516 0.531 0.547 0.562 0.578 0.594 0.609 0.625 0.641 0.656
0.672 0.688 0.703 0.719 0.734 0.750 0.766 0.781 0.797 0.812 0.828 0.844 0.859
0.875 0.891 0.906 0.922 0.938 0.953 0.969 0.984 1.000]def/orgmatrix matrix def
/savematrix{orgmatrix currentmatrix pop}bind def/restorematrix{orgmatrix
setmatrix}bind def/dmatrix matrix def/desiredpat 0 def/dpi 72 0 dmatrix
defaultmatrix dtransform dup mul exch dup mul add sqrt round def/freq dpi
18.75 div 8 div round dup 0 eq{pop 1}if 8 mul dpi exch div def/sangle 1 0
dmatrix defaultmatrix dtransform exch atan def/graymode true def/pats 16 array
def/mymatrix matrix def/savedgray 0 def/F/fill load def/rc/rectclip load def
/GS/gsave load def/GR/grestore load def/SL/setlinewidth load def/SC
/setlinecap load def/CS{closepath S}bind def/A/strokepath load def/TR
/translate load def/L/lineto load def/M/moveto load def/D/curveto load def/C
/closepath load def/T{moveto show}bind def/smat{mymatrix currentmatrix pop}
bind def/rmat{mymatrix setmatrix}bind def/sp{P exch get exec}bind def
systemdict/setshared known{300 dpi eq{/tran t300 def}{/tran t400 def}ifelse}{
/tran tlinear def}ifelse systemdict/xshow known not{/xhow{/pts exch def/str
exch def 0 1 str length 1 sub{currentpoint 3 -1 roll str 1 index 1 getinterval
show 3 1 roll moveto pts exch get 0 rmoveto}for}bind def}{/xhow{checkink xshow
}bind def}ifelse systemdict/xyshow known not{/xyhow{/pts exch def/str exch def
0 1 str length 1 sub{currentpoint 3 -1 roll str 1 index 1 getinterval show 3 1
roll moveto 2 mul pts 1 index get pts 3 -1 roll 1 add get rmoveto}for}bind def
}{/xyhow{checkink xyshow}bind def}ifelse/CR{initclip newpath 4 2 roll M dup 0
exch rlineto exch 0 rlineto 0 exch neg rlineto C clip newpath}bind def
/makecontextpattern{exch pop[null 8 1/setpattern cvx]4 array copy dup 0 5 -1
roll put cvx pats 3 1 roll put}def/P[0 1 15{[/desiredpat 3 -1 roll/store cvx]
cvx}for]def/patoffsetx 0 def/patoffsety 0 def/currentpat null def/FrameDict
250 dict def/FMBEGINPAGE{FrameDict begin}def/FMENDPAGE{end}def/FMLOCAL{
FrameDict begin 0 def end}def FrameDict begin/NaN 0 def/gstring 0 def/gfile 0
def/gindex 0 def/orgxfer 0 def/yscale 0 def/xscale 0 def/FMPrintInColor
systemdict/colorimage known systemdict/currentcolortransfer known or
FMwantcolorprinting and def FMPrintInColor{/HUE 0 def/SAT 0 def/BRIGHT 0 def
/Colors[[0 0][0 0][0.00 1.0][0.37 1.0][0.60 1.0][0.50 1.0][0.83 1.0][0.16 1.0]
]def/K{Colors exch get dup 0 get/HUE exch store 1 get/BRIGHT exch store HUE 0
eq BRIGHT 0 eq and{1.0 SAT sub setgray}{HUE SAT BRIGHT sethsbcolor}ifelse}def
/KT/K load def/mysetgray{/SAT exch 1.0 exch sub store HUE 0 eq BRIGHT 0 eq and
{1.0 SAT sub setgray}{HUE SAT BRIGHT sethsbcolor}ifelse}bind def}{/mysetgray
/setgray load def/K/pop load def/KT/pop load def}ifelse/G{/savedgray exch def
savedgray mysetgray}def/setpattern{/bwidth exch def/bpside exch def/bstring
exch def/onbits 0 def/offbits 0 def freq sangle landscape{90 add}if{/y exch
def/x exch def/xindex x 1 add 2 div bpside mul cvi def/yindex y 1 add 2 div
bpside mul cvi def bstring yindex bwidth mul xindex 8 idiv add get 1 7 xindex
8 mod sub bitshift and 0 ne{/onbits onbits 1 add def 1}{/offbits offbits 1 add
def 0}ifelse}setscreen tran offbits 64 mul offbits onbits add div cvi get
mysetgray}bind def/myfonts[]def/procarray 30 array def 3.86 setmiterlimit
currentscreen cvlit/orgproc exch def/organgle exch def/orgfreq exch def
/currentpat -1 def/checkpat{graymode currentpat desiredpat ne or{pats
desiredpat get exec/graymode false store/currentpat desiredpat store}if}bind
def/Z{checkpat fill}bind def/checkink{graymode not{orgfreq organgle orgproc
cvx setscreen/graymode true store savedgray mysetgray}if}bind def/F{checkink
fill}bind def/dorectfill{checkink rectfill}bind def/dorectstroke{checkink
rectstroke}bind def/S{checkink stroke}bind def/FmEncoding[/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
/ampersand/quotesingle/parenleft/parenright/asterisk/plus/comma/hyphen/period
/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less
/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y
/Z/bracketleft/backslash/bracketright/asciicircum/underscore/grave/a/b/c/d/e
/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright
/asciitilde/.notdef/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis
/Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute
/egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde
/oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex
/udieresis/dagger/.notdef/cent/sterling/section/bullet/paragraph/germandbls
/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash/.notdef
/.notdef/.notdef/.notdef/yen/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/ordfeminine/ordmasculine/.notdef/ae/oslash/questiondown/exclamdown
/logicalnot/.notdef/florin/.notdef/.notdef/guillemotleft/guillemotright
/ellipsis/.notdef/Agrave/Atilde/Otilde/OE/oe/endash/emdash/quotedblleft
/quotedblright/quoteleft/quoteright/.notdef/.notdef/ydieresis/Ydieresis
/fraction/currency/guilsinglleft/guilsinglright/fi/fl/daggerdbl
/periodcentered/quotesinglbase/quotedblbase/perthousand/Acircumflex
/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave
/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi
/circumflex/tilde/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek
/caron]def/FmEncode{/basefontdict exch def/newfontdict basefontdict maxlength
3 add dict def basefontdict{exch dup/FID ne{dup/Encoding eq{exch pop
FmEncoding}{exch}ifelse newfontdict 3 1 roll put}{pop pop}ifelse}forall
newfontdict}def/rrectpath{smat 4 2 roll TR/h exch def/w exch def/r exch def
mark r 0 M w 0 w h r arcto w h 0 h r arcto 0 h 0 0 r arcto 0 0 w 0 r arcto C
cleartomark rmat}def/RF{rrectpath F}bind def/RP{checkpat rrectpath fill}bind
def/RS{rrectpath S}bind def/RQ{checkpat rrectpath A fill}bind def/NF{
dorectfill}bind def/NR{checkpat 4 2 roll rectfill}bind def/W{savedgray 5 1
roll 1.0 G dorectfill G}bind def/PP{newpath 3 1 roll M 1 sub{lineto}repeat}
bind def/SP{3 1 roll M 3 div cvi{curveto}repeat}bind def/rectpath{M dup 0 exch
rlineto exch 0 rlineto neg 0 exch rlineto C}def/N{dorectstroke}bind def/NQ{
checkpat 4 2 roll rectstroke}bind def/replbox{M dup 0 exch rlineto exch 0
rlineto neg 0 exch rlineto C currentgray .5 setgray fill setgray pop pop}def
/graybox{currentgray 5 1 roll .6666666 setgray rectfill setgray}bind def
/darkgraybox{currentgray 5 1 roll .333333 setgray rectfill setgray}bind def
/arcpath{newpath TR/h exch def/w exch def/dth exch def/th exch def 90 th dth
add sub 90 th sub dth 0 lt{exch}if 1 h w div neg scale 0 0 w 2 div 5 -2 roll
arc}def/AS{smat arcpath rmat S}bind def/AP{checkpat smat arcpath rmat A fill}
bind def/AF{smat arcpath 0 0 lineto rmat F}bind def/AQ{checkpat smat arcpath 0
0 lineto rmat fill}bind def/mymakefont{/size exch def/name exch def/i exch def
/myfontdict name cvn findfont def myfontdict begin Encoding StandardEncoding
eq/NextStepEncoding where{pop Encoding NextStepEncoding eq or}if end{
myfontdict FmEncode/gfontdict exch def/gfontdict(F )dup 1 i( )cvs
putinterval cvn gfontdict definefont def}{/gfontdict myfontdict def}ifelse
/myfonts[myfonts aload pop null]def myfonts i gfontdict[size 0 0 size neg 0 0
]makefont put}def/mymakefontmetric{/BitmapWidths exch 0 eq def mymakefont}def
/FF{myfonts exch get setfont}bind def/cliptowindow{initclip}def
/beginprintcode{GS newpath 1 setlinewidth 0 SL 0 setlinejoin[]0 setdash 0
setgray 10 setmiterlimit/FMdicttop countdictstack 1 add def/FMoptop count 7
sub def 200 dict begin/showpage{}def TR dup neg scale 0.0 0.0 M}def
/endprintcode{count -1 FMoptop{pop pop}for countdictstack -1 FMdicttop{pop
end}for GR}def/beginPSInsetprintcode{/pinsetsave save def newpath 1
setlinewidth 0 setlinecap 0 setlinejoin[]0 setdash 0 setgray 10 setmiterlimit
/FMdicttop countdictstack 1 add def/FMoptop count def 200 dict begin/showpage
{}def/showimage{}def}def/endPSInsetprintcode{count -1 FMoptop{pop pop}for
countdictstack -1 FMdicttop{pop end}for pinsetsave restore}def/cacheimage{
/flip exch def/theta exch def/bps exch def/h exch def/w exch def/destHeight
exch def/destWidth exch def/destY exch def/destX exch def/rowbytes w bps mul 7
add 8 idiv def/buffer rowbytes string def GS destX destY TR theta rotate
destWidth flip{neg}if destHeight scale w h bps[w 0 0 h 0 h]{currentfile buffer
readhexstring pop}bind image GR}def/inch{72 mul}def/paperheight 0 def
/paperwidth 0 def/pagedimen{paperheight sub abs 16 lt exch paperwidth sub abs
16 lt and{/papername exch def}{pop}ifelse}def/setpapername{/papersizedict 14
dict def papersizedict begin/papername/unknown def/Letter 8.5 inch 11.0 inch
pagedimen/LetterSmall 7.68 inch 10.16 inch pagedimen/Tabloid 11.0 inch 17.0
inch pagedimen/Ledger 17.0 inch 11.0 inch pagedimen/Legal 8.5 inch 14.0 inch
pagedimen/Statement 5.5 inch 8.5 inch pagedimen/Executive 7.5 inch 10.0 inch
pagedimen/A3 11.69 inch 16.5 inch pagedimen/A4 8.26 inch 11.69 inch pagedimen
/A4Small 7.47 inch 10.85 inch pagedimen/B4 10.125 inch 14.33 inch pagedimen
/B5 7.16 inch 10.125 inch pagedimen end}def/papersize{papersizedict begin
/Letter{lettertray letter}def/LetterSmall{lettertray lettersmall}def/Tabloid
{11x17tray 11x17}def/Ledger{ledgertray ledger}def/Legal{legaltray legal}def
/Statement{statementtray statement}def/Executive{executivetray executive}def
/A3{a3tray a3}def/A4{a4tray a4}def/A4Small{a4tray a4small}def/B4{b4tray b4}
def/B5{b5tray b5}def/unknown{unknown}def papersizedict dup papername known
{papername}{/unknown}ifelse get end/FMdicttop countdictstack 1 add def
statusdict begin stopped end countdictstack -1 FMdicttop{pop end}for}def
/manualpapersize{papersizedict begin/Letter{letter}def/LetterSmall
{lettersmall}def/Tabloid{11x17}def/Ledger{ledger}def/Legal{legal}def
/Statement{statement}def/Executive{executive}def/A3{a3}def/A4{a4}def/A4Small
{a4small}def/B4{b4}def/B5{b5}def/unknown{unknown}def papersizedict dup
papername known{papername}{/unknown}ifelse get end stopped}def
/desperatepapersize{statusdict/setpageparams known{paperwidth paperheight 0 1
statusdict begin{setpageparams}stopped pop end}if}def/manualfeed false def
/FmHorrible{4 dict begin/execuserobject{pop}def/undefineuserobject{pop}def
/termwindow{}def/currentgstate{null}def}def/FmEndHorrible{end}def end
/FmConfigurePaper{FrameDict begin pop pop/paperheight exch def/paperwidth exch
def setpapername manualfeed{true}{papersize}ifelse{manualpapersize}{false}
ifelse{desperatepapersize}if end}def/ALDsave FMLOCAL/ALDmatrix matrix def
ALDmatrix currentmatrix pop/StartALD{/ALDsave save def savematrix ALDmatrix
setmatrix}bind def/InALD{restorematrix}bind def/DoneALD{ALDsave restore}bind
def
<0f1e3c78f0e1c387> (I1ef1d8) 8 makecontextpattern
<0f87c3e1f0783c1e> (I1ef1f4) 9 makecontextpattern
<cccccccccccccccc> (I1ef210) 10 makecontextpattern
<ffff0000ffff0000> (I1ef22c) 11 makecontextpattern
<8142241818244281> (I1ef248) 12 makecontextpattern
<03060c183060c081> (I1ef264) 13 makecontextpattern
<8040201008040201> (I1ef280) 14 makecontextpattern
gsave
/__NXbasematrix matrix currentmatrix def
grestore
%%EndProlog
%%BeginSetup
%%PaperSize: Letter
%%Feature: *ManualFeed False
%%Feature: *Resolution 400
%%BeginPaperSize: Letter
612 792 (Letter) false FmConfigurePaper
%%EndPaperSize
%%EndSetup
%%Page: 1 1
%%PageBoundingBox: 0 0 612 792
%%PageFonts: (atend)
%%BeginPageSetup
%%PaperSize: Letter
/__NXsheetsavetoken save def
0 0 translate
gsave
/__NXbasematrix matrix currentmatrix def
grestore
gsave
0 0 612 792 rectclip
[1 0 0 -1 0 792] concat
0 0 translate
%%EndPageSetup
FMBEGINPAGE
gsave
0 0 612 792 rectclip
/landscape false def
0 0 612 792 CR
2 SL
3.86 setmiterlimit
0 G
433.01 36 M
71.42 36 L
S
0.5 SL
2 SC
433.01 718.7 M
71.42 718.7 L
S
0 0 612 792 CR
1 G
71.424072 107.136108 359.928009 504.432495 NF
0 G
0 (Times-Bold) 30 1 mymakefontmetric
0 FF
(OSF Mach ) 71.424 128.136 T
1 (Times-BoldItalic) 30 1 mymakefontmetric
1 FF
(F) 218.094 128.136 T
(inal Draft) 236.904 128.136 T
0 FF
(Ser) 71.424 164.136 T
(v) 114.444 164.136 T
(er Library Interfaces) 129.144 164.136 T
2 (Times-Bold) 18 1 mymakefontmetric
2 FF
(Open Softwar) 71.424 262.16 T
(e F) 178.596 262.16 T
(oundation and) 201.637 262.16 T
(Car) 71.424 282.16 T
(negie Mellon Uni) 101.142 282.16 T
(v) 231.966 282.16 T
(ersity) 240.786 282.16 T
(K) 71.424 322.16 T
(eith Loeper) 84.978 322.16 T
(e, Editor) 173.143 322.16 T
71.424072 173.136108 351 30.024002 CR
1 G
71.424072 173.136108 351 30.024002 NF
0 G
377.42 194.16 M
71.42 194.16 L
S
71.424072 539.568604 150.120361 72 CR
1 G
71.424072 539.568604 150.120361 72 NF
0 G
139.02 573.28 M
139.02 601.56 L
114.71 601.56 L
111.24 598.03 L
111.24 573.28 L
F
1 SL
0 SC
139.02 573.28 M
139.02 601.56 L
114.71 601.56 L
111.24 598.03 L
111.24 573.28 L
CS
1 K
1 G
3 (Helvetica-BoldOblique) 36 1 mymakefontmetric
3 FF
(S) 105.218 604.11 T
0 G
0 K
172.81 573.28 M
172.81 601.56 L
148.5 601.56 L
145.03 598.03 L
145.03 573.28 L
F
172.81 573.28 M
172.81 601.56 L
148.5 601.56 L
145.03 598.03 L
145.03 573.28 L
CS
1 K
1 G
(F) 139.011 604.11 T
0 G
0 K
105.23 573.28 M
105.23 601.56 L
80.92 601.56 L
77.44 598.03 L
77.44 573.28 L
F
105.23 573.28 M
105.23 601.56 L
80.92 601.56 L
77.44 598.03 L
77.44 573.28 L
CS
1 K
1 G
(O) 71.424 604.11 T
0 G
0 K
0 0 612 792 CR
1 G
71.424072 700.704712 361.584351 18 NF
0 G
4 (Times-Roman) 10 1 mymakefontmetric
4 FF
(May 3, 1993) 382.178 708.371 T
grestore
FMENDPAGE
grestore
showpage
__NXsheetsavetoken restore
%%PageTrailer
%%Page: 2 2
%%PageBoundingBox: 0 0 612 792
%%PageFonts: (atend)
%%BeginPageSetup
%%PaperSize: Letter
/__NXsheetsavetoken save def
0 0 translate
gsave
/__NXbasematrix matrix currentmatrix def
grestore
gsave
0 0 612 792 rectclip
[1 0 0 -1 0 792] concat
0 0 translate
%%EndPageSetup
FMBEGINPAGE
gsave
0 0 612 792 rectclip
/landscape false def
0 0 612 792 CR
1 G
179.136108 107.136108 361.008423 611.568604 NF
0 G
0 (Times-Roman) 10 1 mymakefontmetric
0 FF
(This book is in the ) 179.136 114.803 T
1 (Times-Bold) 10 1 mymakefontmetric
1 FF
(Open Softwar) 256.086 114.803 T
(e F) 315.626 114.803 T
(oundation Mach) 328.426 114.803 T
0 FF
( series.) 398.716 114.803 T
0 FF
(Books in the OSF Mach series:) 179.136 138.803 T
1 FF
(OSF ) 251.136 162.803 T
(Mach K) 273.086 162.803 T
(er) 307.556 162.803 T
(nel Principles) 316.286 162.803 T
(OSF ) 251.136 186.803 T
(Mach K) 273.086 186.803 T
(er) 307.556 186.803 T
(nel Interfaces) 316.286 186.803 T
(OSF Mach Ser) 251.136 210.803 T
(v) 314.366 210.803 T
(er Writer\325) 319.266 210.803 T
(s Guide) 363.036 210.803 T
(OSF ) 251.136 234.803 T
(Mach Ser) 273.086 234.803 T
(v) 314.366 234.803 T
(er Library Interfaces) 319.266 234.803 T
0 FF
(Re) 179.136 282.803 T
(vision History:) 189.996 282.803 T
(Re) 179.136 306.803 T
(vision 3) 189.996 306.803 T
(Draft: October 7, 1992) 251.136 306.803 T
(Re) 179.136 318.803 T
(vision 3.1) 189.996 318.803 T
(Draft: No) 251.136 318.803 T
(v) 289.586 318.803 T
(ember 13, 1992) 294.436 318.803 T
(Re) 179.136 330.803 T
(vision 3.2) 189.996 330.803 T
(Final Draft: May 3, 1993) 251.136 330.803 T
179.136108 354.802612 M 0.822525 0 32 (Cop) widthshow
195.706161 354.802612 M 0.822525 0 32 (yright 1991-1993 by the Open Softw) widthshow
347.208862 354.802612 M 0.822525 0 32 (are F) widthshow
368.151459 354.802612 M 0.822525 0 32 (oundation, Inc. and Carne) widthshow
474.059143 354.802612 M 0.822525 0 32 (gie Mellon Uni-) widthshow
(v) 179.136 366.803 T
(ersity) 183.986 366.803 T
(.) 205.557 366.803 T
(All rights reserv) 179.136 390.803 T
(ed.) 243.976 390.803 T
179.136108 414.802551 M 1.095657 0 32 (Permission to reproduce this document without fee is hereby granted, pro) widthshow
483.512787 414.802551 M 1.095657 0 32 (vided that the) widthshow
179.136108 426.802551 M 0.037491 0 32 (cop) widthshow
193.476166 426.802551 M 0.037491 0 32 (yright notice and this permission notice appear in all copies, deri) widthshow
452.181213 426.802551 M 0.037491 0 32 (v) widthshow
456.931366 426.802551 M 0.037491 0 32 (ati) widthshow
466.681519 426.802551 M 0.037491 0 32 (v) widthshow
471.531586 426.802551 M 0.037491 0 32 (e w) widthshow
485.62915 426.802551 M 0.037491 0 32 (orks or modi-) widthshow
<de65642076> 179.136 438.803 T
(ersions.) 201.486 438.803 T
179.136108 462.80249 M 0.902435 0 32 (OSF MAKES NO W) widthshow
265.364075 462.80249 M 0.902435 0 32 (ARRRANTY OF ANY KIND WITH REGARD T) widthshow
473.348816 462.80249 M 0.902435 0 32 (O THIS MA) widthshow
524.594299 462.80249 M 0.902435 0 32 (TE-) widthshow
179.136108 474.80249 M 2.301895 0 32 (RIAL, INCLUDING, B) widthshow
279.179962 474.80249 M 2.301895 0 32 (UT NO) widthshow
311.352081 474.80249 M 2.301895 0 32 (T LIMITED T) widthshow
374.095978 474.80249 M 2.301895 0 32 (O, THE IMPLIED W) widthshow
466.452332 474.80249 M 2.301895 0 32 (ARRANTIES OF) widthshow
(MERCHANT) 179.136 486.802 T
(ABILITY AND FITNESS FOR A P) 234.317 486.802 T
(AR) 379.227 486.802 T
(TICULAR PURPOSE.) 392.517 486.802 T
179.136108 510.80246 M 0.174515 0 32 (OSF shall not be liable for errors contained herein or for an) widthshow
418.355896 510.80246 M 0.174515 0 32 (y direct or indirect, incidental,) widthshow
179.136108 522.802429 M 0.67894 0 32 (special or consequential damages in connection with the furnishing, performance, or use) widthshow
(of this material.) 179.136 534.802 T
179.136108 558.802429 M 0.548965 0 32 (This document is partially deri) widthshow
303.852112 558.802429 M 0.548965 0 32 (v) widthshow
308.702209 558.802429 M 0.548965 0 32 (ed from earlier Mach documents written by Eric Cooper) widthshow
537.644165 558.802429 M 0.548965 0 32 (,) widthshow
(Richard P) 179.136 570.802 T
(. Dra) 217.747 570.802 T
(v) 237.537 570.802 T
(es and Randall Dean.) 242.387 570.802 T
grestore
FMENDPAGE
grestore
showpage
__NXsheetsavetoken restore
%%PageTrailer
%%Page: 3 3
%%PageBoundingBox: 0 0 612 792
%%PageFonts: (atend)
%%BeginPageSetup
%%PaperSize: Letter
/__NXsheetsavetoken save def
0 0 translate
gsave
/__NXbasematrix matrix currentmatrix def
grestore
gsave
0 0 612 792 rectclip
[1 0 0 -1 0 792] concat
0 0 translate
%%EndPageSetup
FMBEGINPAGE
gsave
0 0 612 792 rectclip
/landscape false def
0 0 612 792 CR
1 G
72 725.039978 360 11.951996 NF
0 G
0 (Times-Bold) 8 1 mymakefontmetric
0 FF
(Mach 3 Server Library Interfaces) 207.0 732.707 T
1 (Times-Bold) 10 1 mymakefontmetric
1 FF
(iii ) 549.66 732.707 T
1 G
72 49.824005 360 12.024002 NF
0 G
0.25 SL
3.86 setmiterlimit
432 63 M
72 63 L
S
2 SL
432 45 M
72 45 L
S
0.25 SL
2 SC
432 720 M
72 720 L
S
0 0 612 792 CR
1 G
72 108 360 594 NF
0 G
2 (Times-Italic) 24 1 mymakefontmetric
2 FF
72 124.999969 M -0.479736 0 (Contents) ashow
3 (Times-Roman) 12 1 mymakefontmetric
3 FF
(CHAPTER 1) 72.0 165.0 T
4 (Times-Bold) 12 1 mymakefontmetric
4 FF
(Intr) 153.0 165.0 T
(oduction) 173.448 165.0 T
3 FF
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 219.0 165.0 T
(1) 426.0 165.0 T
(Interf) 153.0 179.0 T
(ace Descriptions) 179.532 179.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 261.0 179.0 T
(1) 426.0 179.0 T
(Interf) 153.0 193.0 T
(ace T) 179.532 193.0 T
(ypes) 204.889 193.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 228.0 193.0 T
(2) 426.0 193.0 T
(Special F) 153.0 207.0 T
(orms) 197.82 207.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 222.0 207.0 T
(3) 426.0 207.0 T
(P) 153.0 221.0 T
(arameter T) 159.492 221.0 T
(ypes) 210.841 221.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 234.0 221.0 T
(3) 426.0 221.0 T
(CHAPTER 2) 72.0 257.0 T
4 FF
(Library Support Functions) 153.0 257.0 T
3 FF
(. . . . . . . . . . . . . . . . . . . . . . ) 294.0 257.0 T
(5) 426.0 257.0 T
(MA) 153.0 271.0 T
(CH_POR) 171.852 271.0 T
(T_V) 217.141 271.0 T
(ALID) 237.518 271.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . ) 267.0 271.0 T
(6) 426.0 271.0 T
(en) 153.0 285.0 T
(vironment_port) 163.848 285.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 240.0 285.0 T
(7) 426.0 285.0 T
(mach_de) 153.0 299.0 T
(vice_serv) 196.02 299.0 T
(er_port) 241.824 299.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . ) 279.0 299.0 T
(8) 426.0 299.0 T
(mach_error) 153.0 313.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 210.0 313.0 T
(9) 426.0 313.0 T
(mach_error_string) 153.0 327.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 243.0 327.0 T
(10) 420.0 327.0 T
(mach_error_type) 153.0 341.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 237.0 341.0 T
(11) 420.0 341.0 T
(mach_init) 153.0 355.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 201.0 355.0 T
(12) 420.0 355.0 T
(mach_msg_destro) 153.0 369.0 T
(y) 240.204 369.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 249.0 369.0 T
(13) 420.0 369.0 T
(mach_msg_serv) 153.0 383.0 T
(er) 230.808 383.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 243.0 383.0 T
(14) 420.0 383.0 T
(mach_pri) 153.0 397.0 T
(vile) 198.024 397.0 T
(ged_host_port) 215.844 397.0 T
( . . . . . . . . . . . . . . . . . . . . . . ) 285.0 397.0 T
(16) 420.0 397.0 T
(mach_task_self) 153.0 411.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 228.0 411.0 T
(17) 420.0 411.0 T
(mig_dealloc_reply_port) 153.0 425.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . ) 270.0 425.0 T
(18) 420.0 425.0 T
(mig_get_reply_port) 153.0 439.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 249.0 439.0 T
(19) 420.0 439.0 T
(mig_init) 153.0 453.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 195.0 453.0 T
(20) 420.0 453.0 T
(mig_reply_setup) 153.0 467.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 234.0 467.0 T
(21) 420.0 467.0 T
(name_serv) 153.0 481.0 T
(er_port) 204.804 481.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 240.0 481.0 T
(23) 420.0 481.0 T
(quit) 153.0 495.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 174.0 495.0 T
(24) 420.0 495.0 T
(round_page) 153.0 509.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 210.0 509.0 T
(25) 420.0 509.0 T
(service_port) 153.0 523.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 213.0 523.0 T
(26) 420.0 523.0 T
(slot_name) 153.0 537.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 204.0 537.0 T
(27) 420.0 537.0 T
(trunc_page) 153.0 551.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 207.0 551.0 T
(28) 420.0 551.0 T
(vm_page_size) 153.0 565.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 222.0 565.0 T
(29) 420.0 565.0 T
(CHAPTER 3) 72.0 601.0 T
4 FF
(C Thr) 153.0 601.0 T
(ead Functions) 184.452 601.0 T
3 FF
(. . . . . . . . . . . . . . . . . . . . . . . . . . . ) 258.0 601.0 T
(31) 420.0 601.0 T
(condition_alloc) 153.0 615.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 228.0 615.0 T
(32) 420.0 615.0 T
(condition_broadcast) 153.0 629.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 252.0 629.0 T
(33) 420.0 629.0 T
(condition_clear) 153.0 643.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 228.0 643.0 T
(34) 420.0 643.0 T
(condition_free) 153.0 657.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 225.0 657.0 T
(35) 420.0 657.0 T
(condition_init) 153.0 671.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 222.0 671.0 T
(36) 420.0 671.0 T
(condition_name) 153.0 685.0 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 231.0 685.0 T
(37) 420.0 685.0 T
(condition_set_name) 153.0 699.0 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 252.0 699.0 T
(38) 420.0 699.0 T
grestore
FMENDPAGE
grestore
showpage
__NXsheetsavetoken restore
%%PageTrailer
%%Page: 4 4
%%PageBoundingBox: 0 0 612 792
%%PageFonts: (atend)
%%BeginPageSetup
%%PaperSize: Letter
/__NXsheetsavetoken save def
0 0 translate
gsave
/__NXbasematrix matrix currentmatrix def
grestore
gsave
0 0 612 792 rectclip
[1 0 0 -1 0 792] concat
0 0 translate
%%EndPageSetup
FMBEGINPAGE
gsave
0 0 612 792 rectclip
/landscape false def
0 0 612 792 CR
0.25 SL
3.86 setmiterlimit
0 G
540 720 M
180 720 L
S
1 G
180 725.039978 360 11.951996 NF
0 G
0 (Times-Bold) 10 1 mymakefontmetric
0 FF
(iv ) 180.0 732.707 T
1 (Times-Bold) 8 1 mymakefontmetric
1 FF
(Mach 3 Server Library Interfaces) 315.0 732.707 T
1 G
180 49.824005 360 12.024002 NF
0 G
0 SC
540 63 M
180 63 L
S
2 SL
540 45 M
180 45 L
S
0 0 612 792 CR
1 G
180 105.984009 360 596.015991 NF
0 G
2 (Times-Roman) 12 1 mymakefontmetric
2 FF
(condition_signal) 261.0 114.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 342.0 114.984 T
(39) 528.0 114.984 T
(condition_w) 261.0 128.984 T
(ait) 320.88 128.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 333.0 128.984 T
(40) 528.0 128.984 T
(cthread_count) 261.0 142.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 330.0 142.984 T
(42) 528.0 142.984 T
(cthread_data) 261.0 156.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 324.0 156.984 T
(43) 528.0 156.984 T
(cthread_detach) 261.0 170.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 336.0 170.984 T
(44) 528.0 170.984 T
(cthread_e) 261.0 184.984 T
(xit) 307.464 184.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 184.984 T
(45) 528.0 184.984 T
(cthread_fork) 261.0 198.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 324.0 198.984 T
(46) 528.0 198.984 T
(cthread_init) 261.0 212.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 212.984 T
(47) 528.0 212.984 T
(cthread_join) 261.0 226.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 226.984 T
(48) 528.0 226.984 T
(cthread_k) 261.0 240.984 T
(ernel_limit) 308.196 240.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 363.0 240.984 T
(49) 528.0 240.984 T
(cthread_limit) 261.0 254.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 327.0 254.984 T
(50) 528.0 254.984 T
(cthread_mach_msg) 261.0 268.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 357.0 268.984 T
(51) 528.0 268.984 T
(cthread_msg_acti) 261.0 282.984 T
(v) 345.348 282.984 T
(e) 351.168 282.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 357.0 282.984 T
(53) 528.0 282.984 T
(cthread_msg_b) 261.0 296.984 T
(usy) 334.08 296.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 351.0 296.984 T
(54) 528.0 296.984 T
(cthread_name) 261.0 310.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 330.0 310.984 T
(55) 528.0 310.984 T
(cthread_self) 261.0 324.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 324.984 T
(56) 528.0 324.984 T
(cthread_set_data) 261.0 338.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 342.0 338.984 T
(57) 528.0 338.984 T
(cthread_set_k) 261.0 352.984 T
(ernel_limit) 327.528 352.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . ) 381.0 352.984 T
(58) 528.0 352.984 T
(cthread_set_limit) 261.0 366.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 345.0 366.984 T
(59) 528.0 366.984 T
(cthread_set_name) 261.0 380.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 348.0 380.984 T
(60) 528.0 380.984 T
(cthread_stack_size) 261.0 394.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 354.0 394.984 T
(61) 528.0 394.984 T
(cthread_unwire) 261.0 408.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 336.0 408.984 T
(62) 528.0 408.984 T
(cthread_wire) 261.0 422.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 324.0 422.984 T
(63) 528.0 422.984 T
(cthread_yield) 261.0 436.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 327.0 436.984 T
(64) 528.0 436.984 T
(mute) 261.0 450.984 T
(x_alloc) 284.82 450.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 450.984 T
(65) 528.0 450.984 T
(mute) 261.0 464.984 T
(x_clear) 284.82 464.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 464.984 T
(66) 528.0 464.984 T
(mute) 261.0 478.984 T
(x_free) 284.82 478.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 318.0 478.984 T
(67) 528.0 478.984 T
(mute) 261.0 492.984 T
(x_init) 284.82 492.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 315.0 492.984 T
(68) 528.0 492.984 T
(mute) 261.0 506.984 T
(x_lock) 284.82 506.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 318.0 506.984 T
(69) 528.0 506.984 T
(mute) 261.0 520.984 T
(x_name) 284.82 520.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 324.0 520.984 T
(70) 528.0 520.984 T
(mute) 261.0 534.984 T
(x_set_name) 284.82 534.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 345.0 534.984 T
(71) 528.0 534.984 T
(mute) 261.0 548.984 T
(x_try_lock) 284.82 548.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 339.0 548.984 T
(72) 528.0 548.984 T
(mute) 261.0 562.984 T
(x_unlock) 284.82 562.984 T
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 330.0 562.984 T
(73) 528.0 562.984 T
(spin_lock) 261.0 576.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 309.0 576.984 T
(74) 528.0 576.984 T
(spin_try_lock) 261.0 590.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 327.0 590.984 T
(75) 528.0 590.984 T
(spin_unlock) 261.0 604.984 T
( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 321.0 604.984 T
(76) 528.0 604.984 T
(CHAPTER 4) 180.0 640.984 T
3 (Times-Bold) 12 1 mymakefontmetric
3 FF
(Name Ser) 261.0 640.984 T
(v) 311.196 640.984 T
(er) 317.076 640.984 T
2 FF
(. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) 330.0 640.984 T