Changeset ede1a41 in rtems
- Timestamp:
- 06/21/16 11:12:31 (7 years ago)
- Branches:
- 5, master
- Children:
- 506bfc8
- Parents:
- e8020d1
- git-author:
- Sebastian Huber <sebastian.huber@…> (06/21/16 11:12:31)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/22/16 05:29:26)
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/shared/src/irq-default-handler.c
re8020d1 rede1a41 15 15 #include <inttypes.h> 16 16 17 #include <rtems/ print.h>17 #include <rtems/bspIo.h> 18 18 19 19 #include <bsp/irq-generic.h> -
c/src/libchip/rtc/ds1375.c
re8020d1 rede1a41 52 52 53 53 #include <rtems.h> 54 #include <rtems/bspIo.h> 54 55 #include <rtems/rtc.h> 55 56 #include <rtems/score/sysstate.h> -
cpukit/include/rtems/bspIo.h
re8020d1 rede1a41 123 123 extern void rtems_putc(char c); 124 124 125 /**126 * Type definition for function which can be plugged in to127 * certain reporting routines to redirect the output.128 *129 * Use the RTEMS Print interface to call these functions. Do not130 * directly use them.131 *132 * If the user provides their own "printf plugin", then they may133 * redirect those reports as they see fit.134 */135 typedef int (*rtems_print_plugin_t)(void *, const char *format, va_list ap);136 137 125 /**@}*/ 138 126 -
cpukit/include/rtems/print.h
re8020d1 rede1a41 19 19 #define _RTEMS_PRINT_H 20 20 21 #include <stdbool.h> 22 #include <stddef.h> 21 #include <rtems/score/basedefs.h> 22 23 #include <stdarg.h> 23 24 #include <stdio.h> 24 25 #include <rtems/bspIo.h>26 25 27 26 #ifdef __cplusplus … … 37 36 38 37 /** 38 * Type definition for function which can be plugged in to certain reporting 39 * routines to redirect the output. 40 * 41 * Use the RTEMS Print interface to call these functions. Do not directly use 42 * them. 43 * 44 * If the user provides their own printer, then they may redirect those reports 45 * as they see fit. 46 */ 47 typedef int (*rtems_print_printer)(void *, const char *format, va_list ap); 48 49 /** 39 50 * Type definition for the printer structure used to access the kernel print 40 51 * support. … … 42 53 typedef struct rtems_printer { 43 54 void *context; 44 rtems_print_p lugin_tprinter;55 rtems_print_printer printer; 45 56 } rtems_printer; 46 57 -
cpukit/libcsupport/src/printk_plugin.c
re8020d1 rede1a41 20 20 21 21 #include <rtems/print.h> 22 #include <rtems/bspIo.h> 22 23 23 24 static int printk_plugin( -
cpukit/libdrvmgr/drvmgr_translate_check.c
re8020d1 rede1a41 9 9 10 10 #include <drvmgr/drvmgr.h> 11 12 #include <rtems/bspIo.h> 11 13 12 14 /* Calls drvmgr_translate() to translate an address range and check the result, -
cpukit/libfs/src/devfs/devfs_show.c
re8020d1 rede1a41 17 17 18 18 #include "devfs.h" 19 20 #include <rtems/bspIo.h> 19 21 20 22 void devFS_Show(void) -
cpukit/libfs/src/jffs2/include/linux/kernel-rtems.h
re8020d1 rede1a41 19 19 20 20 #include <rtems.h> 21 #include <rtems/ print.h>21 #include <rtems/bspIo.h> 22 22 23 23 static inline char *do_kmemdup(const char *s, size_t n) -
cpukit/libmisc/mouse/mouse_parser.c
re8020d1 rede1a41 41 41 42 42 #include <rtems.h> 43 #include <rtems/bspIo.h> 43 44 #include <rtems/mouse_parser.h> 44 45 #include <rtems/mw_uid.h> -
cpukit/libmisc/mouse/serial_mouse.c
re8020d1 rede1a41 21 21 #include <fcntl.h> 22 22 23 #include <rtems/bspIo.h> 23 24 #include <rtems/libio.h> 24 25 #include <termios.h> -
testsuites/libtests/block08/bdbuf_tests.h
re8020d1 rede1a41 17 17 #include <string.h> 18 18 #include <errno.h> 19 #include <rtems/bspIo.h> 19 20 #include <rtems/diskdevs.h> 20 21 #include <rtems/bdbuf.h> -
testsuites/samples/cdtest/main.cc
re8020d1 rede1a41 24 24 25 25 #include <rtems.h> 26 #include <rtems/bspIo.h> 26 27 #include <rtems/test.h> 27 28 -
testsuites/sptests/spprintk/init.c
re8020d1 rede1a41 25 25 #define TESTS_USE_PRINTK 26 26 #include <tmacros.h> 27 #include <rtems/print.h>28 27 29 28 const char rtems_test_name[] = "SPPRINTK"; -
testsuites/support/include/buffer_test_io.h
re8020d1 rede1a41 6 6 #define __BUFFER_TEST_IO_h 7 7 8 #include <rtems/bspIo.h> 8 9 #include <rtems/test.h> 9 10
Note: See TracChangeset
for help on using the changeset viewer.