Newer
Older
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
#@ cmucl-unix
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: target:code/unix.lisp
msgid "Size of control character vector."
msgstr ""
#: target:code/unix.lisp
msgid "Successful"
msgstr ""
#: target:code/unix.lisp
msgid "Operation not permitted"
msgstr ""
#: target:code/unix.lisp
msgid "No such file or directory"
msgstr ""
#: target:code/unix.lisp
msgid "No such process"
msgstr ""
#: target:code/unix.lisp
msgid "Interrupted system call"
msgstr ""
#: target:code/unix.lisp
msgid "I/O error"
msgstr ""
#: target:code/unix.lisp
msgid "Device not configured"
msgstr ""
#: target:code/unix.lisp
msgid "Arg list too long"
msgstr ""
#: target:code/unix.lisp
msgid "Exec format error"
msgstr ""
#: target:code/unix.lisp
msgid "Bad file descriptor"
msgstr ""
#: target:code/unix.lisp
msgid "No child process"
msgstr ""
#: target:code/unix.lisp
msgid "Resource deadlock avoided"
msgstr ""
#: target:code/unix.lisp
msgid "No more processes"
msgstr ""
#: target:code/unix.lisp
msgid "Try again"
msgstr ""
#: target:code/unix.lisp
msgid "Out of memory"
msgstr ""
#: target:code/unix.lisp
msgid "Permission denied"
msgstr ""
#: target:code/unix.lisp
msgid "Bad address"
msgstr ""
#: target:code/unix.lisp
msgid "Block device required"
msgstr ""
#: target:code/unix.lisp
msgid "Device or resource busy"
msgstr ""
#: target:code/unix.lisp
msgid "File exists"
msgstr ""
#: target:code/unix.lisp
msgid "Cross-device link"
msgstr ""
#: target:code/unix.lisp
msgid "No such device"
msgstr ""
#: target:code/unix.lisp
msgid "Not a director"
msgstr ""
#: target:code/unix.lisp
msgid "Is a directory"
msgstr ""
#: target:code/unix.lisp
msgid "Invalid argument"
msgstr ""
#: target:code/unix.lisp
msgid "File table overflow"
msgstr ""
#: target:code/unix.lisp
msgid "Too many open files"
msgstr ""
#: target:code/unix.lisp
msgid "Inappropriate ioctl for device"
msgstr ""
#: target:code/unix.lisp
msgid "Text file busy"
msgstr ""
#: target:code/unix.lisp
msgid "File too large"
msgstr ""
#: target:code/unix.lisp
msgid "No space left on device"
msgstr ""
#: target:code/unix.lisp
msgid "Illegal seek"
msgstr ""
#: target:code/unix.lisp
msgid "Read-only file system"
msgstr ""
#: target:code/unix.lisp
msgid "Too many links"
msgstr ""
#: target:code/unix.lisp
msgid "Broken pipe"
msgstr ""
#: target:code/unix.lisp
msgid "Numerical argument out of domain"
msgstr ""
#: target:code/unix.lisp
msgid "Result too large"
msgstr ""
#: target:code/unix.lisp
msgid "Math result not representable"
msgstr ""
#: target:code/unix.lisp
msgid "Operation would block"
msgstr ""
#: target:code/unix.lisp
msgid "Resource temporarily unavailable"
msgstr ""
#: target:code/unix.lisp
msgid "Operation now in progress"
msgstr ""
#: target:code/unix.lisp
msgid "Operation already in progress"
msgstr ""
#: target:code/unix.lisp
msgid "Socket operation on non-socket"
msgstr ""
#: target:code/unix.lisp
msgid "Destination address required"
msgstr ""
#: target:code/unix.lisp
msgid "Message too long"
msgstr ""
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
#: target:code/unix.lisp
msgid "Protocol wrong type for socket"
msgstr ""
#: target:code/unix.lisp
msgid "Protocol not available"
msgstr ""
#: target:code/unix.lisp
msgid "Protocol not supported"
msgstr ""
#: target:code/unix.lisp
msgid "Socket type not supported"
msgstr ""
#: target:code/unix.lisp
msgid "Operation not supported on socket"
msgstr ""
#: target:code/unix.lisp
msgid "Protocol family not supported"
msgstr ""
#: target:code/unix.lisp
msgid "Address family not supported by protocol family"
msgstr ""
#: target:code/unix.lisp
msgid "Address already in use"
msgstr ""
#: target:code/unix.lisp
msgid "Can't assign requested address"
msgstr ""
#: target:code/unix.lisp
msgid "Network is down"
msgstr ""
#: target:code/unix.lisp
msgid "Network is unreachable"
msgstr ""
#: target:code/unix.lisp
msgid "Network dropped connection on reset"
msgstr ""
#: target:code/unix.lisp
msgid "Software caused connection abort"
msgstr ""
#: target:code/unix.lisp
msgid "Connection reset by peer"
msgstr ""
#: target:code/unix.lisp
msgid "No buffer space available"
msgstr ""
#: target:code/unix.lisp
msgid "Socket is already connected"
msgstr ""
#: target:code/unix.lisp
msgid "Socket is not connected"
msgstr ""
#: target:code/unix.lisp
msgid "Can't send after socket shutdown"
msgstr ""
#: target:code/unix.lisp
msgid "Too many references: can't splice"
msgstr ""
#: target:code/unix.lisp
msgid "Connection timed out"
msgstr ""
#: target:code/unix.lisp
msgid "Connection refused"
msgstr ""
#: target:code/unix.lisp
msgid "Too many levels of symbolic links"
msgstr ""
#: target:code/unix.lisp
msgid "File name too long"
msgstr ""
#: target:code/unix.lisp
msgid "Host is down"
msgstr ""
#: target:code/unix.lisp
msgid "No route to host"
msgstr ""
#: target:code/unix.lisp
msgid "Directory not empty"
msgstr ""
#: target:code/unix.lisp
msgid "Too many processes"
msgstr ""
#: target:code/unix.lisp
msgid "Too many users"
msgstr ""
#: target:code/unix.lisp
msgid "Disc quota exceeded"
msgstr ""
#: target:code/unix.lisp
msgid "namei should continue locally"
msgstr ""
#: target:code/unix.lisp
msgid "namei was handled remotely"
msgstr ""
#: target:code/unix.lisp
msgid "Remote file system error _N"
msgstr ""
#: target:code/unix.lisp
msgid "syscall was handled by Vice"
msgstr ""
#: target:code/unix.lisp
msgid "No message of desired type"
msgstr ""
#: target:code/unix.lisp
msgid "Identifier removed"
msgstr ""
#: target:code/unix.lisp
msgid "Channel number out of range"
msgstr ""
#: target:code/unix.lisp
msgid "Level 2 not synchronized"
msgstr ""
#: target:code/unix.lisp
msgid "Level 3 halted"
msgstr ""
#: target:code/unix.lisp
msgid "Level 3 reset"
msgstr ""
#: target:code/unix.lisp
msgid "Link number out of range"
msgstr ""
#: target:code/unix.lisp
msgid "Protocol driver not attached"
msgstr ""
#: target:code/unix.lisp
msgid "No CSI structure available"
msgstr ""
#: target:code/unix.lisp
msgid "Level 2 halted"
msgstr ""
#: target:code/unix.lisp
msgid "Deadlock situation detected/avoided"
msgstr ""
#: target:code/unix.lisp
msgid "No record locks available"
msgstr ""
#: target:code/unix.lisp
msgid "Error 47"
msgstr ""
#: target:code/unix.lisp
msgid "Error 48"
msgstr ""
#: target:code/unix.lisp
msgid "Bad exchange descriptor"
msgstr ""
#: target:code/unix.lisp
msgid "Bad request descriptor"
msgstr ""
#: target:code/unix.lisp
msgid "Message tables full"
msgstr ""
#: target:code/unix.lisp
msgid "Anode table overflow"
msgstr ""
#: target:code/unix.lisp
msgid "Bad request code"
msgstr ""
#: target:code/unix.lisp
msgid "Invalid slot"
msgstr ""
#: target:code/unix.lisp
msgid "File locking deadlock"
msgstr ""
#: target:code/unix.lisp
msgid "Bad font file format"
msgstr ""
#: target:code/unix.lisp
msgid "Not a stream device"
msgstr ""
#: target:code/unix.lisp
msgid "No data available"
msgstr ""
#: target:code/unix.lisp
msgid "Timer expired"
msgstr ""
#: target:code/unix.lisp
msgid "Out of stream resources"
msgstr ""
#: target:code/unix.lisp
msgid "Machine is not on the network"
msgstr ""
#: target:code/unix.lisp
msgid "Package not installed"
msgstr ""
#: target:code/unix.lisp
msgid "Object is remote"
msgstr ""
#: target:code/unix.lisp
msgid "Link has been severed"
msgstr ""
#: target:code/unix.lisp
msgid "Advertise error"
msgstr ""
#: target:code/unix.lisp
msgid "Srmount error"
msgstr ""
#: target:code/unix.lisp
msgid "Communication error on send"
msgstr ""
#: target:code/unix.lisp
msgid "Protocol error"
msgstr ""
#: target:code/unix.lisp
msgid "Multihop attempted"
msgstr ""
#: target:code/unix.lisp
msgid "Not a data message"
msgstr ""
#: target:code/unix.lisp
msgid "Value too large for defined data type"
msgstr ""
#: target:code/unix.lisp
msgid "Name not unique on network"
msgstr ""
#: target:code/unix.lisp
msgid "File descriptor in bad state"
msgstr ""
#: target:code/unix.lisp
msgid "Remote address changed"
msgstr ""
#: target:code/unix.lisp
msgid "Can not access a needed shared library"
msgstr ""
#: target:code/unix.lisp
msgid "Accessing a corrupted shared library"
msgstr ""
#: target:code/unix.lisp
msgid ".lib section in a.out corrupted"
msgstr ""
#: target:code/unix.lisp
msgid "Attempting to link in more shared libraries than system limit"
msgstr ""
#: target:code/unix.lisp
msgid "Can not exec a shared library directly"
msgstr ""
#: target:code/unix.lisp
msgid "Error 88"
msgstr ""
#: target:code/unix.lisp
msgid "Operation not applicable"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Number of symbolic links encountered during path name traversal exceeds "
"MAXSYMLINKS"
msgstr ""
#: target:code/unix.lisp
msgid "Error 91"
msgstr ""
#: target:code/unix.lisp
msgid "Error 92"
msgstr ""
#: target:code/unix.lisp
msgid "Option not supported by protocol"
msgstr ""
#: target:code/unix.lisp
msgid "Operation not supported on transport endpoint"
msgstr ""
#: target:code/unix.lisp
msgid "Cannot assign requested address"
msgstr ""
#: target:code/unix.lisp
msgid "Network dropped connection because of reset"
msgstr ""
#: target:code/unix.lisp
msgid "Transport endpoint is already connected"
msgstr ""
#: target:code/unix.lisp
msgid "Transport endpoint is not connected"
msgstr ""
#: target:code/unix.lisp
msgid "Cannot send after socket shutdown"
msgstr ""
#: target:code/unix.lisp
msgid "Too many references: cannot splice"
msgstr ""
#: target:code/unix.lisp
msgid "Stale NFS file handle"
msgstr ""
#: target:code/unix.lisp
msgid "Resource deadlock would occur"
msgstr ""
#: target:code/unix.lisp
msgid "Function not implemented"
msgstr ""
#: target:code/unix.lisp
msgid "Too many symbolic links encountered"
msgstr ""
#: target:code/unix.lisp
msgid "Invalid exchange"
msgstr ""
#: target:code/unix.lisp
msgid "Invalid request descriptor"
msgstr ""
#: target:code/unix.lisp
msgid "Exchange full"
msgstr ""
#: target:code/unix.lisp
msgid "No anode"
msgstr ""
#: target:code/unix.lisp
msgid "Invalid request code"
msgstr ""
#: target:code/unix.lisp
msgid "File locking deadlock error"
msgstr ""
#: target:code/unix.lisp
msgid "Device not a stream"
msgstr ""
#: target:code/unix.lisp
msgid "Out of streams resources"
msgstr ""
#: target:code/unix.lisp
msgid "RFS specific error"
msgstr ""
#: target:code/unix.lisp
msgid "Attempting to link in too many shared libraries"
msgstr ""
#: target:code/unix.lisp
msgid "Cannot exec a shared library directly"
msgstr ""
#: target:code/unix.lisp
msgid "Illegal byte sequence"
msgstr ""
#: target:code/unix.lisp
msgid "Interrupted system call should be restarted _N"
msgstr ""
#: target:code/unix.lisp
msgid "Streams pipe error"
msgstr ""
#: target:code/unix.lisp
msgid "Address family not supported by protocol"
msgstr ""
#: target:code/unix.lisp
msgid "Cannot send after transport endpoint shutdown"
msgstr ""
#: target:code/unix.lisp
msgid "Structure needs cleaning"
msgstr ""
#: target:code/unix.lisp
msgid "Not a XENIX named type file"
msgstr ""
#: target:code/unix.lisp
msgid "No XENIX semaphores available"
msgstr ""
#: target:code/unix.lisp
msgid "Is a named type file"
msgstr ""
#: target:code/unix.lisp
msgid "Remote I/O error"
msgstr ""
#: target:code/unix.lisp
msgid "Quota exceeded"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Returns a string describing the error number which was returned by a\n"
" UNIX system call."
msgstr ""
#: target:code/unix.lisp
msgid "Unknown error [~d]"
msgstr ""
#: target:code/unix.lisp
msgid "Class not yet defined: ~S"
msgstr ""
#: target:code/unix.lisp
msgid "Syscall ~A failed: ~A"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Set the user ID of the calling process to UID.\n"
" If the calling process is the super-user, set the real\n"
" and effective user IDs, and the saved set-user-ID to UID;\n"
" if not, the effective user ID is set to UID."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Set the group ID of the calling process to GID.\n"
" If the calling process is the super-user, set the real\n"
" and effective group IDs, and the saved set-group-ID to GID;\n"
" if not, the effective group ID is set to GID."
msgstr ""
#: target:code/unix.lisp
msgid "Test for read permission"
msgstr ""
#: target:code/unix.lisp
msgid "Test for write permission"
msgstr ""
#: target:code/unix.lisp
msgid "Test for execute permission"
msgstr ""
#: target:code/unix.lisp
msgid "Test for presence of file"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Given a file path (a string) and one of four constant modes,\n"
" unix-access returns T if the file is accessible with that\n"
" mode and NIL if not. It also returns an errno value with\n"
" NIL which determines why the file was not accessible.\n"
"\n"
" The access modes are:\n"
" r_ok Read permission.\n"
" w_ok Write permission.\n"
" x_ok Execute permission.\n"
" f_ok Presence of file."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Given a file path string, unix-chdir changes the current working \n"
" directory to the one specified."
msgstr ""
#: target:code/unix.lisp
msgid "Set user ID on execution"
msgstr ""
#: target:code/unix.lisp
msgid "Set group ID on execution"
msgstr ""
#: target:code/unix.lisp
msgid "Save text image after execution"
msgstr ""
#: target:code/unix.lisp
msgid "Read by owner"
msgstr ""
#: target:code/unix.lisp
msgid "Write by owner"
msgstr ""
#: target:code/unix.lisp
msgid "Execute (search directory) by owner"
msgstr ""
#: target:code/unix.lisp
msgid "Read by group"
msgstr ""
#: target:code/unix.lisp
msgid "Write by group"
msgstr ""
#: target:code/unix.lisp
msgid "Execute (search directory) by group"
msgstr ""
#: target:code/unix.lisp
msgid "Read by others"
msgstr ""
#: target:code/unix.lisp
msgid "Write by others"
msgstr ""
#: target:code/unix.lisp
msgid "Execute (search directory) by others"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Given a file path string and a constant mode, unix-chmod changes the\n"
" permission mode for that file to the one specified. The new mode\n"
" can be created by logically OR'ing the following:\n"
"\n"
" setuidexec Set user ID on execution.\n"
" setgidexec Set group ID on execution.\n"
" savetext Save text image after execution.\n"
" readown Read by owner.\n"
" writeown Write by owner.\n"
" execown Execute (search directory) by owner.\n"
" readgrp Read by group.\n"
" writegrp Write by group.\n"
" execgrp Execute (search directory) by group.\n"
" readoth Read by others.\n"
" writeoth Write by others.\n"
" execoth Execute (search directory) by others.\n"
" \n"
" Thus #o444 and (logior unix:readown unix:readgrp unix:readoth)\n"
" are equivalent for 'mode. The octal-base is familar to Unix users.\n"
"\n"
" It returns T on successfully completion; NIL and an error number\n"
" otherwise."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Given an integer file descriptor and a mode (the same as those\n"
" used for unix-chmod), unix-fchmod changes the permission mode\n"
" for that file to the one specified. T is returned if the call\n"
" was successful."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Given a file path, an integer user-id, and an integer group-id,\n"
" unix-chown changes the owner of the file and the group of the\n"
" file to those specified. Either the owner or the group may be\n"
" left unchanged by specifying them as -1. Note: Permission will\n"
" fail if the caller is not the superuser."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-fchown is like unix-chown, except that it accepts an integer\n"
" file descriptor instead of a file path name."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-getdtablesize returns the maximum size of the file descriptor\n"
" table. (i.e. the maximum number of descriptors that can exist at\n"
" one time.)"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-close takes an integer file descriptor as an argument and\n"
" closes the file associated with it. T is returned upon successful\n"
" completion, otherwise NIL and an error number."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-creat accepts a file name and a mode (same as those for\n"
" unix-chmod) and creates a file by that name with the specified\n"
" permission mode. It returns a file descriptor on success,\n"
" or NIL and an error number otherwise.\n"
"\n"
" This interface is made obsolete by UNIX-OPEN."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-dup duplicates an existing file descriptor (given as the\n"
" argument) and return it. If FD is not a valid file descriptor, NIL\n"
" and an error number are returned."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-dup2 duplicates an existing file descriptor just as unix-dup\n"
" does only the new value of the duplicate descriptor may be requested\n"
" through the second argument. If a file already exists with the\n"
" requested descriptor number, it will be closed and the number\n"
" assigned to the duplicate."
msgstr ""
#: target:code/unix.lisp
msgid "Duplicate a file descriptor"
msgstr ""
#: target:code/unix.lisp
msgid "Get file desc. flags"
msgstr ""
#: target:code/unix.lisp
msgid "Set file desc. flags"
msgstr ""
#: target:code/unix.lisp
msgid "Get file flags"
msgstr ""
#: target:code/unix.lisp
msgid "Set file flags"
msgstr ""
#: target:code/unix.lisp
msgid "Get owner"
msgstr ""
#: target:code/unix.lisp
msgid "Get lock"
msgstr ""
#: target:code/unix.lisp
msgid "Set owner"
msgstr ""
#: target:code/unix.lisp
msgid "Set lock"
msgstr ""
#: target:code/unix.lisp
msgid "Set lock, wait for release"
msgstr ""
#: target:code/unix.lisp
msgid "Non-blocking reads"
msgstr ""
#: target:code/unix.lisp
msgid "Append on each write"
msgstr ""
#: target:code/unix.lisp
msgid "Signal pgrp when data ready"
msgstr ""
#: target:code/unix.lisp
msgid "Create if nonexistant"
msgstr ""
#: target:code/unix.lisp
msgid "Truncate to zero length"
msgstr ""
#: target:code/unix.lisp
msgid "Error if already created"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-fcntl manipulates file descriptors according to the\n"
" argument CMD which can be one of the following:\n"
"\n"
" F-DUPFD Duplicate a file descriptor.\n"
" F-GETFD Get file descriptor flags.\n"
" F-SETFD Set file descriptor flags.\n"
" F-GETFL Get file flags.\n"
" F-SETFL Set file flags.\n"
" F-GETOWN Get owner.\n"
" F-SETOWN Set owner.\n"
"\n"
" The flags that can be specified for F-SETFL are:\n"
"\n"
" FNDELAY Non-blocking reads.\n"
" FAPPEND Append on each write.\n"
" FASYNC Signal pgrp when data ready.\n"
" FCREAT Create if nonexistant.\n"
" FTRUNC Truncate to zero length.\n"
" FEXCL Error if already created.\n"
" "
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-link creates a hard link from the file with name1 to the\n"
" file with name2."
msgstr ""
#: target:code/unix.lisp
msgid "set the file pointer"
msgstr ""
#: target:code/unix.lisp
msgid "increment the file pointer"
msgstr ""
#: target:code/unix.lisp
msgid "extend the file size"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-lseek accepts a file descriptor and moves the file pointer ahead\n"
" a certain offset for that file. Whence can be any of the following:\n"
"\n"
" l_set Set the file pointer.\n"
" l_incr Increment the file pointer.\n"
" l_xtnd Extend the file size.\n"
" _N"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-mkdir creates a new directory with the specified name and mode.\n"
" (Same as those for unix-chmod.) It returns T upon success, otherwise\n"
" NIL and an error number."
msgstr ""
#: target:code/unix.lisp
msgid "Read-only flag."
msgstr ""
#: target:code/unix.lisp
msgid "Write-only flag."
msgstr ""
#: target:code/unix.lisp
msgid "Read-write flag."
msgstr ""
#: target:code/unix.lisp
msgid "Non-blocking I/O"
msgstr ""
#: target:code/unix.lisp
msgid "Append flag."
msgstr ""
#: target:code/unix.lisp
msgid "Create if nonexistant flag."
msgstr ""
#: target:code/unix.lisp
msgid "Truncate flag."
msgstr ""
#: target:code/unix.lisp
msgid "Error if already exists."
msgstr ""
#: target:code/unix.lisp
msgid "Don't assign controlling tty"
msgstr ""
#: target:code/unix.lisp
msgid "Non-blocking mode"
msgstr ""
#: target:code/unix.lisp
msgid "Synchronous writes (on ext2)"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-open opens the file whose pathname is specified by path\n"
" for reading and/or writing as specified by the flags argument.\n"
" The flags argument can be:\n"
"\n"
" o_rdonly Read-only flag.\n"
" o_wronly Write-only flag.\n"
" o_rdwr Read-and-write flag.\n"
" o_append Append flag.\n"
" o_creat Create-if-nonexistant flag.\n"
" o_trunc Truncate-to-size-0 flag.\n"
"\n"
" If the o_creat flag is specified, then the file is created with\n"
" a permission of argument mode if the file doesn't exist. An\n"
" integer file descriptor is returned by unix-open."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-pipe sets up a unix-piping mechanism consisting of\n"
" an input pipe and an output pipe. Unix-Pipe returns two\n"
" values: if no error occurred the first value is the pipe\n"
" to be read from and the second is can be written to. If\n"
" an error occurred the first value is NIL and the second\n"
" the unix error code."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-read attempts to read from the file described by fd into\n"
" the buffer buf until it is full. Len is the length of the buffer.\n"
" The number of bytes actually read is returned or NIL and an error\n"
" number if an error occured."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-readlink invokes the readlink system call on the file name\n"
" specified by the simple string path. It returns up to two values:\n"
" the contents of the symbolic link if the call is successful, or\n"
" NIL and the Unix error number."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-rename renames the file with string name1 to the string\n"
" name2. NIL and an error code is returned if an error occured."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-rmdir attempts to remove the directory name. NIL and\n"
" an error number is returned if an error occured."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Perform the UNIX select(2) system call.\n"
" (declare (type (integer 0 #.FD-SETSIZE) num-descriptors)\n"
" (type (or (alien (* (struct fd-set))) null)\n"
" read-fds write-fds exception-fds)\n"
" (type (or null (unsigned-byte 31)) timeout-secs)\n"
" (type (unsigned-byte 31) timeout-usecs)\n"
" (optimize (speed 3) (safety 0) (inhibit-warnings 3)))"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-select examines the sets of descriptors passed as arguments\n"
" to see if they are ready for reading and writing. See the UNIX\n"
" Programmers Manual for more information."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-sync writes all information in core memory which has been\n"
" modified to disk. It returns NIL and an error code if an error\n"
" occured."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-fsync writes the core image of the file described by\n"
" fd to disk."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-truncate truncates the named file to the length (in\n"
" bytes) specified by len. NIL and an error number is returned\n"
" if the call is unsuccessful."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-ftruncate is similar to unix-truncate except that the first\n"
" argument is a file descriptor rather than a file name."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-symlink creates a symbolic link named name2 to the file\n"
" named name1. NIL and an error number is returned if the call\n"
" is unsuccessful."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-unlink removes the directory entry for the named file.\n"
" NIL and an error code is returned if the call fails."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-write attempts to write a character buffer (buf) of length\n"
" len to the file described by the file descriptor fd. NIL and an\n"
" error is returned if the call is unsuccessful."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-ioctl performs a variety of operations on open i/o\n"
" descriptors. See the UNIX Programmer's Manual for more\n"
" information."
msgstr ""
#: target:code/unix.lisp
msgid "Get terminal attributes."
msgstr ""
#: target:code/unix.lisp
msgid "Set terminal attributes."
msgstr ""
#: target:code/unix.lisp
msgid "Get terminal output speed."
msgstr ""
#: target:code/unix.lisp
msgid "Set terminal output speed."
msgstr ""
#: target:code/unix.lisp
msgid "Bogus baud rate ~S"
msgstr ""
#: target:code/unix.lisp
msgid "Get terminal input speed."
msgstr ""
#: target:code/unix.lisp
msgid "Set terminal input speed."
msgstr ""
#: target:code/unix.lisp
msgid "Send break"
msgstr ""
#: target:code/unix.lisp
msgid "Wait for output for finish"
msgstr ""
#: target:code/unix.lisp
msgid "See tcflush(3)"
msgstr ""
#: target:code/unix.lisp
msgid "Flow control"
msgstr ""
#: target:code/unix.lisp
msgid "Set the tty-process-group for the unix file-descriptor FD to PGRP."
msgstr ""
#: target:code/unix.lisp
msgid "Get the tty-process-group for the unix file-descriptor FD."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Get the tty-process-group for the unix file-descriptor FD. If not supplied,"
"\n"
" FD defaults to /dev/tty."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Set the tty-process-group for the unix file-descriptor FD to PGRP. If not\n"
" supplied, FD defaults to /dev/tty."
msgstr ""
#: target:code/unix.lisp
msgid "Set the socket process-group for the unix file-descriptor FD to PGRP."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-exit terminates the current process with an optional\n"
" error code. If successful, the call doesn't return. If\n"
" unsuccessful, the call returns NIL and an error number."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-stat retrieves information about the specified\n"
" file returning them in the form of multiple values.\n"
" See the UNIX Programmer's Manual for a description\n"
" of the values returned. If the call fails, then NIL\n"
" and an error number is returned instead."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-lstat is similar to unix-stat except the specified\n"
" file must be a symbolic link."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-fstat is similar to unix-stat except the file is specified\n"
" by the file descriptor fd."
msgstr ""
#: target:code/unix.lisp
msgid "The calling process."
msgstr ""
#: target:code/unix.lisp
msgid "Terminated child processes."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Like call getrusage, but return only the system and user time, and returns\n"
" the seconds and microseconds as separate values."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-getrusage returns information about the resource usage\n"
" of the process specified by who. Who can be either the\n"
" current process (rusage_self) or all of the terminated\n"
" child processes (rusage_children). NIL and an error number\n"
" is returned if the call fails."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-times returns information about the cpu time usage of the process\n"
" and its children."
msgstr ""
#: target:code/unix.lisp
msgid ""
"If it works, unix-gettimeofday returns 5 values: T, the seconds and\n"
" microseconds of the current time of day, the timezone (in minutes west\n"
" of Greenwich), and a daylight-savings flag. If it doesn't work, it\n"
" returns NIL and the errno."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-utimes sets the 'last-accessed' and 'last-updated'\n"
" times on a specified file. NIL and an error number is\n"
" returned if the call is unsuccessful."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-setreuid sets the real and effective user-id's of the current\n"
" process to the specified ones. NIL and an error number is returned\n"
" if the call fails."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-setregid sets the real and effective group-id's of the current\n"
" process process to the specified ones. NIL and an error number is\n"
" returned if the call fails."
msgstr ""
#: target:code/unix.lisp
msgid "Unix-getpid returns the process-id of the current process."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-getppid returns the process-id of the parent of the current process."
msgstr ""
#: target:code/unix.lisp
msgid "Unix-getgid returns the real group-id of the current process."
msgstr ""
#: target:code/unix.lisp
msgid "Unix-getegid returns the effective group-id of the current process."
msgstr ""
#: target:code/unix.lisp
msgid "Unix-getpgrp returns the group-id of the calling process."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-setpgrp sets the process group on the process pid to\n"
" pgrp. NIL and an error number are returned upon failure."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-setpgid sets the process group of the process pid to\n"
" pgrp. If pgid is equal to pid, the process becomes a process\n"
" group leader. NIL and an error number are returned upon failure."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-getuid returns the real user-id associated with the\n"
" current process."
msgstr ""
#: target:code/unix.lisp
msgid "Unix-getpagesize returns the number of bytes in a system page."
msgstr ""
#: target:code/unix.lisp
msgid "Unix-gethostname returns the name of the host machine as a string."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-gethostid returns a 32-bit integer which provides unique\n"
" identification for the host machine."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Executes the unix fork system call. Returns 0 in the child and the pid\n"
" of the child in the parent if it works, or NIL and an error number if it\n"
" doesn't work."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Get the value of the environment variable named Name. If no such\n"
" variable exists, Nil is returned."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Adds the environment variable named Name to the environment with\n"
" the given Value if Name does not already exist. If Name does exist,\n"
" the value is changed to Value if Overwrite is non-zero. Otherwise,\n"
" the value is not changed."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Adds or changes the environment. Name-value must be a string of\n"
" the form \"name=value\". If the name does not exist, it is added.\n"
" If name does exist, the value is updated to the given value."
msgstr ""
#: target:code/unix.lisp
msgid "Removes the variable Name from the environment"
msgstr ""
#: target:code/unix.lisp
msgid "Returns either :file, :directory, :link, :special, or NIL."
msgstr ""
#: target:code/unix.lisp
msgid "Returns the pathname with all symbolic links resolved."
msgstr ""
#: target:code/unix.lisp
msgid "Error reading link ~S: ~S"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Accepts a Unix file descriptor and returns T if the device\n"
" associated with it is a terminal."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Executes the Unix execve system call. If the system call suceeds, lisp\n"
" will no longer be running in this process. If the system call fails "
"this\n"
" function returns two values: NIL and an error code. Arg-list should be "
"a\n"
" list of simple-strings which are passed as arguments to the exec'ed "
"program.\n"
" Environment should be an a-list mapping symbols to simple-strings which "
"this\n"
" function bashes together to form the environment for the exec'ed "
"program."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Unix-getitimer returns the INTERVAL and VALUE slots of one of\n"
" three system timers (:real :virtual or :profile). On success,\n"
" unix-getitimer returns 5 values,\n"
" T, it-interval-secs, it-interval-usec, it-value-secs, it-value-usec."
msgstr ""
#: target:code/unix.lisp
msgid ""
" Unix-setitimer sets the INTERVAL and VALUE slots of one of\n"
" three system timers (:real :virtual or :profile). A SIGALRM signal\n"
" will be delivered VALUE <seconds+microseconds> from now. INTERVAL,\n"
" when non-zero, is <seconds+microseconds> to be loaded each time\n"
" the timer expires. Setting INTERVAL and VALUE to zero disables\n"
" the timer. See the Unix man page for more details. On success,\n"
" unix-setitimer returns the old contents of the INTERVAL and VALUE\n"
" slots as in unix-getitimer."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Return a USER-INFO structure for the user identified by LOGIN, or NIL if "
"not found."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Return a USER-INFO structure for the user identified by UID, or NIL if not "
"found."
msgstr ""
#: target:code/unix.lisp
msgid "The maximum size of the group entry buffer"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Return a GROUP-INFO structure for the group identified by NAME, or NIL if "
"not found."
msgstr ""
#: target:code/unix.lisp
msgid ""
"Return a GROUP-INFO structure for the group identified by GID, or NIL if "
"not found."
msgstr ""
#: target:code/unix.lisp
msgid "CPU time per process (in milliseconds)"
msgstr ""
#: target:code/unix.lisp
msgid "Maximum file size"
msgstr ""
#: target:code/unix.lisp
msgid "Data segment size"
msgstr ""
#: target:code/unix.lisp
msgid "Stack size"
msgstr ""
#: target:code/unix.lisp
msgid "Core file size"
msgstr ""
#: target:code/unix.lisp
msgid "Number of open files"
msgstr ""
#: target:code/unix.lisp
msgid "Maximum mapped memory"
msgstr ""
#: target:code/unix.lisp
msgid "CPU time per process"
msgstr ""
#: target:code/unix.lisp
msgid "File size"
msgstr ""
#: target:code/unix.lisp
msgid "Addess space (resident set size)"
msgstr ""
#: target:code/unix.lisp
msgid "Locked-in-memory address space"
msgstr ""
#: target:code/unix.lisp
msgid "Number of processes"
msgstr ""
#: target:code/unix.lisp
msgid ""
"Get the limits on the consumption of system resouce specified by\n"
" Resource. If successful, return three values: T, the current (soft)\n"
" limit, and the maximum (hard) limit."
msgstr ""