From 0d48a66bf1a45c7d9d42fca12addb01f71733e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 12 Sep 2003 20:48:07 +0000 Subject: [PATCH] Removed the port_test_thread_func() prototype from the header - that's a private method which is only defined when DEBUG is turned on. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4663 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/port.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/headers/private/kernel/port.h b/headers/private/kernel/port.h index 3035c52d6e..c3cbe90ec3 100755 --- a/headers/private/kernel/port.h +++ b/headers/private/kernel/port.h @@ -3,7 +3,6 @@ * Definitions here are for kernel use only. For the actual * definitions of port functions, please look at OS.h */ - #ifndef _KERNEL_PORT_H #define _KERNEL_PORT_H @@ -16,7 +15,6 @@ int delete_owned_ports(team_id owner); // temp: test void port_test(void); -int port_test_thread_func(void* arg); // user-level API port_id user_create_port(int32 queue_length, const char *name); @@ -45,4 +43,4 @@ status_t user_write_port_etc(port_id port, uint32 flags, bigtime_t timeout); -#endif +#endif /* _KERNEL_PORT_H */