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
|
# Spanish translation of manpages
# This file is distributed under the same license as the manpages-l10n package.
# Copyright © of this file:
# Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>, 1998.
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n\n"
"POT-Creation-Date: 2024-06-01 05:53+0200\n"
"PO-Revision-Date: 2021-01-29 18:00+0100\n"
"Last-Translator: Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>\n"
"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 20.04.1\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<getutent>()"
msgid "getutent"
msgstr "B<getutent>()"
#. type: TH
#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
msgid "2024-05-02"
msgstr "2 Mayo 2024"
#. type: TH
#: archlinux debian-unstable
#, no-wrap
msgid "Linux man-pages 6.8"
msgstr "Páginas de Manual de Linux 6.8"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "NOMBRE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"getutent, getutid, getutline, pututline, setutent, endutent, utmpname - "
"access utmp file entries"
msgstr ""
"getutent, getutid, getutline, pututline, setutent, endutent, utmpname - "
"acceden a las entradas del fichero utmp"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "LIBRARY"
msgstr "BIBLIOTECA"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Standard C library (I<libc>, I<-lc>)"
msgstr "Biblioteca Estándar C (I<libc>, I<-lc>)"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr "SINOPSIS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<#include E<lt>utmp.hE<gt>>\n"
msgstr "B<#include E<lt>utmp.hE<gt>>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "B<struct utmpx *getutxent(void);>\n"
#| "B<struct utmpx *getutxid(const struct utmpx *);>\n"
#| "B<struct utmpx *getutxline(const struct utmpx *);>\n"
#| "B<struct utmpx *pututxline(const struct utmpx *);>\n"
#| "B<void setutxent(void);>\n"
#| "B<void endutxent(void);>\n"
msgid ""
"B<struct utmp *getutent(void);>\n"
"B<struct utmp *getutid(const struct utmp *>I<ut>B<);>\n"
"B<struct utmp *getutline(const struct utmp *>I<ut>B<);>\n"
msgstr ""
"B<struct utmpx *getutxent(void);>\n"
"B<struct utmpx *getutxid(const struct utmpx *);>\n"
"B<struct utmpx *getutxline(const struct utmpx *);>\n"
"B<struct utmpx *pututxline(const struct utmpx *);>\n"
"B<void setutxent(void);>\n"
"B<void endutxent(void);>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<struct utmp *pututline(const struct utmp *>I<ut>B<);>"
msgid "B<struct utmp *pututline(const struct utmp *>I<ut>B<);>\n"
msgstr "B<struct utmp *pututline(const struct utmp *>I<ut>B<);>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<void setutent(void);>"
msgid ""
"B<void setutent(void);>\n"
"B<void endutent(void);>\n"
msgstr "B<void setutent(void);>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<int utmpname(const char *>I<file>B<);>"
msgid "B<int utmpname(const char *>I<file>B<);>\n"
msgstr "B<int utmpname(const char *>I<fichero>B<);>"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "DESCRIPCIÓN"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"New applications should use the POSIX.1-specified \"utmpx\" versions of "
"these functions; see STANDARDS."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<utmpname>() sets the name of the utmp-format file for the other utmp "
"functions to access. If B<utmpname>() is not used to set the filename "
"before the other functions are used, they assume B<_PATH_UTMP>, as defined "
"in I<E<lt>paths.hE<gt>>."
msgstr ""
"B<utmpname>() establece qué nombre tiene el fichero en formato utmp al que "
"van a acceder las otras funciones descritas aquí. Si B<utmpname>() no se "
"llama para establecer el nombre de fichero antes de que se usen las otras "
"funciones, se asume el nombre B<_PATH_UTMP>, como se define en I<E<lt>paths."
"hE<gt>>."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<setutent>() rewinds the file pointer to the beginning of the utmp file. "
"It is generally a good idea to call it before any of the other functions."
msgstr ""
"B<setutent>() rebobina el indicador de fichero al principio del fichero "
"utmp. Generalmente es una buena idea llamar a esta función antes que "
"cualquiera de las siguientes."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<endutent>() closes the utmp file. It should be called when the user code "
"is done accessing the file with the other functions."
msgstr ""
"B<endutent>() cierra el fichero utmp. Debe llamarse cuando el código de "
"usuario ha terminado de acceder al fichero con las otras funciones."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "B<getutent>() reads a line from the current file position in the utmp "
#| "file. It returns a pointer to a structure containing the fields of the "
#| "line."
msgid ""
"B<getutent>() reads a line from the current file position in the utmp "
"file. It returns a pointer to a structure containing the fields of the "
"line. The definition of this structure is shown in B<utmp>(5)."
msgstr ""
"B<getutent>() lee una línea desde donde está actualmente el indicador de "
"posición del fichero en el de formato utmp. Devuelve un puntero a una "
"estructura que contiene los campos correspondientes a la línea."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<getutid>() searches forward from the current file position in the utmp "
"file based upon I<ut>. If I<ut-E<gt>ut_type> is one of B<RUN_LVL>, "
"B<BOOT_TIME>, B<NEW_TIME>, or B<OLD_TIME>, B<getutid>() will find the first "
"entry whose I<ut_type> field matches I<ut-E<gt>ut_type>. If I<ut-"
"E<gt>ut_type> is one of B<INIT_PROCESS>, B<LOGIN_PROCESS>, B<USER_PROCESS>, "
"or B<DEAD_PROCESS>, B<getutid>() will find the first entry whose I<ut_id> "
"field matches I<ut-E<gt>ut_id>."
msgstr ""
"B<getutid>() busca hacia adelante desde la posición actual en el fichero "
"utmp según I<ut>. Si I<ut-E<gt>ut_type> es B<RUN_LVL>, B<BOOT_TIME>, "
"B<NEW_TIME>, u B<OLD_TIME>, B<getutid>() encontrará la primera entrada cuyo "
"campo I<ut_type> concuerde con I<ut-E<gt>ut_type>. Si I<ut-E<gt>ut_type> es "
"uno de B<INIT_PROCESS>, B<LOGIN_PROCESS>, B<USER_PROCESS>, o "
"B<DEAD_PROCESS>, B<getutid>() encontrará la primera entrada cuyo campo "
"I<ut_id> coincida con I<ut-E<gt>ut_id>."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<getutline>() searches forward from the current file position in the utmp "
"file. It scans entries whose I<ut_type> is B<USER_PROCESS> or "
"B<LOGIN_PROCESS> and returns the first one whose I<ut_line> field matches "
"I<ut-E<gt>ut_line>."
msgstr ""
"B<getutline>() busca hacia adelante desde la posición actual en el fichero "
"utmp. Rastrea las entradas cuyo campo I<ut_type> sea B<USER_PROCESS> o "
"B<LOGIN_PROCESS> y devuelve la primera cuyo campo I<ut_line> coincida con "
"I<ut-E<gt>ut_line>."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<pututline>() writes the I<utmp> structure I<ut> into the utmp file. It "
"uses B<getutid>() to search for the proper place in the file to insert the "
"new entry. If it cannot find an appropriate slot for I<ut>, B<pututline>() "
"will append the new entry to the end of the file."
msgstr ""
"B<pututline>() escribe la estructura I<utmp> I<ut> en el fichero utmp. "
"Utiliza B<getutid>() para buscar el sitio correcto en el fichero donde "
"insertar la nueva entrada. Si no puede encontrar un sitio apropiado para "
"I<ut>, B<pututline>() añadirá la nueva entrada al final del fichero."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "RETURN VALUE"
msgstr "VALOR DEVUELTO"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<getutent>(), B<getutid>(), and B<getutline>() return a pointer to a "
"I<struct utmp> on success, and NULL on failure (which includes the \"record "
"not found\" case). This I<struct utmp> is allocated in static storage, and "
"may be overwritten by subsequent calls."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "On success B<pututline>() returns I<ut>; on failure, it returns NULL."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<utmpname>() returns 0 if the new name was successfully stored, or -1 on "
"failure."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "On failure, these functions I<errno> set to indicate the error."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ERRORS"
msgstr "ERRORES"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<ENOMEM>"
msgstr "B<ENOMEM>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Out of memory."
msgstr "Sin memoria."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<ESRCH>"
msgstr "B<ESRCH>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Record not found."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<setutent>(), B<pututline>(), and the B<getut*>() functions can also fail "
"for the reasons described in B<open>(2)."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "FILES"
msgstr "ARCHIVOS"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "I</var/run/utmp>"
msgstr "I</var/run/utmp>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "database of currently logged-in users"
msgstr "datos de los usuarios que están en el sistema"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "I</var/log/wtmp>"
msgstr "I</var/log/wtmp>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "database of past user logins"
msgstr "base de datos de anteriores inicios de sesión de usuario"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ATTRIBUTES"
msgstr "ATRIBUTOS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For an explanation of the terms used in this section, see B<attributes>(7)."
msgstr ""
"Para obtener una explicación de los términos usados en esta sección, véase "
"B<attributes>(7)."
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Interface"
msgstr "Interfaz"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Attribute"
msgstr "Atributo"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Value"
msgstr "Valor"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".na\n"
msgstr ".na\n"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".nh\n"
msgstr ".nh\n"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<getutent>()"
msgstr "B<getutent>()"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Thread safety"
msgstr "Seguridad del hilo"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"MT-Unsafe init race:utent\n"
"race:utentbuf sig:ALRM timer"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<getutent_r>(), B<getutid_r>(), B<getutline_r>():"
msgid ""
"B<getutid>(),\n"
"B<getutline>()"
msgstr "B<getutent_r>(), B<getutid_r>(), B<getutline_r>():"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"MT-Unsafe init race:utent\n"
"sig:ALRM timer"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<pututline>()"
msgstr "B<pututline>()"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"MT-Unsafe race:utent\n"
"sig:ALRM timer"
msgstr ""
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<getutent_r>(), B<getutid_r>(), B<getutline_r>():"
msgid ""
"B<setutent>(),\n"
"B<endutent>(),\n"
"B<utmpname>()"
msgstr "B<getutent_r>(), B<getutid_r>(), B<getutline_r>():"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "MT-Unsafe race:utent"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In the above table, I<utent> in I<race:utent> signifies that if any of the "
"functions B<setutent>(), B<getutent>(), B<getutid>(), B<getutline>(), "
"B<pututline>(), B<utmpname>(), or B<endutent>() are used in parallel in "
"different threads of a program, then data races could occur."
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "STANDARDS"
msgstr "ESTÁNDARES"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "None."
msgstr ""
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "HISTORY"
msgstr "HISTORIAL"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "XPG2, SVr4."
msgstr "XPG2, SVr4."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "In XPG2 and SVID2 the function I<pututline()> is documented to return "
#| "void, and that is what it does on many systems (AIX, HPUX, Linux libc5). "
#| "HPUX introduces a new function I<_pututline()> with the prototype given "
#| "above for I<pututline()> (also found in Linux libc5)."
msgid ""
"In XPG2 and SVID 2 the function B<pututline>() is documented to return "
"void, and that is what it does on many systems (AIX, HP-UX). HP-UX "
"introduces a new function B<_pututline>() with the prototype given above "
"for B<pututline>()."
msgstr ""
"En XPG2 y SVID2 se dice que la función I<pututline()> devuelve void, y así "
"es en muchos sistemas (AIX, HPUX, Linux libc5). HPUX introduce una nueva "
"función I<_pututline()> con el prototipo dado arriba para I<pututline()> "
"(también encontrada en Linux libc5)."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"All these functions are obsolete now on non-Linux systems. POSIX.1-2001 and "
"POSIX.1-2008, following SUSv1, does not have any of these functions, but "
"instead uses"
msgstr ""
"Todas estas funciones están obsoletas hoy día en sistemas no-Linux. "
"POSIX.1-2001 y POSIX.1-2008, siguiendo a SUSv1, no tiene ninguna de estas "
"funciones, pero en su lugar usa"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<#include E<lt>utmpx.hE<gt>>\n"
msgstr "B<#include E<lt>utmpx.hE<gt>>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<struct utmpx *getutxent(void);>\n"
"B<struct utmpx *getutxid(const struct utmpx *);>\n"
"B<struct utmpx *getutxline(const struct utmpx *);>\n"
"B<struct utmpx *pututxline(const struct utmpx *);>\n"
"B<void setutxent(void);>\n"
"B<void endutxent(void);>\n"
msgstr ""
"B<struct utmpx *getutxent(void);>\n"
"B<struct utmpx *getutxid(const struct utmpx *);>\n"
"B<struct utmpx *getutxline(const struct utmpx *);>\n"
"B<struct utmpx *pututxline(const struct utmpx *);>\n"
"B<void setutxent(void);>\n"
"B<void endutxent(void);>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"These functions are provided by glibc, and perform the same task as their "
"equivalents without the \"x\", but use I<struct utmpx>, defined on Linux to "
"be the same as I<struct utmp>. For completeness, glibc also provides "
"B<utmpxname>(), although this function is not specified by POSIX.1."
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "The I<utmpx> structure is a superset of the I<utmp> structure, with "
#| "additional fields, and larger versions of the existing fields. The "
#| "corresponding files are often I</var/*/utmpx> and I</var/*/wtmpx>."
msgid ""
"On some other systems, the I<utmpx> structure is a superset of the I<utmp> "
"structure, with additional fields, and larger versions of the existing "
"fields, and parallel files are maintained, often I</var/*/utmpx> and I</var/"
"*/wtmpx>."
msgstr ""
"La estructura I<utmpx> es un superconjunto de la estructura I<utmp>, con "
"campos adicionales, y versiones extendidas de los campos existentes. Los "
"ficheros correspondientes son a menudo I</var/*/utmpx> y I</var/*/wtmpx>."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "Linux glibc on the other hand does not use I<utmpx> since its I<utmp> "
#| "structure is already large enough. The functions I<getutxent> etc. are "
#| "aliases for I<getutent> etc."
msgid ""
"Linux glibc on the other hand does not use a parallel I<utmpx> file since "
"its I<utmp> structure is already large enough. The \"x\" functions listed "
"above are just aliases for their counterparts without the \"x\" (e.g., "
"B<getutxent>() is an alias for B<getutent>())."
msgstr ""
"Linux glibc por otra parte no usa I<utmpx> puesto que su estructura I<utmp> "
"es ya lo suficientemente grande. Las funciones I<getutxent> etc. son "
"sinónimos para I<getutent> etc."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NOTES"
msgstr "NOTAS"
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "glibc notes"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The above functions are not thread-safe. glibc adds reentrant versions"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<int getutent_r(struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
"B<int getutid_r(struct utmp *>I<ut>B<,>\n"
"B< struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
"B<int getutline_r(struct utmp *>I<ut>B<,>\n"
"B< struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
msgstr ""
"B<int getutent_r(struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
"B<int getutid_r(struct utmp *>I<ut>B<,>\n"
"B< struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
"B<int getutline_r(struct utmp *>I<ut>B<,>\n"
"B< struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Feature Test Macro Requirements for glibc (see B<feature_test_macros>(7)):"
msgstr ""
"Requisitos de Macros de Prueba de Características para glibc (véase "
"B<feature_test_macros>(7)):"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<getutent_r>(), B<getutid_r>(), B<getutline_r>():"
msgstr "B<getutent_r>(), B<getutid_r>(), B<getutline_r>():"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| " _GNU_SOURCE\n"
#| " || /* since glibc 2.19: */ _DEFAULT_SOURCE\n"
#| " || /* glibc E<lt>= 2.19: */ _SVID_SOURCE || _BSD_SOURCE\n"
msgid ""
" _GNU_SOURCE\n"
" || /* Since glibc 2.19: */ _DEFAULT_SOURCE\n"
" || /* glibc E<lt>= 2.19: */ _SVID_SOURCE || _BSD_SOURCE\n"
msgstr ""
" _GNU_SOURCE\n"
" || /* desde glibc 2.19: */ _DEFAULT_SOURCE\n"
" || /* glibc E<lt>= 2.19: */ _SVID_SOURCE || _BSD_SOURCE\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"These functions are GNU extensions, analogs of the functions of the same "
"name without the _r suffix. The I<ubuf> argument gives these functions a "
"place to store their result. On success, they return 0, and a pointer to "
"the result is written in I<*ubufp>. On error, these functions return -1. "
"There are no utmpx equivalents of the above functions. (POSIX.1 does not "
"specify such functions.)"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "EXAMPLES"
msgstr "EJEMPLOS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following example adds and removes a utmp record, assuming it is run "
"from within a pseudo terminal. For usage in a real application, you should "
"check the return values of B<getpwuid>(3) and B<ttyname>(3)."
msgstr ""
"El siguiente ejemplo añade y quita un registro utmp, suponiendo que se "
"ejecuta desde una pseudo-terminal. Para un uso correcto en una aplicación "
"más realística, se deberían comprobar los valores devueltos por "
"B<getpwuid>(3) y B<ttyname>(3)."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| " entry.ut_type = USER_PROCESS;\n"
#| " entry.ut_pid = getpid();\n"
#| " strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
#| " /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
#| " strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
#| " time(&entry.ut_time);\n"
#| " strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
#| " memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
#| " entry.ut_addr = 0;\n"
#| " setutent();\n"
#| " pututline(&entry);\n"
msgid ""
"#include E<lt>pwd.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>string.hE<gt>\n"
"#include E<lt>time.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"#include E<lt>utmp.hE<gt>\n"
"\\&\n"
"int\n"
"main(void)\n"
"{\n"
" struct utmp entry;\n"
"\\&\n"
" system(\"echo before adding entry:;who\");\n"
"\\&\n"
" entry.ut_type = USER_PROCESS;\n"
" entry.ut_pid = getpid();\n"
" strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
" /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
" strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
" entry.ut_time = time(NULL);\n"
" strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
" memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
" entry.ut_addr = 0;\n"
" setutent();\n"
" pututline(&entry);\n"
"\\&\n"
" system(\"echo after adding entry:;who\");\n"
"\\&\n"
" entry.ut_type = DEAD_PROCESS;\n"
" memset(entry.ut_line, 0, UT_LINESIZE);\n"
" entry.ut_time = 0;\n"
" memset(entry.ut_user, 0, UT_NAMESIZE);\n"
" setutent();\n"
" pututline(&entry);\n"
"\\&\n"
" system(\"echo after removing entry:;who\");\n"
"\\&\n"
" endutent();\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
" entry.ut_type = USER_PROCESS;\n"
" entry.ut_pid = getpid();\n"
" strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
" /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
" strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
" time(&entry.ut_time);\n"
" strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
" memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
" entry.ut_addr = 0;\n"
" setutent();\n"
" pututline(&entry);\n"
#. SRC END
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr "VÉASE TAMBIÉN"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<getutmp>(3), B<utmp>(5)"
msgstr "B<getutmp>(3), B<utmp>(5)"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "2023-02-05"
msgstr "5 Febrero 2023"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "Linux man-pages 6.03"
msgstr "Páginas de Manual de Linux 6.03"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, fuzzy, no-wrap
#| msgid ""
#| "#include E<lt>string.hE<gt>\n"
#| "#include E<lt>stdlib.hE<gt>\n"
#| "#include E<lt>pwd.hE<gt>\n"
#| "#include E<lt>unistd.hE<gt>\n"
#| "#include E<lt>utmp.hE<gt>\n"
#| "#include E<lt>time.hE<gt>\n"
msgid ""
"#include E<lt>pwd.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>string.hE<gt>\n"
"#include E<lt>time.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"#include E<lt>utmp.hE<gt>\n"
msgstr ""
"#include E<lt>string.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>pwd.hE<gt>\n"
"#include E<lt>unistd.hE<gt>\n"
"#include E<lt>utmp.hE<gt>\n"
"#include E<lt>time.hE<gt>\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, fuzzy, no-wrap
#| msgid ""
#| "int\n"
#| "main(int argc, char *argv[])\n"
#| "{\n"
#| " struct utmp entry;\n"
msgid ""
"int\n"
"main(void)\n"
"{\n"
" struct utmp entry;\n"
msgstr ""
"int\n"
"main(int argc, char *argv[])\n"
"{\n"
" struct utmp entry;\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid " system(\"echo before adding entry:;who\");\n"
msgstr " system(\"echo before adding entry:;who\");\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
" entry.ut_type = USER_PROCESS;\n"
" entry.ut_pid = getpid();\n"
" strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
" /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
" strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
" time(&entry.ut_time);\n"
" strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
" memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
" entry.ut_addr = 0;\n"
" setutent();\n"
" pututline(&entry);\n"
msgstr ""
" entry.ut_type = USER_PROCESS;\n"
" entry.ut_pid = getpid();\n"
" strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
" /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
" strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
" time(&entry.ut_time);\n"
" strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
" memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
" entry.ut_addr = 0;\n"
" setutent();\n"
" pututline(&entry);\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid " system(\"echo after adding entry:;who\");\n"
msgstr " system(\"echo after adding entry:;who\");\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
" entry.ut_type = DEAD_PROCESS;\n"
" memset(entry.ut_line, 0, UT_LINESIZE);\n"
" entry.ut_time = 0;\n"
" memset(entry.ut_user, 0, UT_NAMESIZE);\n"
" setutent();\n"
" pututline(&entry);\n"
msgstr ""
" entry.ut_type = DEAD_PROCESS;\n"
" memset(entry.ut_line, 0, UT_LINESIZE);\n"
" entry.ut_time = 0;\n"
" memset(entry.ut_user, 0, UT_NAMESIZE);\n"
" setutent();\n"
" pututline(&entry);\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid " system(\"echo after removing entry:;who\");\n"
msgstr " system(\"echo after removing entry:;who\");\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
" endutent();\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
" endutent();\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
#. type: TH
#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "2023-10-31"
msgstr "31 Octubre 2023"
#. type: TH
#: fedora-40 mageia-cauldron
#, no-wrap
msgid "Linux man-pages 6.06"
msgstr "Páginas de Manual de Linux 6.06"
#. type: TH
#: fedora-rawhide
#, no-wrap
msgid "Linux man-pages 6.7"
msgstr "Páginas de Manual de Linux 6.7"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "2023-03-30"
msgstr "30 Marzo 2023"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Páginas de Manual de Linux 6.04"
#. type: TH
#: opensuse-tumbleweed
#, no-wrap
msgid "Linux man-pages (unreleased)"
msgstr "Páginas de Manual de Linux (no publicadas)"
|