1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

remove some obsolete debug messages

This commit is contained in:
Stefan Lankes 2015-10-03 10:54:21 +02:00
parent e7cddc3e7e
commit 8f69a04735

View file

@ -646,7 +646,7 @@ int create_user_task_form_socket(tid_t* id, int sd, uint8_t prio)
ret = read(sd, &len, sizeof(int));
if ((ret != sizeof(int)) || (len <= 0))
goto out;
kprintf("length of the executable: %d\n", len);
//kprintf("length of the executable: %d\n", len);
load_args->executable = kmalloc(len);
if (!load_args->executable) {