* Removed useless tool.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33545 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-10-12 13:42:00 +00:00
parent 3bb69a8235
commit 31cce05240
2 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
#include <stdio.h>
#include "OS.h"
//
// Sequentially search for valid ports by port number and display
// their properties.
//
int main(int argc, char* argv[])
{
port_info info;
for (int port_num = 0; port_num < 9999; port_num++)
{
if (B_OK == get_port_info(port_num, &info) )
{
// Found a valid port - display it's properties.
//
printf("%04u: Team %u - %s\n",
(unsigned int)info.port,
(unsigned int)info.team,
info.name);
}
}
return 0;
}

Binary file not shown.