]> rtime.felk.cvut.cz Git - orte.git/commitdiff
documentation patch
authorsmolik <smolik>
Sun, 15 Feb 2004 19:37:04 +0000 (19:37 +0000)
committersmolik <smolik>
Sun, 15 Feb 2004 19:37:04 +0000 (19:37 +0000)
authors
orte/examples/hello/HelloWorldPublisher.c
orte/examples/hello/HelloWorldSubscriber.c
orte/examples/type/readme.txt
orte/liborte/ORTEDomainApp.c
orte/liborte/rtl/pthread_rwlock_init.c

diff --git a/authors b/authors
index b9dc675db24b6f1e8ebecb679bc38b2fe9a89b83..32f29da49f88c3efffab4c5e1f817f211f63590f 100644 (file)
--- a/authors
+++ b/authors
@@ -21,4 +21,7 @@ Michal Sojka <sojka1@fel.cvut.cz>
 
 Jan Kiszka <Jan.Kiszka@web.de>
     * RTAI porting
+    
+Zdenek Sebek <sebek@fel.cvut.cz>
+    * documentation
 
index 12908ebb7203b624cddfade5b93d65aa4d43ff41..9ef11846d8bd0f12dacb41031738f09cdff1648e 100644 (file)
  *  GNU General Public License for more details.
  *
  */
-
-#ifdef HAVE_CONFIG_H
-  #include <orte_config.h>
-#endif
 #include "orte_api.h"
 #ifdef CONFIG_ORTE_RTL
   #include <linux/module.h>
index af26aecc03f3d9a65af4e71e37eff9aaa5b97926..4ff21f910f93cb497f3d8c70f25154b2bf89610a 100644 (file)
@@ -18,9 +18,6 @@
  *  GNU General Public License for more details.
  *
  */
-#ifdef HAVE_CONFIG_H
-  #include <orte_config.h>
-#endif
 #include "orte_api.h"
 #ifdef CONFIG_ORTE_RTL
   #include <linux/module.h>
index b554863a9b49c5e2649638083a53689ea69b1424..fa177d35c167534fbc15b8ee37f767a7ab151ebe 100644 (file)
@@ -1 +1 @@
-see contib/shape/ortedemo
\ No newline at end of file
+see contrib/shape/ortedemo
\ No newline at end of file
index 33c1040d09df7d7a2558f01f7938952e1de8ab14..4378bddfe75ef57a506ea49e81a0b64df26b4b72 100644 (file)
@@ -381,7 +381,7 @@ ORTEDomainAppDestroy(ORTEDomain *d) {
   pthread_rwlock_destroy(&d->typeEntry.lock);
   
   //Pattern
-  ORTEDomainAppSubscriptionPatternDestroyAll(d);
+  ORTEDomainAppSubscriptionPatternDestroy(d);
   pthread_rwlock_unlock(&d->typeEntry.lock);    
   pthread_rwlock_destroy(&d->patternEntry.lock);
   
@@ -455,7 +455,7 @@ ORTEDomainAppSubscriptionPatternRemove(ORTEDomain *d,const char *topic,
 
 /*****************************************************************************/
 Boolean 
-ORTEDomainAppSubscriptionPatternDestroyAll(ORTEDomain *d) {
+ORTEDomainAppSubscriptionPatternDestroy(ORTEDomain *d) {
   PatternNode *pnode;
   
   if (!d) return ORTE_FALSE;
index fd9197624e97b4b15d38d54fc010468d409f011b..8d3b16a0511f3e70fd3c0a9c4787602e077a039a 100644 (file)
 
 #include "orte.h"
 
+#ifdef CONFIG_ORTE_RT
+MODULE_LICENSE("GPL");
+#endif
+
 int
 pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr)
 {