[Mingw-w64-public] Enhanced POSIX Scheduling Policy Support -winpthreads

2024-07-08 Thread Daniel Svoboda
Subject: [PATCH] Enhanced POSIX Scheduling Policy Support Expanded support to include POSIX scheduling policies beyond SCHED_OTHER. Added convert_posix_to_windows_priority function for mapping POSIX priorities to Windows. Ensures full compatibility and functionality with POSIX scheduling polici

Re: [Mingw-w64-public] %s format specifier when gcc is invoked with --std=c99

2024-07-08 Thread Martin Storsjö
On Sun, 7 Jul 2024, Martin Storsjö wrote: On Sun, 7 Jul 2024, Nakai Yuta wrote: Windows classic wprintf treats %s format specifier as wchar_t *, but C standard as char *. See: https://devblogs.microsoft.com/oldnewthing/20190830-00/?p=102823 Yes, this bit is indeed nonstandard. But all the i

Re: [Mingw-w64-public] [PATCH] headers: Import x3daudio.h from wine

2024-07-08 Thread LIU Hao
在 2024-07-05 13:41, Biswapriyo Nath 写道: From 9295f5d6cb78b3a75e83956303e81951d99102ce Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 5 Jul 2024 05:39:55 + Subject: [PATCH] headers: Import x3daudio.h from wine Required forhttps://github.com/microsoft/DirectXTK Signed-off-by: Bisw

Re: [Mingw-w64-public] [PATCH] headers: Add macros for all inline functions in intsafe.h

2024-07-08 Thread LIU Hao
在 2024-07-06 03:38, Biswapriyo Nath 写道: From 104c2390dd794eb3f273fa2a3ad790c7cc7edcbf Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 5 Jul 2024 18:02:05 + Subject: [PATCH] headers: Add macros for all inline functions in intsafe.h Required forhttps://github.com/microsoft/DirectXSh

Re: [Mingw-w64-public] %s format specifier when gcc is invoked with --std=c99

2024-07-08 Thread LIU Hao
在 2024-07-08 20:33, Nakai Yuta 写道: Thank you both for your explanations. Yes, this bit is indeed nonstandard. But all the implementations here do the same nonstandard thing; the msvcr*.dll implementations, the printf functions from UCRT (in they way we call them by default), and the mingw int

Re: [Mingw-w64-public] %s format specifier when gcc is invoked with --std=c99

2024-07-08 Thread Nakai Yuta
Thank you both for your explanations. >Yes, this bit is indeed nonstandard. But all the implementations here do the >same nonstandard thing; > the msvcr*.dll implementations, the printf functions from UCRT (in they way > we call them by default), > and the mingw internal implementations enabled