Changeset 9c63d90 in rtems
- Timestamp:
- 01/26/01 21:54:57 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 55a86b4
- Parents:
- be30306
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/sapi/ChangeLog
rbe30306 r9c63d90 1 2001-01-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * include/confdefs.h: include cpuopts.h, replace stubdr w/ devnull. 4 1 5 2000-10-30 Joel Sherrill <joel@OARcorp.com> 2 6 -
c/src/exec/sapi/include/confdefs.h
rbe30306 r9c63d90 39 39 extern "C" { 40 40 #endif 41 41 42 /* 43 * Include the executive's configuration 44 */ 45 #include <rtems/score/cpuopts.h> 46 42 47 extern rtems_initialization_tasks_table Initialization_tasks[]; 43 48 extern rtems_driver_address_table Device_drivers[]; … … 57 62 */ 58 63 64 #ifdef RTEMS_NEWLIB 59 65 #define CONFIGURE_NEWLIB_EXTENSION 1 66 #endif 60 67 #define CONFIGURE_MALLOC_REGION 1 61 68 … … 263 270 264 271 #ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER 265 #include < stubdrv.h>272 #include <rtems/devnull.h> 266 273 #endif 267 274 … … 277 284 #endif 278 285 #ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER 279 STUB_DRIVER_TABLE_ENTRY,286 DEVNULL_DRIVER_TABLE_ENTRY, 280 287 #endif 281 288 NULL_DRIVER_TABLE_ENTRY -
cpukit/sapi/ChangeLog
rbe30306 r9c63d90 1 2001-01-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * include/confdefs.h: include cpuopts.h, replace stubdr w/ devnull. 4 1 5 2000-10-30 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/sapi/include/confdefs.h
rbe30306 r9c63d90 39 39 extern "C" { 40 40 #endif 41 41 42 /* 43 * Include the executive's configuration 44 */ 45 #include <rtems/score/cpuopts.h> 46 42 47 extern rtems_initialization_tasks_table Initialization_tasks[]; 43 48 extern rtems_driver_address_table Device_drivers[]; … … 57 62 */ 58 63 64 #ifdef RTEMS_NEWLIB 59 65 #define CONFIGURE_NEWLIB_EXTENSION 1 66 #endif 60 67 #define CONFIGURE_MALLOC_REGION 1 61 68 … … 263 270 264 271 #ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER 265 #include < stubdrv.h>272 #include <rtems/devnull.h> 266 273 #endif 267 274 … … 277 284 #endif 278 285 #ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER 279 STUB_DRIVER_TABLE_ENTRY,286 DEVNULL_DRIVER_TABLE_ENTRY, 280 287 #endif 281 288 NULL_DRIVER_TABLE_ENTRY
Note: See TracChangeset
for help on using the changeset viewer.