diff --git a/src/tools/PortSpy/PortSpy.cpp b/src/tools/PortSpy/PortSpy.cpp deleted file mode 100644 index 6d6516b002..0000000000 --- a/src/tools/PortSpy/PortSpy.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include -#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; -} \ No newline at end of file diff --git a/src/tools/PortSpy/PortSpy.proj b/src/tools/PortSpy/PortSpy.proj deleted file mode 100644 index 2a7ae1fdb8..0000000000 Binary files a/src/tools/PortSpy/PortSpy.proj and /dev/null differ