Re: [PATCH] eal: add getline() function for Windows

2025-06-12 Thread Andre Muezerie
On Thu, Jun 12, 2025 at 03:01:03AM +0200, Thomas Monjalon wrote: > 05/05/2025 22:40, Andre Muezerie: > > Existing DPDK code uses getline(), which is a POSIX function and is > > not available in the Windows APIs. > > > > Instead of rewriting it or coming up with some other replacement, this > > pat

Re: [PATCH] eal: add getline() function for Windows

2025-06-11 Thread Thomas Monjalon
05/05/2025 22:40, Andre Muezerie: > Existing DPDK code uses getline(), which is a POSIX function and is > not available in the Windows APIs. > > Instead of rewriting it or coming up with some other replacement, this > patch makes use of the implementation provided by NetBSD to make it > possible t

Re: [PATCH] eal: add getline() function for Windows

2025-05-21 Thread Andre Muezerie
On Wed, May 21, 2025 at 09:00:48AM +0200, Thomas Monjalon wrote: > 21/05/2025 02:35, Andre Muezerie: > > On Tue, May 20, 2025 at 10:14:33AM -0700, Stephen Hemminger wrote: > > > On Mon, 5 May 2025 13:40:07 -0700 > > > Andre Muezerie wrote: > > > > > > > Existing DPDK code uses getline(), which i

Re: [PATCH] eal: add getline() function for Windows

2025-05-21 Thread Thomas Monjalon
21/05/2025 02:35, Andre Muezerie: > On Tue, May 20, 2025 at 10:14:33AM -0700, Stephen Hemminger wrote: > > On Mon, 5 May 2025 13:40:07 -0700 > > Andre Muezerie wrote: > > > > > Existing DPDK code uses getline(), which is a POSIX function and is > > > not available in the Windows APIs. > > > > >

Re: [PATCH] eal: add getline() function for Windows

2025-05-20 Thread Andre Muezerie
On Tue, May 20, 2025 at 10:14:33AM -0700, Stephen Hemminger wrote: > On Mon, 5 May 2025 13:40:07 -0700 > Andre Muezerie wrote: > > > Existing DPDK code uses getline(), which is a POSIX function and is > > not available in the Windows APIs. > > > > Instead of rewriting it or coming up with some

[PATCH] eal: add getline() function for Windows

2025-05-05 Thread Andre Muezerie
Existing DPDK code uses getline(), which is a POSIX function and is not available in the Windows APIs. Instead of rewriting it or coming up with some other replacement, this patch makes use of the implementation provided by NetBSD to make it possible to compile code dependent on getline on Windows