mbox series

[v2,0/2] Windows logging

Message ID 20200506013032.7668-1-pallavi.kadam@intel.com (mailing list archive)
Headers
Series Windows logging |

Message

Kadam, Pallavi May 6, 2020, 1:30 a.m. UTC
  This patchset adds EAL logging support on Windows.
Logs will be sent to console output.

v2 Changes:
	Introduced Fnmatch implementation first
	Added logging support in the second patch

Pallavi Kadam (2):
  eal: add fnmatch implementation
  eal: add log support on Windows

 lib/librte_eal/windows/eal.c             |   3 +
 lib/librte_eal/windows/eal_log.c         |  16 +++
 lib/librte_eal/windows/fnmatch.c         | 172 +++++++++++++++++++++++
 lib/librte_eal/windows/include/fnmatch.h |  16 +--
 lib/librte_eal/windows/meson.build       |   2 +
 5 files changed, 201 insertions(+), 8 deletions(-)
 create mode 100644 lib/librte_eal/windows/eal_log.c
 create mode 100644 lib/librte_eal/windows/fnmatch.c
  

Comments

Thomas Monjalon May 7, 2020, 10:19 a.m. UTC | #1
06/05/2020 03:30, Pallavi Kadam:
> This patchset adds EAL logging support on Windows.
> Logs will be sent to console output.
> 
> v2 Changes:
> 	Introduced Fnmatch implementation first
> 	Added logging support in the second patch
> 
> Pallavi Kadam (2):
>   eal: add fnmatch implementation
>   eal: add log support on Windows

Applied, thanks