X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=endpoint.cpp;h=3c59f5390ab01241baf8b91ec236495dc8fe1377;hp=2e2e7f3f753b9d94a8109324a0c0a818dd94e4c8;hb=5566f74eb29be75da44e29ba72ee6f015249ce61;hpb=f851ca0d9e22673b7cc0a7c2f539c9d51b9b77f8 diff --git a/endpoint.cpp b/endpoint.cpp index 2e2e7f3..3c59f53 100644 --- a/endpoint.cpp +++ b/endpoint.cpp @@ -109,7 +109,7 @@ Endpoint::~Endpoint(void) portlist = ep_portlist; while(portlist) { if (portlist->port_id) { - PERROR("warning: still relation to port (portlist list)\n"); + PERROR("Endpoint(%d) warning: still relation to port %d (portlist list)\n", ep_serial, portlist->port_id); } mtemp = portlist; portlist = portlist->next; @@ -147,7 +147,7 @@ struct port_list *Endpoint::portlist_new(unsigned int port_id, int port_type, in /* portlist structure */ portlist = (struct port_list *)MALLOC(sizeof(struct port_list)); ememuse++; - PDEBUG(DEBUG_EPOINT, "EPOINT(%d) allocating port_list.\n", ep_serial); + PDEBUG(DEBUG_EPOINT, "EPOINT(%d) allocating port_list, attaching to port %d\n", ep_serial, port_id); /* add port_list to chain */ portlist->next = NULL; @@ -186,7 +186,7 @@ void Endpoint::free_portlist(struct port_list *portlist) *tempp=portlist->next; /* free */ - PDEBUG(DEBUG_EPOINT, "EPOINT(%d) removed port_list from endpoint\n", ep_serial); + PDEBUG(DEBUG_EPOINT, "EPOINT(%d) removed port %d from port_list of endpoint\n", ep_serial, portlist->port_id); FREE(portlist, sizeof(struct port_list)); ememuse--; }