From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x343.google.com (mail-wm1-x343.google.com [IPv6:2a00:1450:4864:20::343]) by sourceware.org (Postfix) with ESMTPS id AE7BA3857C50 for ; Mon, 5 Oct 2020 22:13:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org AE7BA3857C50 Received: by mail-wm1-x343.google.com with SMTP id p15so973889wmi.4 for ; Mon, 05 Oct 2020 15:13:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=piSDHxMppi0CIXJC6D3VAsGPOqAg8EM3DNDGhvsCgQE=; b=NFTi0NfMAqG+1+IVGDrWSzCaMCJNxiNtvWDTyu0zI1HgAf4Q30QVveMLbEPQ29BHuf 2+4hCL9Fbio3EcSalzSYPsLUA/T6J17bDDOBhMTqQ9VsxmHsb+f4/KaTuDcunw5d4oXG /O64go/xMq1Op3sJDFee6dCPphJ8iR3XKf+5ddxayIbR5uaalibsVzeW6r0M0vuJi6Jj aTXzoweF+lw9gFjnIjEf5KWrDLLD2YrwHjhUjcLJQGd3wNEYsDyCTpWl3LOKddK/UBjl R1rxESgvbl3b8ymXMpWss+hcruVbGX/VLgYjbXQU/C4lBsuForgfBhvt6AH8kDOrlgwb 5oWw== X-Gm-Message-State: AOAM532yBtS4Mokwlds3CbCypLL1AR35XFaYv4+xcUuoEbAUrdYxEUVV Nn8BJzKXFf0S8yN04aVH1Is= X-Google-Smtp-Source: ABdhPJzFptfrOBEvjsr0ExMzMNTfxtXm2+xg4ZoX74v5MTkAHvGFEpZczP5URnDQtn+ZCch6ovYfww== X-Received: by 2002:a1c:2042:: with SMTP id g63mr1404387wmg.174.1601935981859; Mon, 05 Oct 2020 15:13:01 -0700 (PDT) Received: from localhost.localdomain ([170.253.60.68]) by smtp.googlemail.com with ESMTPSA id g12sm1552581wro.89.2020.10.05.15.13.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 05 Oct 2020 15:13:01 -0700 (PDT) From: Alejandro Colomar To: mtk.manpages@gmail.com Cc: Alejandro Colomar , linux-man@vger.kernel.org, libc-alpha@sourceware.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] system_data_types.7: Add 'off_t' Date: Tue, 6 Oct 2020 00:12:47 +0200 Message-Id: <20201005221247.13065-1-colomar.6.4.3@gmail.com> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-9.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, GIT_PATCH_0, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Oct 2020 22:13:04 -0000 Signed-off-by: Alejandro Colomar --- man7/system_data_types.7 | 50 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 index b8cbc8ffe..916efef08 100644 --- a/man7/system_data_types.7 +++ b/man7/system_data_types.7 @@ -629,6 +629,56 @@ C99 and later; POSIX.1-2001 and later. See also: .BR lldiv (3) .RE +.\"------------------------------------- off_t ------------------------/ +.TP +.I off_t +.RS +Include: +.IR . +Alternatively, +.IR , +.IR , +.IR , +.IR , +.IR , +or +.IR . +.PP +Used for file sizes. +According to POSIX, +this shall be a signed integer type. +.PP +Versions: +.I +and +.I +define +.I off_t +since POSIX.1-2008. +.PP +Conforming to: +POSIX.1-2001 and later. +.PP +See also: +.BR fallocate (2), +.BR lseek (2), +.BR mmap (2), +.BR mmap2 (2), +.BR posix_fadvise (2), +.BR pread (2), +.BR preadv (2), +.BR truncate (2), +.BR fseeko (3), +.BR getdirentries (3), +.BR lockf (3), +.BR posix_fallocate (3) +.\".PP TODO: loff_t, off64_t +.\"See also the +.\".I loff_t +.\"and +.\".I off64_t +.\"types in this page. +.RE .\"------------------------------------- pid_t ------------------------/ .TP .I pid_t -- 2.28.0