mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
debug: fix compilation error for %p formatter
This commit is contained in:
parent
a63e29a94a
commit
1ce140d910
@ -67,7 +67,8 @@ void clist_print(clist_node_t *clist)
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
if (clist == start) {
|
||||
|
@ -188,7 +188,9 @@ static uint_fast8_t i2c_ctrl_blocking(uint_fast8_t flags)
|
||||
|
||||
if (I2CM_STAT & BUSY) {
|
||||
/* If the controller is still busy, it probably will be forever */
|
||||
#ifdef MODULE_XTIMER
|
||||
DEBUG("Master is still BUSY after %u usec. Resetting.\n", xtimer_timeout);
|
||||
#endif
|
||||
cc2538_i2c_init_master(speed_hz);
|
||||
}
|
||||
|
||||
@ -536,7 +538,8 @@ int i2c_write_bytes(i2c_t dev, uint8_t address, char *data, int 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;
|
||||
@ -617,7 +620,7 @@ int i2c_write_regs(i2c_t dev, uint8_t address, uint8_t reg, char *data, int leng
|
||||
dev,
|
||||
address,
|
||||
reg,
|
||||
data,
|
||||
(void *)data,
|
||||
length,
|
||||
n,
|
||||
length
|
||||
|
@ -452,7 +452,8 @@ void native_interrupt_init(void)
|
||||
DEBUG("native_interrupt_init\n");
|
||||
|
||||
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_sigpend = 0;
|
||||
|
@ -80,7 +80,8 @@ char *thread_stack_init(thread_task_func_t task_func, void *arg, void *stack_sta
|
||||
ucontext_t *p;
|
||||
|
||||
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");
|
||||
|
||||
@ -203,7 +204,8 @@ void native_cpu_init(void)
|
||||
end_context.uc_stack.ss_flags = 0;
|
||||
makecontext(&end_context, sched_task_exit, 0);
|
||||
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");
|
||||
}
|
||||
|
@ -283,13 +283,14 @@ static bool add_pages_to_pool(uint64_t start, uint64_t end)
|
||||
|
||||
static void init_free_pages(void)
|
||||
{
|
||||
printf("Kernel memory: %p - %p\r\n", &_kernel_memory_start, &_kernel_memory_end);
|
||||
printf(" .text: %p - %p\r\n", &_section_text_start, &_section_text_end);
|
||||
printf(" .rodata: %p - %p\r\n", &_section_rodata_start, &_section_rodata_end);
|
||||
printf(" .data: %p - %p\r\n", &_section_data_start, &_section_data_end);
|
||||
printf(" .bss: %p - %p\r\n", &_section_bss_start, &_section_bss_end);
|
||||
printf("Unmapped memory: %p - %p\r\n", &_kernel_memory_end, &_heap_start);
|
||||
printf("Heap start: %p\r\n", &_heap_start);
|
||||
printf("Kernel memory: %p - %p\r\n",
|
||||
(void *)&_kernel_memory_start, (void *)&_kernel_memory_end);
|
||||
printf(" .text: %p - %p\r\n", (void *)&_section_text_start, (void *)&_section_text_end);
|
||||
printf(" .rodata: %p - %p\r\n", (void *)&_section_rodata_start, (void *)&_section_rodata_end);
|
||||
printf(" .data: %p - %p\r\n", (void *)&_section_data_start, (void *)&_section_data_end);
|
||||
printf(" .bss: %p - %p\r\n", (void *)&_section_bss_start, (void *)&_section_bss_end);
|
||||
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;
|
||||
uint64_t start, len;
|
||||
|
@ -58,7 +58,7 @@ int pir_register_thread(pir_t *dev)
|
||||
}
|
||||
}
|
||||
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) {
|
||||
DEBUG("\tfailed\n");
|
||||
return -1;
|
||||
|
Binary file not shown.
@ -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) {
|
||||
if (table->notify_rp[i] != KERNEL_PID_UNDEF) {
|
||||
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 */
|
||||
if (type != FIB_MSG_RP_SIGNAL_SOURCE_ROUTE_CREATED) {
|
||||
|
@ -108,7 +108,7 @@ static void *pthread_reaper(void *arg)
|
||||
while (1) {
|
||||
msg_t 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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user