commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] r9828 - in gnuradio/branches/developers/eb/gcell-wip/g


From: eb
Subject: [Commit-gnuradio] r9828 - in gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell: . spu
Date: Wed, 22 Oct 2008 12:12:01 -0600 (MDT)

Author: eb
Date: 2008-10-22 12:11:59 -0600 (Wed, 22 Oct 2008)
New Revision: 9828

Modified:
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/compiler.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_atomic.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_cdefs.h
   
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_declare_proc.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue.h
   
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue_data.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_stack.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc.h
   
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc_private.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_logging.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_mbox.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_spu_args.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_types.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_delay.h
   
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_jd_queue.h
   gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_random.h
Log:
cleaned up include guards

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/compiler.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/compiler.h    
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/compiler.h    
2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,8 +19,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_COMPILER_H
-#define INCLUDED_COMPILER_H
+#ifndef INCLUDED_GCELL_COMPILER_H
+#define INCLUDED_GCELL_COMPILER_H
 
 /*!
  * \brief Compiler specific hackery.  These are for GCC.
@@ -42,4 +42,4 @@
 #endif
 
 
-#endif /* INCLUDED_COMPILER_H */
+#endif /* INCLUDED_GCELL_COMPILER_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_atomic.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_atomic.h   
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_atomic.h   
2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,12 +18,12 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_ATOMIC_H
-#define INCLUDED_GC_ATOMIC_H
+#ifndef INCLUDED_GCELL_GC_ATOMIC_H
+#define INCLUDED_GCELL_GC_ATOMIC_H
 
 #include <stdint.h>
 
 typedef uint32_t       gc_atomic_t;
 
 
-#endif /* INCLUDED_GC_ATOMIC_H */
+#endif /* INCLUDED_GCELL_GC_ATOMIC_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_cdefs.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_cdefs.h    
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_cdefs.h    
2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,8 +19,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_CDEFS_H
-#define INCLUDED_GC_CDEFS_H
+#ifndef INCLUDED_GCELL_GC_CDEFS_H
+#define INCLUDED_GCELL_GC_CDEFS_H
 
 /* C++ needs to know that types and declarations are C, not C++.  */
 #ifdef __cplusplus
@@ -31,4 +31,4 @@
 # define __GC_END_DECLS
 #endif
 
-#endif /* INCLUDED_GC_CDEFS_H */
+#endif /* INCLUDED_GCELL_GC_CDEFS_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_declare_proc.h
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_declare_proc.h 
    2008-10-22 18:11:42 UTC (rev 9827)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_declare_proc.h 
    2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,11 +18,11 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_DECLARE_PROC_H
-#define INCLUDED_GC_DECLARE_PROC_H
+#ifndef INCLUDED_GCELL_GC_DECLARE_PROC_H
+#define INCLUDED_GCELL_GC_DECLARE_PROC_H
 
 #include <stdint.h>
-#include <gc_job_desc.h>
+#include <gcell/gc_job_desc.h>
 
 /*
  * This is C, not C++ code...
@@ -61,4 +61,4 @@
 
 __GC_END_DECLS
 
-#endif /* INCLUDED_GC_DECLARE_PROC_H */
+#endif /* INCLUDED_GCELL_GC_DECLARE_PROC_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue.h 
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue.h 
2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,10 +19,10 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_JD_QUEUE_H
-#define INCLUDED_GC_JD_QUEUE_H
+#ifndef INCLUDED_GCELL_GC_JD_QUEUE_H
+#define INCLUDED_GCELL_GC_JD_QUEUE_H
 
-#include "gc_jd_queue_data.h"
+#include <gcell/gc_jd_queue_data.h>
 
 __GC_BEGIN_DECLS
 
@@ -49,4 +49,4 @@
 __GC_END_DECLS
 
 
-#endif /* INCLUDED_GC_JD_QUEUE_H */
+#endif /* INCLUDED_GCELL_GC_JD_QUEUE_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue_data.h
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue_data.h
    2008-10-22 18:11:42 UTC (rev 9827)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_queue_data.h
    2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,11 +19,11 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_JD_QUEUE_DATA_H
-#define INCLUDED_GC_JD_QUEUE_DATA_H
+#ifndef INCLUDED_GCELL_GC_JD_QUEUE_DATA_H
+#define INCLUDED_GCELL_GC_JD_QUEUE_DATA_H
 
-#include "gc_types.h"
-#include "gc_job_desc.h"
+#include <gcell/gc_types.h>
+#include <gcell/gc_job_desc.h>
 
 __GC_BEGIN_DECLS
 
@@ -47,6 +47,6 @@
 
 __GC_END_DECLS
 
-#endif /* INCLUDED_GC_JD_QUEUE_DATA_H */
+#endif /* INCLUDED_GCELL_GC_JD_QUEUE_DATA_H */
 
 

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_stack.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_stack.h 
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_jd_stack.h 
2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,11 +19,11 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_JD_STACK_H
-#define INCLUDED_GC_JD_STACK_H
+#ifndef INCLUDED_GCELL_GC_JD_STACK_H
+#define INCLUDED_GCELL_GC_JD_STACK_H
 
-#include "gc_types.h"
-#include "gc_job_desc.h"
+#include <gcell/gc_types.h>
+#include <gcell/gc_job_desc.h>
 
 __GC_BEGIN_DECLS
 
@@ -67,4 +67,4 @@
 __GC_END_DECLS
 
 
-#endif /* INCLUDED_GC_JD_STACK_H */
+#endif /* INCLUDED_GCELL_GC_JD_STACK_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc.h 
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc.h 
2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,8 +19,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_JOB_DESC_H
-#define INCLUDED_GC_JOB_DESC_H
+#ifndef INCLUDED_GCELL_GC_JOB_DESC_H
+#define INCLUDED_GCELL_GC_JOB_DESC_H
 
 /*!
  * This file contains the structures that are used to describe how to
@@ -42,8 +42,8 @@
  * notify the entity that submitted the job.
  */
 
-#include "gc_types.h"
-#include "gc_job_desc_private.h"
+#include <gcell/gc_types.h>
+#include <gcell/gc_job_desc_private.h>
 
 /*
  * This is C, not C++ code...
@@ -210,4 +210,4 @@
 
 __GC_END_DECLS
 
-#endif /* INCLUDED_GC_JOB_DESC_H */
+#endif /* INCLUDED_GCELL_GC_JOB_DESC_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc_private.h
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc_private.h
 2008-10-22 18:11:42 UTC (rev 9827)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_job_desc_private.h
 2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,8 +19,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_JOB_DESC_PRIVATE_H
-#define INCLUDED_GC_JOB_DESC_PRIVATE_H
+#ifndef INCLUDED_GCELL_GC_JOB_DESC_PRIVATE_H
+#define INCLUDED_GCELL_GC_JOB_DESC_PRIVATE_H
 
 // #include <libsync.h>
 
@@ -35,5 +35,5 @@
   uint32_t     direction_union;    // union of all gc_job_ea_arg.direction 
fields
 } gc_job_desc_private_t;
 
-#endif /* INCLUDED_GC_JOB_PRIVATE_H */
+#endif /* INCLUDED_GCELL_GC_JOB_PRIVATE_H */
 

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_logging.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_logging.h  
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_logging.h  
2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,10 +18,10 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_LOGGING_H
-#define INCLUDED_GC_LOGGING_H
+#ifndef INCLUDED_GCELL_GC_LOGGING_H
+#define INCLUDED_GCELL_GC_LOGGING_H
 
-#include <gc_types.h>
+#include <gcell/gc_types.h>
 #include <string.h>
 
 __GC_BEGIN_DECLS
@@ -163,4 +163,4 @@
 
 __GC_END_DECLS
 
-#endif /* INCLUDED_GC_LOGGING_H */
+#endif /* INCLUDED_GCELL_GC_LOGGING_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_mbox.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_mbox.h     
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_mbox.h     
2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,8 +18,8 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_MBOX_H
-#define INCLUDED_GC_MBOX_H
+#ifndef INCLUDED_GCELL_GC_MBOX_H
+#define INCLUDED_GCELL_GC_MBOX_H
 
 /*
  * The PPE and SPE exchange a few 32-bit messages via mailboxes.
@@ -49,4 +49,4 @@
 #define        OP_SPU_BUFSIZE          0x3     // arg is max number of bytes
 
 
-#endif /* INCLUDED_GC_MBOX_H */
+#endif /* INCLUDED_GCELL_GC_MBOX_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_spu_args.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_spu_args.h 
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_spu_args.h 
2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,11 +18,11 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_SPU_ARGS_H
-#define INCLUDED_GC_SPU_ARGS_H
+#ifndef INCLUDED_GCELL_GC_SPU_ARGS_H
+#define INCLUDED_GCELL_GC_SPU_ARGS_H
 
