This commit is contained in:
Marian Ohligs 2011-08-10 21:33:00 +02:00
parent eebcf3fee1
commit d98bf1f888
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@
static ssize_t netchar_read(fildes_t* file, uint8_t* buffer, size_t size)
{
kprintf("\n%p with lenght %i and socket %i", buffer, size, file->offset);
kprintf("\nlwip_read: %p with lenght %i and Socket %i", buffer, size, file->offset);
int ret;
#if defined(CONFIG_LWIP) && LWIP_SOCKET

View file

@ -306,7 +306,7 @@ int syscall_handler(uint32_t sys_nr, ...)
ret = -ENOTSOCK;
break;
}
kprintf("%p with lenght %i and soket %i", name, namelen, per_core(current_task)->fildes_table[fd].offset);
kprintf("lwip_connect: %p with lenght %i and Socket %i", name, namelen, per_core(current_task)->fildes_table[fd].offset);
ret = lwip_connect(per_core(current_task)->fildes_table[fd].offset, name, namelen);