From c7b3343284b5ed83864be0e4f9331fd550270b71 Mon Sep 17 00:00:00 2001 From: Aleksandrs Saveljevs Date: Tue, 23 Mar 2010 11:07:28 +0000 Subject: - fixed typos and removed // comments [svn merge svn://svn.zabbix.com/branches/1.8 -r 11008:11017] --- include/threads.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/threads.h') diff --git a/include/threads.h b/include/threads.h index d6cec034b13..6c7c7882296 100644 --- a/include/threads.h +++ b/include/threads.h @@ -34,7 +34,7 @@ #define ZBX_THREAD_ENTRY(entry_name, arg_name) \ unsigned __stdcall entry_name (void * arg_name) - #define zbx_tread_exit(status) \ + #define zbx_thread_exit(status) \ _endthreadex((unsigned int)(status)); \ return ((unsigned)(status)) @@ -56,7 +56,7 @@ #define ZBX_THREAD_ENTRY(entry_name, arg_name) \ unsigned entry_name (void * arg_name ) - #define zbx_tread_exit(status) \ + #define zbx_thread_exit(status) \ exit((int)(status)); \ return ((unsigned)(status)) @@ -68,7 +68,7 @@ ZBX_THREAD_HANDLE zbx_thread_start(ZBX_THREAD_ENTRY_POINTER(handler), void *args); int zbx_thread_wait(ZBX_THREAD_HANDLE thread); -/* zbx_tread_exit(status) // declared as define !!! */ +/* zbx_thread_exit(status) -- declared as define !!! */ long int zbx_get_thread_id(void); #endif /* ZABBIX_THREADS_H */ -- cgit v1.2.3