-#include <gc_types.h>
-#include <gc_logging.h>
+#include <gcell/gc_types.h>
+#include <gcell/gc_logging.h>
 
 // args passed to SPE at initialization time
 
@@ -57,4 +57,4 @@
   uint16_t     job_id[GC_CI_NJOBS];    // job_id's of completed jobs
 } _AL128 gc_comp_info_t;
 
-#endif /* INCLUDED_GC_SPU_ARGS_H */
+#endif /* INCLUDED_GCELL_GC_SPU_ARGS_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_types.h
===================================================================
--- gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_types.h    
2008-10-22 18:11:42 UTC (rev 9827)
+++ gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/gc_types.h    
2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,12 +19,12 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_GC_TYPES_H
-#define INCLUDED_GC_TYPES_H
+#ifndef INCLUDED_GCELL_GC_TYPES_H
+#define INCLUDED_GCELL_GC_TYPES_H
 
 #include <stdint.h>
-#include <gc_cdefs.h>
-#include "compiler.h"
+#include <gcell/gc_cdefs.h>
+#include <gcell/compiler.h>
 
 __GC_BEGIN_DECLS
 
@@ -60,4 +60,4 @@
 
 __GC_END_DECLS
 
-#endif /* INCLUDED_GC_TYPES_H */
+#endif /* INCLUDED_GCELL_GC_TYPES_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_delay.h
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_delay.h    
    2008-10-22 18:11:42 UTC (rev 9827)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_delay.h    
    2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,10 +18,10 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_DELAY_H
-#define INCLUDED_GC_DELAY_H
+#ifndef INCLUDED_GCELL_SPU_GC_DELAY_H
+#define INCLUDED_GCELL_SPU_GC_DELAY_H
 
 void gc_udelay(unsigned int usecs);
 void gc_cdelay(unsigned int cpu_cycles);
 
-#endif /* INCLUDED_GC_DELAY_H */
+#endif /* INCLUDED_GCELL_SPU_GC_DELAY_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_jd_queue.h
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_jd_queue.h 
    2008-10-22 18:11:42 UTC (rev 9827)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_jd_queue.h 
    2008-10-22 18:11:59 UTC (rev 9828)
@@ -19,10 +19,10 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifndef INCLUDED_SPU_GC_JD_QUEUE_H
-#define INCLUDED_SPU_GC_JD_QUEUE_H
+#ifndef INCLUDED_GCELL_SPU_GC_JD_QUEUE_H
+#define INCLUDED_GCELL_SPU_GC_JD_QUEUE_H
 
-#include "gc_jd_queue_data.h"
+#include <gcell/gc_jd_queue_data.h>
 
 /*
  * Declarations for SPU side of job queue interface
@@ -50,4 +50,4 @@
 __GC_END_DECLS
 
 
-#endif /* INCLUDED_SPU_GC_JD_QUEUE_H */
+#endif /* INCLUDED_GCELL_SPU_GC_JD_QUEUE_H */

Modified: 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_random.h
===================================================================
--- 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_random.h   
    2008-10-22 18:11:42 UTC (rev 9827)
+++ 
gnuradio/branches/developers/eb/gcell-wip/gcell/include/gcell/spu/gc_random.h   
    2008-10-22 18:11:59 UTC (rev 9828)
@@ -18,8 +18,8 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
-#ifndef INCLUDED_GC_RANDOM_H
-#define INCLUDED_GC_RANDOM_H
+#ifndef INCLUDED_GCELL_SPU_GC_RANDOM_H
+#define INCLUDED_GCELL_SPU_GC_RANDOM_H
 
 /*!
  * \brief Return a uniformly distributed value in the range [0, 1.0)
@@ -29,4 +29,4 @@
 float gc_uniform_deviate(void);
 void gc_set_seed(int seed);
 
-#endif /* INCLUDED_GC_RANDOM_H */
+#endif /* INCLUDED_GCELL_SPU_GC_RANDOM_H */





reply via email to

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