diff options
Diffstat (limited to 'po/pt_BR/man2/msgctl.2.po')
-rw-r--r-- | po/pt_BR/man2/msgctl.2.po | 860 |
1 files changed, 860 insertions, 0 deletions
diff --git a/po/pt_BR/man2/msgctl.2.po b/po/pt_BR/man2/msgctl.2.po new file mode 100644 index 00000000..558f56eb --- /dev/null +++ b/po/pt_BR/man2/msgctl.2.po @@ -0,0 +1,860 @@ +# Brazilian Portuguese translation of manpages +# This file is distributed under the same license as the manpages-l10n package. +# Copyright © of this file: +# André Luiz Fassone <lonely_wolf@ig.com.br>, 2001. +# Ricardo C.O.Freitas <english.quest@best-service.com>, 2001. +msgid "" +msgstr "" +"Project-Id-Version: manpages-l10n\n" +"POT-Creation-Date: 2024-03-01 17:02+0100\n" +"PO-Revision-Date: 2001-06-02 19:20-0300\n" +"Last-Translator: Ricardo C.O.Freitas <english.quest@best-service.com>\n" +"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." +"org>\n" +"Language: pt_BR\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: Virtaal 1.0.0-beta1\n" + +#. type: TH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "msgctl" +msgstr "msgctl" + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "2023-10-31" +msgstr "31 outubro 2023" + +#. type: TH +#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "Linux man-pages 6.06" +msgstr "Linux man-pages 6.06" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "NAME" +msgstr "NOME" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "msgctl - message control operations" +msgid "msgctl - System V message control operations" +msgstr "msgctl - operações de controle de mensagem" + +#. 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 C Padrão (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 "SINOPSE" + +#. 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>sys/msg.hE<gt>>\n" +msgstr "B<#include E<lt>sys/msg.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<int msgctl(int >I<msqid>B<, int >I<cmd>B<, struct msqid_ds *>I<buf>B<);>\n" +msgstr "B<int msgctl(int >I<msqid>B<, int >I<cmd>B<, struct msqid_ds *>I<buf>B<);>\n" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIÇÃO" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "The function performs the control operation specified by I<cmd> on the " +#| "message queue with identifier I<msqid>. Legal values for I<cmd> are:" +msgid "" +"B<msgctl>() performs the control operation specified by I<cmd> on the " +"System\\ V message queue with identifier I<msqid>." +msgstr "" +"A função executa a operação de controle especificada por I<cmd> na fila de " +"mensagem com o identificador I<msqid>. Valores legais para I<cmd> são:" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The I<msqid_ds> data structure is defined in I<E<lt>sys/msg.hE<gt>> as " +"follows:" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "" +"struct msqid_ds {\n" +" struct ipc_perm msg_perm; /* Ownership and permissions */\n" +" time_t msg_stime; /* Time of last msgsnd(2) */\n" +" time_t msg_rtime; /* Time of last msgrcv(2) */\n" +" time_t msg_ctime; /* Time of creation or last\n" +" modification by msgctl() */\n" +" unsigned long msg_cbytes; /* # of bytes in queue */\n" +" msgqnum_t msg_qnum; /* # number of messages in queue */\n" +" msglen_t msg_qbytes; /* Maximum # of bytes in queue */\n" +" pid_t msg_lspid; /* PID of last msgsnd(2) */\n" +" pid_t msg_lrpid; /* PID of last msgrcv(2) */\n" +"};\n" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "The fields of the I<msqid_ds> structure are as follows:" +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_perm>" +msgstr "I<msg_perm>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "The argument I<cmd> is equal to B<IPC_STAT> but the calling process has " +#| "no read access permissions on the message queue I<msqid>." +msgid "" +"This is an I<ipc_perm> structure (see below) that specifies the access " +"permissions on the message queue." +msgstr "" +"O argumento I<cmd> é igual a B<IPC_STAT> mas o processo solicitante não tem " +"permissão de acesso para leitura na fila de mensagens I<msqid>." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_stime>" +msgstr "I<msg_stime>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "Time of the last B<msgsnd>(2) system call." +msgstr "A hora da última chamada de sistema B<msgsnd>(2)." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_rtime>" +msgstr "I<msg_rtime>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "Time of the last B<msgrcv>(2) system call." +msgstr "A hora da última chamada de sistema B<msgrcv>(2)." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_ctime>" +msgstr "I<msg_ctime>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Time of creation of queue or time of last B<msgctl>() B<IPC_SET> operation." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy, no-wrap +#| msgid "I<msg_qbytes>" +msgid "I<msg_cbytes>" +msgstr "I<msg_qbytes>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Number of bytes in all messages currently on the message queue. This is a " +"nonstandard Linux extension that is not specified in POSIX." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_qnum>" +msgstr "I<msg_qnum>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "Number of messages currently on the message queue." +msgstr "Número de mensagems atualmente na fila de mensagens." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_qbytes>" +msgstr "I<msg_qbytes>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "Maximum number of bytes of message text allowed on the message queue." +msgstr "" +"Número máximo de bytes de texto de mensagem texto permetida na fila de " +"mensagens." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_lspid>" +msgstr "I<msg_lspid>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "ID of the process that performed the last B<msgsnd>(2) system call." +msgstr "ID do processo que executou a última chamada de sistema B<msgsnd>(2)." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<msg_lrpid>" +msgstr "I<msg_lrpid>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "ID of the process that performed the last B<msgrcv>(2) system call." +msgstr "ID do processo que executou a última chamada de sistema B<msgrcv>(2)." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The I<ipc_perm> structure is defined as follows (the highlighted fields are " +"settable using B<IPC_SET>):" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "" +"struct ipc_perm {\n" +" key_t __key; /* Key supplied to msgget(2) */\n" +" uid_t B<uid>; /* Effective UID of owner */\n" +" gid_t B<gid>; /* Effective GID of owner */\n" +" uid_t cuid; /* Effective UID of creator */\n" +" gid_t cgid; /* Effective GID of creator */\n" +" unsigned short B<mode>; /* Permissions */\n" +" unsigned short __seq; /* Sequence number */\n" +"};\n" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The least significant 9 bits of the I<mode> field of the I<ipc_perm> " +"structure define the access permissions for the message queue. The " +"permission bits are as follows:" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "0400" +msgstr "0400" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Read by user" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "0200" +msgstr "0200" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Write by user" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "0040" +msgstr "0040" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Read by group" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "0020" +msgstr "0020" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Write by group" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "0004" +msgstr "0004" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Read by others" +msgstr "" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "0002" +msgstr "0002" + +#. type: tbl table +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Write by others" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "Bits 0100, 0010, and 0001 (the execute bits) are unused by the system." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "Invalid value for I<cmd> or I<msqid>." +msgid "Valid values for I<cmd> are:" +msgstr "Valores inválidos para I<cmd> ou I<msqid>." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<IPC_STAT>" +msgstr "B<IPC_STAT>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "Copy info from the message queue data structure into the structure " +#| "pointed to by I<buf>. The user must have read access privileges on the " +#| "message queue." +msgid "" +"Copy information from the kernel data structure associated with I<msqid> " +"into the I<msqid_ds> structure pointed to by I<buf>. The caller must have " +"read permission on the message queue." +msgstr "" +"Copia as informações da estruturas de dados da fila de mensagem na estrutura " +"apontada por I<buf>. O usuário deve ter privilégio de acesso de leitura na " +"fila de mensagem." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<IPC_SET>" +msgstr "B<IPC_SET>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Write the values of some members of the I<msqid_ds> structure pointed to by " +"I<buf> to the kernel data structure associated with this message queue, " +"updating also its I<msg_ctime> member." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The following members of the structure are updated: I<msg_qbytes>, " +"I<msg_perm.uid>, I<msg_perm.gid>, and (the least significant 9 bits of) " +"I<msg_perm.mode>." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The effective UID of the calling process must match the owner (I<msg_perm." +"uid>) or creator (I<msg_perm.cuid>) of the message queue, or the caller " +"must be privileged. Appropriate privilege (Linux: the B<CAP_SYS_RESOURCE> " +"capability) is required to raise the I<msg_qbytes> value beyond the system " +"parameter B<MSGMNB>." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<IPC_RMID>" +msgstr "B<IPC_RMID>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "Remove immediately the message queue and its data structures awakening " +#| "all waiting reader and writer processes (with an error return and " +#| "B<errno> set to B<EIDRM>). The calling process effective user-ID must be " +#| "one among super-user, creator or owner of the message queue." +msgid "" +"Immediately remove the message queue, awakening all waiting reader and " +"writer processes (with an error return and I<errno> set to B<EIDRM>). The " +"calling process must have appropriate privileges or its effective user ID " +"must be either that of the creator or owner of the message queue. The third " +"argument to B<msgctl>() is ignored in this case." +msgstr "" +"Remove imediatamente a fila de mensagem e as estruturas de dados despertando " +"todos os processos de escrita e leitura em aguardo (com um erro devolvido e " +"B<errno> selecionado para B<EIDRM>). A UID efetiva do processo solicitante " +"dever ser um de superusuário, do criador ou do proprietário da fila de " +"mensagem." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<IPC_INFO> (Linux-specific)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Return information about system-wide message queue limits and parameters in " +"the structure pointed to by I<buf>. This structure is of type I<msginfo> " +"(thus, a cast is required), defined in I<E<lt>sys/msg.hE<gt>> if the " +"B<_GNU_SOURCE> feature test macro is defined:" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "" +"struct msginfo {\n" +" int msgpool; /* Size in kibibytes of buffer pool\n" +" used to hold message data;\n" +" unused within kernel */\n" +" int msgmap; /* Maximum number of entries in message\n" +" map; unused within kernel */\n" +" int msgmax; /* Maximum number of bytes that can be\n" +" written in a single message */\n" +" int msgmnb; /* Maximum number of bytes that can be\n" +" written to queue; used to initialize\n" +" msg_qbytes during queue creation\n" +" (msgget(2)) */\n" +" int msgmni; /* Maximum number of message queues */\n" +" int msgssz; /* Message segment size;\n" +" unused within kernel */\n" +" int msgtql; /* Maximum number of messages on all queues\n" +" in system; unused within kernel */\n" +" unsigned short msgseg;\n" +" /* Maximum number of segments;\n" +" unused within kernel */\n" +"};\n" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The I<msgmni>, I<msgmax>, and I<msgmnb> settings can be changed via I</proc> " +"files of the same name; see B<proc>(5) for details." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<MSG_INFO> (Linux-specific)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Return a I<msginfo> structure containing the same information as for " +"B<IPC_INFO>, except that the following fields are returned with information " +"about system resources consumed by message queues: the I<msgpool> field " +"returns the number of message queues that currently exist on the system; the " +"I<msgmap> field returns the total number of messages in all queues on the " +"system; and the I<msgtql> field returns the total number of bytes in all " +"messages in all queues on the system." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<MSG_STAT> (Linux-specific)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Return a I<msqid_ds> structure as for B<IPC_STAT>. However, the I<msqid> " +"argument is not a queue identifier, but instead an index into the kernel's " +"internal array that maintains information about all message queues on the " +"system." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<MSG_STAT_ANY> (Linux-specific, since Linux 4.17)" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Return a I<msqid_ds> structure as for B<MSG_STAT>. However, I<msg_perm." +"mode> is not checked for read access for I<msqid> meaning that any user can " +"employ this operation (just as any user may read I</proc/sysvipc/msg> to " +"obtain the same information)." +msgstr "" + +#. 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 DE RETORNO" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"On success, B<IPC_STAT>, B<IPC_SET>, and B<IPC_RMID> return 0. A successful " +"B<IPC_INFO> or B<MSG_INFO> operation returns the index of the highest used " +"entry in the kernel's internal array recording information about all message " +"queues. (This information can be used with repeated B<MSG_STAT> or " +"B<MSG_STAT_ANY> operations to obtain information about all queues on the " +"system.) A successful B<MSG_STAT> or B<MSG_STAT_ANY> operation returns the " +"identifier of the queue whose index was given in I<msqid>." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "For a failing return, B<errno> will be set to one among the following " +#| "values:" +msgid "On failure, -1 is returned and I<errno> is set to indicate the error." +msgstr "" +"Para um retorno com falhas, B<errno> será selecionado para um dos valores " +"seguintes:" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "ERRORS" +msgstr "ERROS" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<EACCES>" +msgstr "B<EACCES>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "The argument I<cmd> is equal to B<IPC_STAT> but the calling process has " +#| "no read access permissions on the message queue I<msqid>." +msgid "" +"The argument I<cmd> is equal to B<IPC_STAT> or B<MSG_STAT>, but the calling " +"process does not have read permission on the message queue I<msqid>, and " +"does not have the B<CAP_IPC_OWNER> capability in the user namespace that " +"governs its IPC namespace." +msgstr "" +"O argumento I<cmd> é igual a B<IPC_STAT> mas o processo solicitante não tem " +"permissão de acesso para leitura na fila de mensagens I<msqid>." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<EFAULT>" +msgstr "B<EFAULT>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The argument I<cmd> has the value B<IPC_SET> or B<IPC_STAT>, but the address " +"pointed to by I<buf> isn't accessible." +msgstr "" +"O argumento I<cmd> tem valor B<IPC_SET> ou B<IPC_STAT> mas o endereço que " +"aponta para I<buf> não está acessível." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<EIDRM>" +msgstr "B<EIDRM>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "The message queue was removed." +msgstr "A fila de mensagens foi removida." + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<EINVAL>" +msgstr "B<EINVAL>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Invalid value for I<cmd> or I<msqid>. Or: for a B<MSG_STAT> operation, the " +"index value specified in I<msqid> referred to an array slot that is " +"currently unused." +msgstr "" + +#. type: TP +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<EPERM>" +msgstr "B<EPERM>" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"The argument I<cmd> has the value B<IPC_SET> or B<IPC_RMID>, but the " +"effective user ID of the calling process is not the creator (as found in " +"I<msg_perm.cuid>) or the owner (as found in I<msg_perm.uid>) of the " +"message queue, and the caller is not privileged (Linux: does not have the " +"B<CAP_SYS_ADMIN> capability)." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"An attempt (B<IPC_SET>) was made to increase I<msg_qbytes> beyond the " +"system parameter B<MSGMNB>, but the caller is not privileged (Linux: does " +"not have the B<CAP_SYS_RESOURCE> capability)." +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 "PADRÕES" + +#. type: Plain text +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +msgid "POSIX.1-2008." +msgstr "POSIX.1-2008." + +#. type: SH +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "HISTORY" +msgstr "HISTÓRICO" + +#. SVID does not document the EIDRM error condition. +#. type: Plain text +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +msgid "POSIX.1-2001, SVr4." +msgstr "POSIX.1-2001, SVr4." + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "Various fields in a I<struct msqid_ds> were shorts under Linux 2.2 and " +#| "have become longs under Linux 2.4. To take advantage of this, a " +#| "recompilation under glibc-2.1.91 or later should suffice. (The kernel " +#| "distinguishes old and new calls by a IPC_64 flag in I<cmd>.)" +msgid "" +"Various fields in the I<struct msqid_ds> were typed as I<short> under Linux " +"2.2 and have become I<long> under Linux 2.4. To take advantage of this, a " +"recompilation under glibc-2.1.91 or later should suffice. (The kernel " +"distinguishes old and new calls by an B<IPC_64> flag in I<cmd>.)" +msgstr "" +"Vários campos na I<struct shmid_ds> foram reduzidos no Linux 2.2 e novamente " +"aumentados no 2.4. Para entender a vantagem disto, uma recompilação sob " +"glibc-2.1.91 ou posterior deveria bastar. (O Kernel distingue as velhas das " +"novas chamadas por um sinalizador IPC_64 em I<cmd>.)" + +#. 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: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, fuzzy +#| msgid "" +#| "The B<IPC_INFO>, B<MSG_STAT> and B<MSG_INFO> control calls are used by " +#| "the B<ipcs>(8) program to provide information on allocated resources. " +#| "In the future these can be modified as needed or moved to a proc file " +#| "system interface." +msgid "" +"The B<IPC_INFO>, B<MSG_STAT>, and B<MSG_INFO> operations are used by the " +"B<ipcs>(1) program to provide information on allocated resources. In the " +"future these may modified or moved to a I</proc> filesystem interface." +msgstr "" +"As chamadas de controle B<IPC_INFO>, B<MSG_STAT> e B<MSG_INFO> são usadas " +"pelo programa B<ipcs>(8) para prover informações sobre recursos alocados. No " +"futuro estas podem ser modificadas ou movidas para a interface do sistema de " +"arquivos proc." + +#. 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 "VEJA TAMBÉM" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<msgget>(2), B<msgrcv>(2), B<msgsnd>(2), B<capabilities>(7), " +"B<mq_overview>(7), B<sysvipc>(7)" +msgstr "" +"B<msgget>(2), B<msgrcv>(2), B<msgsnd>(2), B<capabilities>(7), " +"B<mq_overview>(7), B<sysvipc>(7)" + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "2022-12-15" +msgstr "15 dezembro 2022" + +#. type: TH +#: debian-bookworm +#, no-wrap +msgid "Linux man-pages 6.03" +msgstr "Linux man-pages 6.03" + +#. SVID does not document the EIDRM error condition. +#. type: Plain text +#: debian-bookworm +msgid "POSIX.1-2001, POSIX.1-2008, SVr4." +msgstr "POSIX.1-2001, POSIX.1-2008, SVr4." + +#. type: TH +#: debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "2023-03-30" +msgstr "30 março 2023" + +#. type: TH +#: debian-unstable opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages 6.05.01" +msgstr "Linux man-pages 6.05.01" + +#. type: TH +#: opensuse-leap-15-6 +#, no-wrap +msgid "Linux man-pages 6.04" +msgstr "Linux man-pages 6.04" |