Changeset b9e230a2 in rtems
- Timestamp:
- 07/08/03 08:38:15 (20 years ago)
- Children:
- bf7d076
- Parents:
- 9cde23b
- Location:
- cpukit/libmisc
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/ChangeLog
r9cde23b rb9e230a2 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * capture/capture-cli.c: Add config-header support. 4 * capture/capture.c: Add config-header support. 5 * cpuuse/cpuuse.c: Add config-header support. 6 * devnull/devnull.c: Add config-header support. 7 * dummy/dummy.c: Add config-header support. 8 * dumpbuf/dumpbuf.c: Add config-header support. 9 * monitor/mon-command.c: Add config-header support. 10 * monitor/mon-config.c: Add config-header support. 11 * monitor/mon-dname.c: Add config-header support. 12 * monitor/mon-driver.c: Add config-header support. 13 * monitor/mon-extension.c: Add config-header support. 14 * monitor/mon-itask.c: Add config-header support. 15 * monitor/mon-manager.c: Add config-header support. 16 * monitor/mon-monitor.c: Add config-header support. 17 * monitor/mon-mpci.c: Add config-header support. 18 * monitor/mon-object.c: Add config-header support. 19 * monitor/mon-prmisc.c: Add config-header support. 20 * monitor/mon-queue.c: Add config-header support. 21 * monitor/mon-server.c: Add config-header support. 22 * monitor/mon-symbols.c: Add config-header support. 23 * monitor/mon-task.c: Add config-header support. 24 * mw-fb/mw_fb.c: Add config-header support. 25 * mw-fb/mw_uid.c: Add config-header support. 26 * rtmonuse/rtmonuse.c: Add config-header support. 27 * serdbg/serdbg.c: Add config-header support. 28 * serdbg/serdbgio.c: Add config-header support. 29 * serdbg/termios_printk.c: Add config-header support. 30 * shell/cmds.c: Add config-header support. 31 * stackchk/check.c: Add config-header support. 32 * untar/untar.c: Add config-header support. 33 1 34 2003-07-07 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 35 -
cpukit/libmisc/capture/capture-cli.c
r9cde23b rb9e230a2 24 24 25 25 */ 26 27 #ifdef HAVE_CONFIG_H 28 #include "config.h" 29 #endif 26 30 27 31 #include <ctype.h> -
cpukit/libmisc/capture/capture.c
r9cde23b rb9e230a2 23 23 24 24 */ 25 26 #ifdef HAVE_CONFIG_H 27 #include "config.h" 28 #endif 25 29 26 30 #include <stdlib.h> -
cpukit/libmisc/cpuuse/cpuuse.c
r9cde23b rb9e230a2 12 12 * 13 13 */ 14 15 #ifdef HAVE_CONFIG_H 16 #include "config.h" 17 #endif 14 18 15 19 #include <rtems.h> -
cpukit/libmisc/devnull/devnull.c
r9cde23b rb9e230a2 14 14 * $Id$ 15 15 */ 16 17 #ifdef HAVE_CONFIG_H 18 #include "config.h" 19 #endif 16 20 17 21 #include <rtems.h> -
cpukit/libmisc/dummy/dummy.c
r9cde23b rb9e230a2 15 15 * $Id$ 16 16 */ 17 18 #ifdef HAVE_CONFIG_H 19 #include "config.h" 20 #endif 17 21 18 22 #include <rtems.h> -
cpukit/libmisc/dumpbuf/dumpbuf.c
r9cde23b rb9e230a2 9 9 * $Id$ 10 10 */ 11 12 #ifdef HAVE_CONFIG_H 13 #include "config.h" 14 #endif 11 15 12 16 #include <stdio.h> -
cpukit/libmisc/monitor/mon-command.c
r9cde23b rb9e230a2 6 6 * $Id$ 7 7 */ 8 9 #ifdef HAVE_CONFIG_H 10 #include "config.h" 11 #endif 8 12 9 13 #include <rtems.h> -
cpukit/libmisc/monitor/mon-config.c
r9cde23b rb9e230a2 7 7 */ 8 8 9 #ifdef HAVE_CONFIG_H 10 #include "config.h" 11 #endif 9 12 10 13 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libmisc/monitor/mon-dname.c
r9cde23b rb9e230a2 19 19 * $Id$ 20 20 */ 21 22 #ifdef HAVE_CONFIG_H 23 #include "config.h" 24 #endif 21 25 22 26 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libmisc/monitor/mon-driver.c
r9cde23b rb9e230a2 19 19 * $Id$ 20 20 */ 21 22 #ifdef HAVE_CONFIG_H 23 #include "config.h" 24 #endif 21 25 22 26 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libmisc/monitor/mon-extension.c
r9cde23b rb9e230a2 4 4 * $Id$ 5 5 */ 6 7 #ifdef HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <rtems.h> -
cpukit/libmisc/monitor/mon-itask.c
r9cde23b rb9e230a2 4 4 * $Id$ 5 5 */ 6 7 #ifdef HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libmisc/monitor/mon-manager.c
r9cde23b rb9e230a2 5 5 * $Id$ 6 6 */ 7 8 #ifdef HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
cpukit/libmisc/monitor/mon-monitor.c
r9cde23b rb9e230a2 22 22 * $Id$ 23 23 */ 24 25 #ifdef HAVE_CONFIG_H 26 #include "config.h" 27 #endif 24 28 25 29 #include <rtems.h> -
cpukit/libmisc/monitor/mon-mpci.c
r9cde23b rb9e230a2 7 7 */ 8 8 9 #ifdef HAVE_CONFIG_H 10 #include "config.h" 11 #endif 9 12 10 13 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libmisc/monitor/mon-object.c
r9cde23b rb9e230a2 16 16 */ 17 17 18 #ifdef HAVE_CONFIG_H 19 #include "config.h" 20 #endif 21 18 22 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 19 23 #include <rtems.h> -
cpukit/libmisc/monitor/mon-prmisc.c
r9cde23b rb9e230a2 7 7 * $Id$ 8 8 */ 9 10 #ifdef HAVE_CONFIG_H 11 #include "config.h" 12 #endif 9 13 10 14 #include <rtems.h> -
cpukit/libmisc/monitor/mon-queue.c
r9cde23b rb9e230a2 2 2 * $Id$ 3 3 */ 4 5 #ifdef HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <rtems.h> -
cpukit/libmisc/monitor/mon-server.c
r9cde23b rb9e230a2 5 5 * $Id$ 6 6 */ 7 8 #ifdef HAVE_CONFIG_H 9 #include "config.h" 10 #endif 7 11 8 12 #include <rtems.h> -
cpukit/libmisc/monitor/mon-symbols.c
r9cde23b rb9e230a2 11 11 * $Id$ 12 12 */ 13 14 #ifdef HAVE_CONFIG_H 15 #include "config.h" 16 #endif 13 17 14 18 #include <string.h> -
cpukit/libmisc/monitor/mon-task.c
r9cde23b rb9e230a2 4 4 * $Id$ 5 5 */ 6 7 #ifdef HAVE_CONFIG_H 8 #include "config.h" 9 #endif 6 10 7 11 #include <rtems.h> -
cpukit/libmisc/mw-fb/mw_fb.c
r9cde23b rb9e230a2 15 15 // 16 16 // $Log$ 17 // Revision 1.1 2000/08/30 08:21:24 joel 18 // 2000-08-26 Rosimildo da Silva <rdasilva@connecttel.com> 19 // 20 // * Added generic Micro FrameBuffer interface for MicroWindows. 21 // This interface allows MicroWindows to under RTEMS. A sample 22 // driver has been developed for the pc386 BSP. See 23 // pc386/fb_vga.c as a sample. 24 // * Added Uniform Input Device interface for MicroWindows. 25 // See PC386 bsp for sample drivers for mouse and keyboard (console). 26 // * mw-bf: New directory. 27 // * Makefile.am, configure.in, wrapup/Makefile.am: Account for mw-fb. 28 // * mw-fb/Makefile.am: New file. 29 // * mw-fb/mw_fb.c: New file. 30 // * mw-fb/mw_fb.h: New file. 31 // * mw-fb/mw_uid.c: New file. 32 // * mw-fb/mw_uid.h: New file. 33 // 17 34 // 18 35 ///////////////////////////////////////////////////////////////////////////// 19 36 */ 37 38 #ifdef HAVE_CONFIG_H 39 #include "config.h" 40 #endif 20 41 21 42 #include <sys/ioctl.h> -
cpukit/libmisc/mw-fb/mw_uid.c
r9cde23b rb9e230a2 14 14 // 15 15 // $Log$ 16 // Revision 1.4 2002/01/04 18:32:48 joel 17 // 2002-01-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 18 // 19 // * mw-fb/mw_uid.c: Apply rtems_set_errno_and_return_minus_one. 20 // 16 21 // Revision 1.3 2000/11/30 14:36:46 joel 17 22 // 2000-11-30 Joel Sherrill <joel@OARcorp.com> … … 46 51 ///////////////////////////////////////////////////////////////////////////// 47 52 */ 53 54 #ifdef HAVE_CONFIG_H 55 #include "config.h" 56 #endif 57 48 58 #include <stdio.h> 49 59 #include <fcntl.h> -
cpukit/libmisc/rtmonuse/rtmonuse.c
r9cde23b rb9e230a2 2 2 * $Id$ 3 3 */ 4 5 #ifdef HAVE_CONFIG_H 6 #include "config.h" 7 #endif 4 8 5 9 #include <rtems.h> -
cpukit/libmisc/serdbg/serdbg.c
r9cde23b rb9e230a2 20 20 * $Id$ 21 21 */ 22 23 #ifdef HAVE_CONFIG_H 24 #include "config.h" 25 #endif 26 22 27 #include <rtems.h> 23 28 #include <stdio.h> -
cpukit/libmisc/serdbg/serdbgio.c
r9cde23b rb9e230a2 26 26 \*===============================================================*/ 27 27 28 #ifdef HAVE_CONFIG_H 29 #include "config.h" 30 #endif 31 28 32 #include <rtems.h> 29 33 #include <rtems/libio_.h> -
cpukit/libmisc/serdbg/termios_printk.c
r9cde23b rb9e230a2 25 25 \*===============================================================*/ 26 26 27 #ifdef HAVE_CONFIG_H 28 #include "config.h" 29 #endif 30 27 31 #include <rtems.h> 28 32 #include <rtems/libio_.h> -
cpukit/libmisc/shell/cmds.c
r9cde23b rb9e230a2 23 23 * $Id$ 24 24 */ 25 26 #ifdef HAVE_CONFIG_H 27 #include "config.h" 28 #endif 25 29 26 30 #include <stdio.h> -
cpukit/libmisc/stackchk/check.c
r9cde23b rb9e230a2 17 17 * 18 18 */ 19 20 #ifdef HAVE_CONFIG_H 21 #include "config.h" 22 #endif 19 23 20 24 #include <rtems.h> -
cpukit/libmisc/untar/untar.c
r9cde23b rb9e230a2 13 13 * $Id$ 14 14 */ 15 16 #ifdef HAVE_CONFIG_H 17 #include "config.h" 18 #endif 15 19 16 20 #include <stdio.h>
Note: See TracChangeset
for help on using the changeset viewer.