mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Mostly cosmetic use of uintptr_t to hold addresses instead of uint32_t
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
|
||||
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user