99a2dd955f
There is no reason for the DPDK libraries to all have 'librte_' prefix on the directory names. This prefix makes the directory names longer and also makes it awkward to add features referring to individual libraries in the build - should the lib names be specified with or without the prefix. Therefore, we can just remove the library prefix and use the library's unique name as the directory name, i.e. 'eal' rather than 'librte_eal' Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
61 lines
1.1 KiB
C
61 lines
1.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _RTE_HEXDUMP_H_
|
|
#define _RTE_HEXDUMP_H_
|
|
|
|
/**
|
|
* @file
|
|
* Simple API to dump out memory in a special hex format.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Dump out memory in a special hex dump format.
|
|
*
|
|
* @param f
|
|
* A pointer to a file for output
|
|
* @param title
|
|
* If not NULL this string is printed as a header to the output.
|
|
* @param buf
|
|
* This is the buffer address to print out.
|
|
* @param len
|
|
* The number of bytes to dump out
|
|
* @return
|
|
* None.
|
|
*/
|
|
|
|
extern void
|
|
rte_hexdump(FILE *f, const char * title, const void * buf, unsigned int len);
|
|
|
|
/**
|
|
* Dump out memory in a hex format with colons between bytes.
|
|
*
|
|
* @param f
|
|
* A pointer to a file for output
|
|
* @param title
|
|
* If not NULL this string is printed as a header to the output.
|
|
* @param buf
|
|
* This is the buffer address to print out.
|
|
* @param len
|
|
* The number of bytes to dump out
|
|
* @return
|
|
* None.
|
|
*/
|
|
|
|
void
|
|
rte_memdump(FILE *f, const char * title, const void * buf, unsigned int len);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _RTE_HEXDUMP_H_ */
|