resolve_port_issues

This commit is contained in:
root 2011-06-04 16:51:43 +02:00
parent 1771d0d3ae
commit 3b39bd8e95
2 changed files with 5 additions and 3 deletions

View file

@ -40,9 +40,9 @@ extern HANDLE remote_process_event;
extern HANDLE hProc;
#define DEBUGPRINTF(x,...) printf(x,__VA_ARGS__)
#define DEBUGPRINTF(x,...) printf(x,__VA_ARGS__)
#else
#define DEBUGPRINTF(x,...) kprintf(x,__VA_ARGS__)
#define DEBUGPRINTF(x,...) kprintf(x,##__VA_ARGS__)
#endif
@ -169,7 +169,8 @@ __inline int get_my_core_no(void)
__inline int get_my_core_no(void)
{
unsigned int tmp;
unsigend int pid;
unsigned int pid;
unsigned int x,y,z;
/* Determine the local IP address from the core number in the
* tile ID register
*/
@ -638,6 +639,7 @@ static void mmnif_rx(struct netif* netif)
* has to be worked on
*/
#ifdef DEBUG_MMNIF
DEBUGPRINTF("\n RECIEVED - 0x%.8X\n",data + pos);
hex_dump(length+2,data + pos);

0
newlib/src/configure vendored Normal file → Executable file
View file