[ofw] [PATCH] opensm - use uintptr_t instead of unsigned long

Stan C. Smith stan.smith at intel.com
Thu Oct 8 10:12:03 PDT 2009


 sizeof unsigned long != sizeof void * in Windows world.

If you can live with uintptr_t for 
  __WORDSIZE == 32 being 'unsigned int' (see stdint.h)
  __WORDSIZE == 64 uintptr_t is 'unsigned long int'
then we could skip the ifdef __GNUC__ and just replace 'unsigned long' with uintptr_t.

Stan.

Signed-off-by: stan smith <stan.smith at intel.com>

diff --git a/opensm/include/opensm/st.h b/opensm/include/opensm/st.h
index 30cc308..dd7eacc 100644
--- a/opensm/include/opensm/st.h
+++ b/opensm/include/opensm/st.h
@@ -49,7 +49,11 @@
 #endif				/* __cplusplus */
 
 BEGIN_C_DECLS
+#ifdef __GNUC__
 #define st_ptr_t unsigned long
+#else
+#define st_ptr_t uintptr_t
+#endif
 typedef st_ptr_t st_data_t;
 
 #define ST_DATA_T_DEFINED




More information about the ofw mailing list