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
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
#@ 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 ""
#: 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."