Changeset b02f920f in rtems
- Timestamp:
- 06/14/10 06:08:50 (13 years ago)
- Branches:
- 4.11, 5, master
- Children:
- acc6a543
- Parents:
- bbeb2485
- Location:
- cpukit
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rbbeb2485 rb02f920f 1 1 2010-06-14 Ralf Corsépius <ralf.corsepius@rtems.org> 2 2 3 * libnetworking/rtems/mkrootfs.h, 4 posix/include/rtems/posix/pthread.h, 5 score/include/rtems/score/coresem.h, 6 score/include/rtems/score/priority.h, 7 score/include/rtems/score/threadq.h, 8 score/include/rtems/score/timestamp.h: Move 'extern "C"'. 3 9 * posix/include/rtems/posix/threadsup.h: Add extern "C". 4 10 * libnetworking/netinet/in_pcb.c: -
cpukit/libnetworking/rtems/mkrootfs.h
rbbeb2485 rb02f920f 25 25 #define _RTEMS_MKROOTFS_H 26 26 27 #include <rtems.h> 28 27 29 #ifdef __cplusplus 28 30 extern "C" { 29 31 #endif 30 31 #include <rtems.h>32 32 33 33 /* -
cpukit/posix/include/rtems/posix/pthread.h
rbbeb2485 rb02f920f 21 21 #define _RTEMS_POSIX_PTHREAD_H 22 22 23 #ifdef __cplusplus24 extern "C" {25 #endif26 23 27 24 #include <rtems/posix/config.h> 28 25 #include <rtems/posix/threadsup.h> 29 26 27 #ifdef __cplusplus 28 extern "C" { 29 #endif 30 30 /** 31 31 * The following sets the minimum stack size for POSIX threads. -
cpukit/score/include/rtems/score/coresem.h
rbbeb2485 rb02f920f 30 30 /**@{*/ 31 31 32 #ifdef __cplusplus33 extern "C" {34 #endif35 36 32 #include <rtems/score/thread.h> 37 33 #include <rtems/score/threadq.h> 38 34 #include <rtems/score/priority.h> 39 35 #include <rtems/score/watchdog.h> 36 37 #ifdef __cplusplus 38 extern "C" { 39 #endif 40 40 41 41 #if defined(RTEMS_POSIX_API) || defined(RTEMS_ITRON_API) -
cpukit/score/include/rtems/score/priority.h
rbbeb2485 rb02f920f 37 37 /**@{*/ 38 38 39 #ifdef __cplusplus40 extern "C" {41 #endif42 43 39 /* 44 40 * Processor specific information. 45 41 */ 46 42 #include <rtems/score/cpu.h> 43 44 #ifdef __cplusplus 45 extern "C" { 46 #endif 47 47 48 48 /** -
cpukit/score/include/rtems/score/threadq.h
rbbeb2485 rb02f920f 28 28 /**@{*/ 29 29 30 #include <rtems/score/tqdata.h> 31 32 #include <rtems/score/object.h> 33 #include <rtems/score/thread.h> 34 #include <rtems/score/watchdog.h> 35 30 36 #ifdef __cplusplus 31 37 extern "C" { 32 38 #endif 33 34 #include <rtems/score/tqdata.h>35 36 #include <rtems/score/object.h>37 #include <rtems/score/thread.h>38 #include <rtems/score/watchdog.h>39 39 40 40 /** -
cpukit/score/include/rtems/score/timestamp.h
rbbeb2485 rb02f920f 39 39 /**@{*/ 40 40 41 #include <rtems/score/timespec.h> 42 41 43 #ifdef __cplusplus 42 44 extern "C" { 43 45 #endif 44 45 #include <rtems/score/timespec.h>46 46 47 47 /*
Note: See TracChangeset
for help on using the changeset viewer.