commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r11493 - in gnuradio/branches/developers/jcorgan/pmt/g


From: jcorgan
Subject: [Commit-gnuradio] r11493 - in gnuradio/branches/developers/jcorgan/pmt/gruel/src: include/gruel lib/pmt
Date: Sun, 26 Jul 2009 13:03:13 -0600 (MDT)

Author: jcorgan
Date: 2009-07-26 13:03:13 -0600 (Sun, 26 Jul 2009)
New Revision: 11493

Modified:
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt.h
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt_pool.h
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/generate_unv.py
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt.cc
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_int.h
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_io.cc
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_pool.cc
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_serialize.cc
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/qa_pmt_prims.cc
   gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/unv_template.cc.t
Log:
Checkpoint, pmt now in pmt::



Modified: gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt.h
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt.h      
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt.h      
2009-07-26 19:03:13 UTC (rev 11493)
@@ -39,7 +39,7 @@
  * exception that these objects are transparently reference counted.
  */
 
-namespace gruel {
+namespace pmt {
 
 /*!
  * \brief base class of all pmt types
@@ -677,6 +677,6 @@
 
 void pmt_dump_sizeof();        // debugging
 
-} /* namespace gruel */
+} /* namespace pmt */
 
 #endif /* INCLUDED_PMT_H */

Modified: 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt_pool.h
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt_pool.h 
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/include/gruel/pmt_pool.h 
2009-07-26 19:03:13 UTC (rev 11493)
@@ -25,7 +25,7 @@
 #include <vector>
 #include <boost/thread.hpp>
 
-namespace gruel {
+namespace pmt {
 
 /*!
  * \brief very simple thread-safe fixed-size allocation pool
@@ -67,6 +67,6 @@
   void free(void *p);
 };
 
-} /* namespace gruel */
+} /* namespace pmt */
 
 #endif /* INCLUDED_PMT_POOL_H */

Modified: 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/generate_unv.py
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/generate_unv.py  
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/generate_unv.py  
2009-07-26 19:03:13 UTC (rev 11493)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright 2006 Free Software Foundation, Inc.
+# Copyright 2006,2009 Free Software Foundation, Inc.
 # 
 # This file is part of GNU Radio
 # 
@@ -85,7 +85,7 @@
 #include <gruel/pmt.h>
 #include <stdio.h>
 
-using namespace gruel;
+using namespace pmt;
 """
 
 

Modified: gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt.cc
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt.cc   
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt.cc   
2009-07-26 19:03:13 UTC (rev 11493)
@@ -1,6 +1,6 @@
 /* -*- c++ -*- */
 /*
- * Copyright 2006 Free Software Foundation, Inc.
+ * Copyright 2006,2009 Free Software Foundation, Inc.
  * 
  * This file is part of GNU Radio
  * 
@@ -30,7 +30,7 @@
 #include <gruel/pmt_pool.h>
 #include <string.h>
 
-namespace gruel {
+namespace pmt {
 
 static const int CACHE_LINE_SIZE = 64;         // good guess
 
@@ -1038,4 +1038,4 @@
   printf("sizeof(pmt_uniform_vector) = %3zd\n", sizeof(pmt_uniform_vector));
 }
 
-} /* namespace gruel */
+} /* namespace pmt */

Modified: gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_int.h
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_int.h        
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_int.h        
2009-07-26 19:03:13 UTC (rev 11493)
@@ -32,7 +32,7 @@
  */
 
 #define PMT_LOCAL_ALLOCATOR 0          // define to 0 or 1
-namespace gruel {
+namespace pmt {
 
 class pmt_base : boost::noncopyable {
 protected:
@@ -222,6 +222,6 @@
 
 #include "pmt_unv_int.h"
 
-} /* namespace gruel */
+} /* namespace pmt */
 
 #endif /* INCLUDED_PMT_INT_H */

Modified: gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_io.cc
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_io.cc        
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_io.cc        
2009-07-26 19:03:13 UTC (rev 11493)
@@ -27,7 +27,7 @@
 #include "pmt_int.h"
 #include <sstream>
 
-namespace gruel {
+namespace pmt {
 
 static void
 pmt_write_list_tail(pmt_t obj, std::ostream &port)
@@ -138,4 +138,4 @@
   throw pmt_notimplemented("notimplemented: pmt_deserialize", PMT_NIL);
 }
 
-} /* namespace gruel */
+} /* namespace pmt */

Modified: gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_pool.cc
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_pool.cc      
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_pool.cc      
2009-07-26 19:03:13 UTC (rev 11493)
@@ -26,7 +26,7 @@
 #include <algorithm>
 #include <stdint.h>
 
-namespace gruel {
+namespace pmt {
 
 static inline size_t
 ROUNDUP(size_t x, size_t stride)
@@ -109,4 +109,4 @@
     d_cond.notify_one();
 }
 
-} /* namespace gruel */
+} /* namespace pmt */

Modified: 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_serialize.cc
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_serialize.cc 
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/pmt_serialize.cc 
2009-07-26 19:03:13 UTC (rev 11493)
@@ -27,7 +27,7 @@
 #include "pmt_int.h"
 #include "gruel/pmt_serial_tags.h"
 
-namespace gruel {
+namespace pmt {
 
 static pmt_t parse_pair(std::streambuf &sb);
 
@@ -354,4 +354,4 @@
   return val;
 }
 
-} /* namespace gruel */
+} /* namespace pmt */

Modified: 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/qa_pmt_prims.cc
===================================================================
--- gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/qa_pmt_prims.cc  
2009-07-26 18:16:12 UTC (rev 11492)
+++ gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/qa_pmt_prims.cc  
2009-07-26 19:03:13 UTC (rev 11493)
@@ -26,7 +26,7 @@
 #include <stdio.h>
 #include <sstream>
 
-using namespace gruel;
+using namespace pmt;
 
 void
 qa_pmt_prims::test_symbols()

Modified: 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/unv_template.cc.t
===================================================================
--- 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/unv_template.cc.t    
    2009-07-26 18:16:12 UTC (rev 11492)
+++ 
gnuradio/branches/developers/jcorgan/pmt/gruel/src/lib/pmt/unv_template.cc.t    
    2009-07-26 19:03:13 UTC (rev 11493)
@@ -2,7 +2,7 @@
 //                           address@hidden@vector
 ////////////////////////////////////////////////////////////////////////////
 
-namespace gruel {
+namespace pmt {
 
 static address@hidden@vector *
 address@hidden@vector(pmt_t x)
@@ -119,4 +119,4 @@
   return address@hidden@vector(vector)->writable_elements(len);
 }
 
-} /* namespace gruel */
+} /* namespace pmt */





reply via email to

[Prev in Thread] Current Thread [Next in Thread]