source: rtems/cpukit/libmisc/dumpbuf/dumpbuf.h @ dfb3c2b

4.104.114.84.95
Last change on this file since dfb3c2b was dfb3c2b, checked in by Joel Sherrill <joel.sherrill@…>, on 03/12/07 at 20:23:58

2007-03-12 Joel Sherrill <joel@…>

  • libmisc/dumpbuf/dumpbuf.c, libmisc/dumpbuf/dumpbuf.h: Rename Dump_Buffer to rtems_print_buffer.
  • Property mode set to 100644
File size: 784 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1997-2007.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may in
6 *  the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifndef __DUMP_BUFFER_h
13#define __DUMP_BUFFER_h
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19/**
20 *  @brief Print Memory Buffer
21 *
22 *  This method prints @a length bytes beginning at @a buffer in
23 *  a nice format similar to what one would expect from a debugger
24 *  or ROM monitor. 
25 *
26 *  @param[in] buffer is the address of the buffer
27 *  @param[in] length is the length of the buffer
28 */
29void rtems_print_buffer(
30  unsigned char *buffer,
31  int            length
32);
33
34#ifdef __cplusplus
35}
36#endif
37
38#endif
39/* end of include file */
Note: See TracBrowser for help on using the repository browser.