Skip to content
Snippets Groups Projects
Commit 87175905 authored by kYc0o's avatar kYc0o
Browse files

Merge pull request #5144 from Yonezawa-T2/fix_pointer_debug_output

debug: fix compilation error for %p formatter
parents 03b8fb62 dc9f7698
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,8 @@ void clist_print(clist_node_t *clist) ...@@ -67,7 +67,8 @@ void clist_print(clist_node_t *clist)
} }
do { do {
printf("list entry: %p: prev=%p next=%p\n", clist, clist->prev, clist->next); printf("list entry: %p: prev=%p next=%p\n",
(void *)clist, (void *)clist->prev, (void *)clist->next);
clist = clist->next; clist = clist->next;
if (clist == start) { if (clist == start) {
......
...@@ -536,7 +536,8 @@ int i2c_write_bytes(i2c_t dev, uint8_t address, char *data, int length) ...@@ -536,7 +536,8 @@ int i2c_write_bytes(i2c_t dev, uint8_t address, char *data, int length)
} }
if (n < length) { if (n < length) {
DEBUG("%s(%u, %p, %u): %u/%u bytes delivered.\n", __FUNCTION__, address, data, length, n, length); DEBUG("%s(%u, %p, %u): %u/%u bytes delivered.\n",
__FUNCTION__, address, (void *)data, length, n, length);
} }
return n; return n;
...@@ -617,7 +618,7 @@ int i2c_write_regs(i2c_t dev, uint8_t address, uint8_t reg, char *data, int leng ...@@ -617,7 +618,7 @@ int i2c_write_regs(i2c_t dev, uint8_t address, uint8_t reg, char *data, int leng
dev, dev,
address, address,
reg, reg,
data, (void *)data,
length, length,
n, n,
length length
......
...@@ -452,7 +452,8 @@ void native_interrupt_init(void) ...@@ -452,7 +452,8 @@ void native_interrupt_init(void)
DEBUG("native_interrupt_init\n"); DEBUG("native_interrupt_init\n");
VALGRIND_STACK_REGISTER(__isr_stack, __isr_stack + sizeof(__isr_stack)); VALGRIND_STACK_REGISTER(__isr_stack, __isr_stack + sizeof(__isr_stack));
VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n", __isr_stack, (void*)((int)__isr_stack + sizeof(__isr_stack))); VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n",
(void *)__isr_stack, (void*)((int)__isr_stack + sizeof(__isr_stack)));
native_interrupts_enabled = 1; native_interrupts_enabled = 1;
_native_sigpend = 0; _native_sigpend = 0;
......
...@@ -80,7 +80,8 @@ char *thread_stack_init(thread_task_func_t task_func, void *arg, void *stack_sta ...@@ -80,7 +80,8 @@ char *thread_stack_init(thread_task_func_t task_func, void *arg, void *stack_sta
ucontext_t *p; ucontext_t *p;
VALGRIND_STACK_REGISTER(stack_start, (char *) stack_start + stacksize); VALGRIND_STACK_REGISTER(stack_start, (char *) stack_start + stacksize);
VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n", stack_start, (void*)((int)stack_start + stacksize)); VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n",
stack_start, (void*)((int)stack_start + stacksize));
DEBUG("thread_stack_init\n"); DEBUG("thread_stack_init\n");
...@@ -203,7 +204,8 @@ void native_cpu_init(void) ...@@ -203,7 +204,8 @@ void native_cpu_init(void)
end_context.uc_stack.ss_flags = 0; end_context.uc_stack.ss_flags = 0;
makecontext(&end_context, sched_task_exit, 0); makecontext(&end_context, sched_task_exit, 0);
VALGRIND_STACK_REGISTER(__end_stack, __end_stack + sizeof(__end_stack)); VALGRIND_STACK_REGISTER(__end_stack, __end_stack + sizeof(__end_stack));
VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n", __end_stack, (void*)((int)__end_stack + sizeof(__end_stack))); VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n",
(void*)__end_stack, (void*)((int)__end_stack + sizeof(__end_stack)));
DEBUG("RIOT native cpu initialized.\n"); DEBUG("RIOT native cpu initialized.\n");
} }
......
...@@ -283,13 +283,14 @@ static bool add_pages_to_pool(uint64_t start, uint64_t end) ...@@ -283,13 +283,14 @@ static bool add_pages_to_pool(uint64_t start, uint64_t end)
static void init_free_pages(void) static void init_free_pages(void)
{ {
printf("Kernel memory: %p - %p\r\n", &_kernel_memory_start, &_kernel_memory_end); printf("Kernel memory: %p - %p\r\n",
printf(" .text: %p - %p\r\n", &_section_text_start, &_section_text_end); (void *)&_kernel_memory_start, (void *)&_kernel_memory_end);
printf(" .rodata: %p - %p\r\n", &_section_rodata_start, &_section_rodata_end); printf(" .text: %p - %p\r\n", (void *)&_section_text_start, (void *)&_section_text_end);
printf(" .data: %p - %p\r\n", &_section_data_start, &_section_data_end); printf(" .rodata: %p - %p\r\n", (void *)&_section_rodata_start, (void *)&_section_rodata_end);
printf(" .bss: %p - %p\r\n", &_section_bss_start, &_section_bss_end); printf(" .data: %p - %p\r\n", (void *)&_section_data_start, (void *)&_section_data_end);
printf("Unmapped memory: %p - %p\r\n", &_kernel_memory_end, &_heap_start); printf(" .bss: %p - %p\r\n", (void *)&_section_bss_start, (void *)&_section_bss_end);
printf("Heap start: %p\r\n", &_heap_start); printf("Unmapped memory: %p - %p\r\n", (void *)&_kernel_memory_end, (void *)&_heap_start);
printf("Heap start: %p\r\n", (void *)&_heap_start);
unsigned long cnt = 0; unsigned long cnt = 0;
uint64_t start, len; uint64_t start, len;
......
...@@ -58,7 +58,7 @@ int pir_register_thread(pir_t *dev) ...@@ -58,7 +58,7 @@ int pir_register_thread(pir_t *dev)
} }
} }
else { else {
DEBUG("pir_register_thread: activating interrupt for %p..\n", dev); DEBUG("pir_register_thread: activating interrupt for %p..\n", (void *)dev);
if (pir_activate_int(dev) != 0) { if (pir_activate_int(dev) != 0) {
DEBUG("\tfailed\n"); DEBUG("\tfailed\n");
return -1; return -1;
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -328,7 +328,7 @@ static int fib_signal_rp(fib_table_t *table, uint16_t type, uint8_t *dat, ...@@ -328,7 +328,7 @@ static int fib_signal_rp(fib_table_t *table, uint16_t type, uint8_t *dat,
for (size_t i = 0; i < FIB_MAX_REGISTERED_RP; ++i) { for (size_t i = 0; i < FIB_MAX_REGISTERED_RP; ++i) {
if (table->notify_rp[i] != KERNEL_PID_UNDEF) { if (table->notify_rp[i] != KERNEL_PID_UNDEF) {
DEBUG("[fib_signal_rp] send msg@: %p to pid[%d]: %d\n", \ DEBUG("[fib_signal_rp] send msg@: %p to pid[%d]: %d\n", \
msg.content.ptr, (int)i, (int)(table->notify_rp[i])); (void *)msg.content.ptr, (int)i, (int)(table->notify_rp[i]));
/* do only signal a RP if its registered prefix matches */ /* do only signal a RP if its registered prefix matches */
if (type != FIB_MSG_RP_SIGNAL_SOURCE_ROUTE_CREATED) { if (type != FIB_MSG_RP_SIGNAL_SOURCE_ROUTE_CREATED) {
......
...@@ -108,7 +108,7 @@ static void *pthread_reaper(void *arg) ...@@ -108,7 +108,7 @@ static void *pthread_reaper(void *arg)
while (1) { while (1) {
msg_t m; msg_t m;
msg_receive(&m); msg_receive(&m);
DEBUG("pthread_reaper(): free(%p)\n", m.content.ptr); DEBUG("pthread_reaper(): free(%p)\n", (void *)m.content.ptr);
free(m.content.ptr); free(m.content.ptr);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment