]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
cplusplus guards added in all headers
authorhadaq <hadaq>
Thu, 10 Mar 2005 14:53:03 +0000 (14:53 +0000)
committerhadaq <hadaq>
Thu, 10 Mar 2005 14:53:03 +0000 (14:53 +0000)
compat/libgen.h
compat/pthread.h
compat/semaphore.h
compat/stdint.h
compat/syslog.h

index d3bd3c2cd81ace76e1411c268392a1f640560631..73ef46eb6d76ae614325b1c4c728979b24cdac91 100644 (file)
@@ -1,8 +1,17 @@
-/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/libgen.h,v 1.4 2003-11-24 13:08:33 hadaq Exp $ */
+/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/libgen.h,v 1.5 2005-03-10 14:53:03 hadaq Exp $ */
 #ifndef OUR_LIBGEN_H
 #define OUR_LIBGEN_H
 
 #ifdef HAVE_LIBCOMPAT
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
 #else
 #include </usr/include/libgen.h>
 #endif
index 1d2e94cbd0c521266dac58736c9a1a713c88a119..0e709d0ac9854f4369fd44e3c9479651a946c2e1 100644 (file)
@@ -13,6 +13,10 @@ LynxOS 2.5.  The translation is done according to Appendix B in
 
 #include </usr/include/pthread.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /* Detaching a Thread */
 #ifdef pthread_detach
 #undef pthread_detach
@@ -76,6 +80,10 @@ int PTHREAD_pthread_key_create(pthread_key_t *key, void (*destr_function) (void
 int PTHREAD_pthread_key_delete(pthread_key_t key);
 void *PTHREAD_pthread_getspecific(pthread_key_t key);
 
+#ifdef __cplusplus
+}
+#endif
+
 #else
 #include </usr/include/pthread.h>
 #endif
index 8739b15bbcdb621ce41b09e01c93dd6d58d747cf..018b7607ae920f639c70a46d61a080e2c2e3c15e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/semaphore.h,v 1.4 2003-11-24 13:08:34 hadaq Exp $ */
+/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/semaphore.h,v 1.5 2005-03-10 14:53:03 hadaq Exp $ */
 #ifndef OUR_SEMAPHORE_H
 #define OUR_SEMAPHORE_H
 
@@ -6,6 +6,10 @@
 
 #include <sys/types.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef int sem_t;
 
 #define sem_open SEMAPHORE_sem_open
@@ -22,6 +26,10 @@ int SEMAPHORE_sem_wait(sem_t * sem);
 int SEMAPHORE_sem_trywait(sem_t * sem);
 int SEMAPHORE_sem_post(sem_t * sem);
 
+#ifdef __cplusplus
+}
+#endif
+
 #else
 #include </usr/include/semaphore.h>
 #endif
index e11f8e1bed12d70de705eb161d1c1ddcc8ecf6c4..28b67de4ebbe67bba2da87e6529b3c6245d3f59f 100644 (file)
@@ -1,9 +1,13 @@
-/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/stdint.h,v 1.4 2003-11-24 13:08:34 hadaq Exp $ */
+/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/stdint.h,v 1.5 2005-03-10 14:53:04 hadaq Exp $ */
 #ifndef OUR_STDINT_H
 #define OUR_STDINT_H
 
 #ifdef HAVE_LIBCOMPAT
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 typedef signed char            int8_t;
 typedef short int              int16_t;
 typedef int                    int32_t;
@@ -12,6 +16,10 @@ typedef unsigned char                uint8_t;
 typedef unsigned short int     uint16_t;
 typedef unsigned int           uint32_t;
 
+#ifdef __cplusplus
+}
+#endif
+
 #else
 #include </usr/include/stdint.h>
 #endif
index 95193a407fe049f7e0bff9459a9624b193e8669b..bcd722bf245f2aaaa40637aa8857d3533c887aa6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/syslog.h,v 1.5 2003-11-24 13:08:34 hadaq Exp $ */
+/* $Header: /misc/hadesprojects/daq/cvsroot/eventbuilder/compat/syslog.h,v 1.6 2005-03-10 14:53:04 hadaq Exp $ */
 #ifndef OUR_SYSLOG_H
 #define OUR_SYSLOG_H
 
@@ -6,6 +6,10 @@
 
 #include </usr/include/syslog.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #if !defined(LOG_PERROR)
 #define LOG_PERROR  0x20    /* log to stderr as well */
 #endif
@@ -20,6 +24,10 @@ int SYSLOG_setlogmask(int maskpri);
 #define closelog   SYSLOG_closelog
 #define setlogmask SYSLOG_setlogmask
 
+#ifdef __cplusplus
+}
+#endif
+
 #else
 #include </usr/include/syslog.h>
 #endif