From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 06CB9385700C; Wed, 9 Aug 2023 15:25:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 06CB9385700C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1691594727; bh=Bk9tdtPouajq2JQoNgx8N3T2qAFlAAvGNTEnEComn5E=; h=From:To:Subject:Date:From; b=GCvFV11vczErEEuBDl9R11UKu30dOHul1WM89jCT+Zc5E8A4wwXykK0C79LH+7F1I YUKNESH+58DdhtsQ8EIIcjLhUs/+L/gciWkzp4CIcB/A8ssEzKtzeugprcolOWX3H2 YDB8fNc4GmoKoVFHlVNTBO3pC+Y5CF+Pp9b0MhHI= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/main] Cygwin: add SEEK_DATA/SEEK_HOLE addition to release message X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/main X-Git-Oldrev: edfa581d3c5a783ace9f837be1cbaccb97330c34 X-Git-Newrev: 9939aa7d0945719dcf8856d28cd64a7a94fbd888 Message-Id: <20230809152527.06CB9385700C@sourceware.org> Date: Wed, 9 Aug 2023 15:25:27 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D9939aa7d094= 5719dcf8856d28cd64a7a94fbd888 commit 9939aa7d0945719dcf8856d28cd64a7a94fbd888 Author: Corinna Vinschen AuthorDate: Wed Aug 9 17:21:54 2023 +0200 Commit: Corinna Vinschen CommitDate: Wed Aug 9 17:21:54 2023 +0200 Cygwin: add SEEK_DATA/SEEK_HOLE addition to release message =20 Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/release/3.5.0 | 2 ++ winsup/doc/new-features.xml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/winsup/cygwin/release/3.5.0 b/winsup/cygwin/release/3.5.0 index d71de50de536..91c470442a48 100644 --- a/winsup/cygwin/release/3.5.0 +++ b/winsup/cygwin/release/3.5.0 @@ -24,6 +24,8 @@ What's new: =20 - Add support for GB18030 codeset. =20 +- Add support for lseek flags SEEK_DATA and SEEK_HOLE, a GNU extension. + - New API calls: posix_spawn_file_actions_addchdir_np, posix_spawn_file_actions_addfchdir_np. =20 diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml index 14644aa85ebe..98ca7f595c24 100644 --- a/winsup/doc/new-features.xml +++ b/winsup/doc/new-features.xml @@ -45,6 +45,10 @@ could do. Add support for GB18030 codeset. =20 + +Add support for lseek flags SEEK_DATA and SEEK_HOLE, a GNU extension. + + New API calls: posix_spawn_file_actions_addchdir_np, posix_spawn_file_actions_addfchdir_np.