Mostly cosmetic use of uintptr_t to hold addresses instead of uint32_t

This commit is contained in:
Gregory Nutt
2014-08-26 10:44:10 -06:00
parent b1066775a2
commit cb8e081dba
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -133,10 +133,10 @@ do { \
struct group_addrenv_s
{
FAR uint32_t *text[ARCH_TEXT_NSECTS];
FAR uint32_t *data[ARCH_DATA_NSECTS];
FAR uintptr_t *text[ARCH_TEXT_NSECTS];
FAR uintptr_t *data[ARCH_DATA_NSECTS];
#if 0 /* Not yet implemented */
FAR uint32_t *heap[ARCH_HEAP_NSECTS];
FAR uintptr_t *heap[ARCH_HEAP_NSECTS];
#endif
};
+1 -1
View File
@@ -250,7 +250,7 @@ struct xcptcontext
*/
#if 0 /* Not yet implemented */
FAR uint32_t *stack[ARCH_STACK_NSECTS];
FAR uintptr_t *stack[ARCH_STACK_NSECTS];
#endif
#endif
};