diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:51:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 10:51:52 +0000 |
commit | 4ad94864781f48b1a4b77f9cfb934622bf756ba1 (patch) | |
tree | 3900955c1886e6d2570fea7125ee1f01bafe876d /templates/man9 | |
parent | Adding upstream version 4.22.0. (diff) | |
download | manpages-l10n-4ad94864781f48b1a4b77f9cfb934622bf756ba1.tar.xz manpages-l10n-4ad94864781f48b1a4b77f9cfb934622bf756ba1.zip |
Adding upstream version 4.23.0.upstream/4.23.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'templates/man9')
-rw-r--r-- | templates/man9/proc_dir_entry.9.pot | 378 | ||||
-rw-r--r-- | templates/man9/proc_net_register.9.pot | 123 | ||||
-rw-r--r-- | templates/man9/proc_scsi_register.9.pot | 141 |
3 files changed, 642 insertions, 0 deletions
diff --git a/templates/man9/proc_dir_entry.9.pot b/templates/man9/proc_dir_entry.9.pot new file mode 100644 index 00000000..54a6d95d --- /dev/null +++ b/templates/man9/proc_dir_entry.9.pot @@ -0,0 +1,378 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2024-03-23 07:49+0100\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" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "proc_dir_entry" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "July 1997" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "Linux 2.0.30" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "/proc Functions" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"proc_dir_entry, proc_register, proc_register_dynamic, proc_unregister - " +"register entries in the /proc filesystem." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<#include E<lt>linux/proc_fs.hE<gt>>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_register(\\%struct\\ proc_dir_entry\\ *\\ >I<parent>B<, struct\\ proc_dir_entry\\ *\\ >I<child>B<);>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_unregister(\\%struct\\ proc_dir_entry\\ *\\ >I<parent>B<, int\\ >I<inode>B<);>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_register_dynamic(\\%struct\\ proc_dir_entry\\ *\\ >I<parent>B<, struct\\ proc_dir_entry\\ *\\ >I<child>B<);>" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"The B<proc_register> functions add file or directory entries to the /proc " +"file system. They associate processing routines with each node of the /proc " +"tree. The structure B<proc_dir_entry> is defined as" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +#, no-wrap +msgid "" +"B<struct proc_dir_entry {>\n" +"B<unsigned short low_ino;>\n" +"B<unsigned short namelen;>\n" +"B<const char *name;>\n" +"B<mode_t mode;>\n" +"B<nlink_t nlink;>\n" +"B<uid_t uid;>\n" +"B<gid_t gid;>\n" +"B<unsigned long size;>\n" +"B<struct inode_operations * ops;>\n" +"B<int (*get_info)(char *buffer, char **start,>\n" +"B<off_t offset, int length, int unused);>\n" +"B<void (*fill_inode)(struct inode *);>\n" +"B<struct proc_dir_entry *next, *parent, *subdir;>\n" +"B<void *data;>\n" +"B<};>\n" +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "low_ino" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"The inode number of this directory entry. For B<proc_register> this number " +"should be unique within the /proc filesystem, values are defined in " +"I<E<lt>linux/proc_fs.hE<gt>>. For B<proc_register_dynamic> the inode number " +"is dynamically assigned." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "namelen" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "The length of the name, excluding the trailing null." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "name" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "The name of this node." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "mode" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "The node's type and permissions. Drawn from I<E<lt>linux/stat.hE<gt>>." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "nlink" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"Number of links to the node. Initialise to 2 if mode includes S_IFDIR, 1 " +"otherwise." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "uid" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "The uid that owns the node, normally 0." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "gid" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "The gid that owns the node. normally 0." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "size" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"Sets the size of the node, the value will appear as the inode size in " +"listings and be returned by B<stat>. Unless you really need a size, set " +"this to zero." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "ops" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"Defines the set of inode operations to perform for your /proc node. For a " +"directory node, use I<&proc_dir_inode_operations> unless you have special " +"requirements. For a leaf node, set to NULL unless you have special " +"requirements." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "get_info" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"If defined, this proc is called when the node is read. Should be NULL for " +"directory nodes. B<NOTE:> If you need to return large amounts of data, the " +"proc must return the data in chunks and reposition itself on the next call, " +"using the I<offset> variable. See I<ip_masq_procinfo> for example code with " +"large output." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "fill_inode" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"Dynamically fill in the inode characteristics during directory operations. " +"Not normally required and set to NULL. See proc_pid_fill_inode for example " +"code." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "next, parent, subdir" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"Maintained by /proc routines. Initial value is irrelevant, set to NULL." +msgstr "" + +#. type: IP +#: mageia-cauldron +#, no-wrap +msgid "data" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"An opaque pointer which can be used by proc handlers to pass local data " +"around. Set to whatever you like when calling B<proc_register>, normally " +"NULL. This pointer is copied into the inode u.ip_generic field (by " +"proc_get_inode) so it is available to any proc routines that are passed an " +"inode." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<proc_register> adds the B<child> as a node under the B<parent>." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"B<proc_register_dynamic> dynamically assigns an inode number then adds the " +"B<child> as a node under the B<parent>." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"B<proc_unregister> scans the inode list under the B<parent> for the " +"specified B<inode> number and removes the matching entry." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "RETURN VALUE" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<proc_register> always returns 0." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<proc_register_dynamic>" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"returns 0 for success or B<-EAGAIN> if there are no free dynamic inode " +"numbers." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<proc_unregister>" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "returns 0 for success or B<-EINVAL> if the node was not found." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"B<proc_net_register>(9), B<proc_net_unregister>(9), " +"B<proc_scsi_register>(9), B<proc_scsi_unregister>(9), B<stat>(2)." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "Keith Owens E<lt>kaos@ocs.com.auE<gt>" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"The uniqueness of /proc inode numbers is assumed, not enforced. It is " +"possible to add two nodes with the same inode number." +msgstr "" diff --git a/templates/man9/proc_net_register.9.pot b/templates/man9/proc_net_register.9.pot new file mode 100644 index 00000000..dce9582b --- /dev/null +++ b/templates/man9/proc_net_register.9.pot @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2024-03-23 07:49+0100\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" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "proc_net_register" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "July 1997" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "Linux 2.0.30" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "/proc Functions" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"proc_net_register, proc_net_unregister - register network entries in the /" +"proc filesystem" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<#include E<lt>linux/proc_fs.hE<gt>>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_net_register(\\%struct\\ proc_dir_entry\\ *\\ >I<child>B<);>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_net_unregister(\\%int\\ >I<inode>B<);>" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"These are wrapper functions around B<proc_register> and B<proc_unregister>. " +"They always use a parent of proc_net." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "RETURN VALUE" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "As for B<proc_register> and B<proc_unregister>." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<proc_register>(9), B<proc_unregister>(9)" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "Keith Owens E<lt>kaos@ocs.com.auE<gt>" +msgstr "" diff --git a/templates/man9/proc_scsi_register.9.pot b/templates/man9/proc_scsi_register.9.pot new file mode 100644 index 00000000..a4f1038b --- /dev/null +++ b/templates/man9/proc_scsi_register.9.pot @@ -0,0 +1,141 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2024-03-23 07:49+0100\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" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "proc_scsi_register" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "July 1997" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "Linux 2.0.30" +msgstr "" + +#. type: TH +#: mageia-cauldron +#, no-wrap +msgid "/proc Functions" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"proc_scsi_register, proc_scsi_unregister - register SCSI entries in the /" +"proc filesystem" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<#include E<lt>linux/proc_fs.hE<gt>>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_scsi_register(\\%struct\\ proc_dir_entry\\ *\\ >I<driver>B<, struct\\ proc_dir_entry\\ *\\ >I<child>B<);>" +msgstr "" + +#. type: TP +#: mageia-cauldron +#, no-wrap +msgid "B<int\\ proc_scsi_unregister(\\%struct\\ proc_dir_entry\\ *\\ >I<driver>B<, int\\ >I<inode>B<);>" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"These are wrapper functions around B<proc_register> and B<proc_unregister>." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"B<proc_scsi_register> always sets the I<ops> field of B<child> to " +"proc_scsi_inode_operations. If the child inode number is less than " +"PROC_SCSI_FILE, the child is registered with a parent of proc_scsi and " +"B<driver> is ignored. Otherwise the child is registered with a parent of " +"B<driver>." +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "" +"B<proc_scsi_unregister>. If the child inode number is less than " +"PROC_SCSI_FILE, the child is unregistered with a parent of proc_scsi and " +"B<driver> is ignored. Otherwise the child is unregistered with a parent of " +"B<driver> and scsi_init_free is called on the child." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "RETURN VALUE" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "As for B<proc_register> and B<proc_unregister>." +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "B<proc_register>(9), B<proc_unregister>(9)" +msgstr "" + +#. type: SH +#: mageia-cauldron +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: mageia-cauldron +msgid "Keith Owens E<lt>kaos@ocs.com.auE<gt>" +msgstr "" |