Changeset df49c60 in rtems for c/src/lib/include
- Timestamp:
- Jun 12, 2000, 3:00:15 PM (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- edeed26
- Parents:
- 0ab65474
- Location:
- c/src/lib/include
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/include/Makefile.am
r0ab65474 rdf49c60 10 10 noinst_HEADERS = $(H_FILES) 11 11 12 PREINSTALL_FILES = \ 13 $(PROJECT_INCLUDE) \ 14 $(noinst_HEADERS:%=$(PROJECT_INCLUDE)/%) 12 PREINSTALL_FILES += $(PROJECT_INCLUDE) \ 13 $(noinst_HEADERS:%=$(PROJECT_INCLUDE)/%) 15 14 16 15 $(PROJECT_INCLUDE): … … 19 18 $(INSTALL_DATA) $< $@ 20 19 21 all-am: $(PREINSTALL_FILES) 22 debug-am: $(PREINSTALL_FILES) 23 profile-am: $(PREINSTALL_FILES) 20 all-local: $(PREINSTALL_FILES) 24 21 25 22 SUBDIRS = sys motorola zilog -
c/src/lib/include/console.h
r0ab65474 rdf49c60 24 24 { console_initialize, console_open, console_close, \ 25 25 console_read, console_write, console_control } 26 27 void console_reserve_resources(28 rtems_configuration_table *configuration29 );30 26 31 27 rtems_device_driver console_initialize( -
c/src/lib/include/motorola/Makefile.am
r0ab65474 rdf49c60 9 9 noinst_HEADERS = $(H_FILES) 10 10 11 PREINSTALL_FILES = \ 12 $(PROJECT_INCLUDE)/motorola \ 13 $(noinst_HEADERS:%=$(PROJECT_INCLUDE)/motorola/%) 11 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola \ 12 $(noinst_HEADERS:%=$(PROJECT_INCLUDE)/motorola/%) 14 13 15 14 $(PROJECT_INCLUDE)/motorola: … … 18 17 $(INSTALL_DATA) $< $@ 19 18 20 all-am: $(PREINSTALL_FILES) 21 debug-am: $(PREINSTALL_FILES) 22 profile-am: $(PREINSTALL_FILES) 19 all-local: $(PREINSTALL_FILES) 23 20 24 21 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/include/rtems/error.h
r0ab65474 rdf49c60 7 7 #ifndef __RTEMS_ERROR_h 8 8 #define __RTEMS_ERROR_h 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 9 13 10 14 /* … … 35 39 extern int rtems_panic_in_progress; 36 40 41 #ifdef __cplusplus 42 } 43 #endif 44 45 37 46 #endif 38 47 /* end of include file */ -
c/src/lib/include/sys/Makefile.am
r0ab65474 rdf49c60 19 19 noinst_HEADERS = utime.h termios.h ioctl.h 20 20 21 PREINSTALL_FILES = \ 22 $(PROJECT_INCLUDE)/sys \ 23 $(H_FILES:%=$(PROJECT_INCLUDE)/sys/%) 21 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \ 22 $(H_FILES:%=$(PROJECT_INCLUDE)/sys/%) 24 23 25 24 $(PROJECT_INCLUDE)/sys: … … 28 27 $(INSTALL_DATA) $< $@ 29 28 30 all-am: $(PREINSTALL_FILES) 31 debug-am: $(PREINSTALL_FILES) 32 profile-am: $(PREINSTALL_FILES) 29 all-local: $(PREINSTALL_FILES) 33 30 34 31 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/include/sys/termios.h
r0ab65474 rdf49c60 14 14 #ifndef TERMIOS_H 15 15 #define TERMIOS_H 16 17 #include <sys/types.h> 16 18 17 19 #ifdef __cplusplus … … 175 177 #define TCSAFLUSH 2 176 178 179 int tcdrain(int); 180 int tcflow(int, int); 181 int tcflush(int, int); 177 182 int tcgetattr(int, struct termios *); 178 183 int tcsetattr(int, int, struct termios *); 179 int tcdrain(int); 184 pid_t tcgetprgrp(int); 185 int tcsetprgrp(int, pid_t); 186 int tcsendbreak(int, int); 187 180 188 speed_t cfgetospeed(const struct termios *tp); 181 189 int cfsetospeed(struct termios *tp, speed_t speed); -
c/src/lib/include/zilog/Makefile.am
r0ab65474 rdf49c60 9 9 noinst_HEADERS = $(H_FILES) 10 10 11 PREINSTALL_FILES = \ 12 $(PROJECT_INCLUDE)/zilog \ 13 $(noinst_HEADERS:%=$(PROJECT_INCLUDE)/zilog/%) 11 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog \ 12 $(noinst_HEADERS:%=$(PROJECT_INCLUDE)/zilog/%) 14 13 15 14 $(PROJECT_INCLUDE)/zilog: … … 18 17 $(INSTALL_DATA) $< $@ 19 18 20 all-am: $(PREINSTALL_FILES) 21 debug-am: $(PREINSTALL_FILES) 22 profile-am: $(PREINSTALL_FILES) 19 all-local: $(PREINSTALL_FILES) 23 20 24 21 include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.