[haiku-commits] r33586 - haiku/trunk/headers/os/kernel

Author: axeld
Date: 2009-10-14 14:51:19 +0200 (Wed, 14 Oct 2009)
New Revision: 33586
Changeset: http://dev.haiku-os.org/changeset/33586/haiku

Modified:
   haiku/trunk/headers/os/kernel/OS.h
   haiku/trunk/headers/os/kernel/image.h
Log:
* Minor cleanup.


Modified: haiku/trunk/headers/os/kernel/OS.h
===================================================================
--- haiku/trunk/headers/os/kernel/OS.h  2009-10-14 12:35:21 UTC (rev 33585)
+++ haiku/trunk/headers/os/kernel/OS.h  2009-10-14 12:51:19 UTC (rev 33586)
@@ -322,10 +322,9 @@
 extern status_t                suspend_thread(thread_id thread);
 
 extern status_t                rename_thread(thread_id thread, const char 
*newName);
-extern status_t                set_thread_priority (thread_id thread, int32 
newPriority);
+extern status_t                set_thread_priority(thread_id thread, int32 
newPriority);
 extern void                    exit_thread(status_t status);
-extern status_t                wait_for_thread (thread_id thread,
-                                               status_t *threadReturnValue);
+extern status_t                wait_for_thread(thread_id thread, status_t 
*returnValue);
 extern status_t                on_exit_thread(void (*callback)(void *), void 
*data);
 
 extern thread_id       find_thread(const char *name);

Modified: haiku/trunk/headers/os/kernel/image.h
===================================================================
--- haiku/trunk/headers/os/kernel/image.h       2009-10-14 12:35:21 UTC (rev 
33585)
+++ haiku/trunk/headers/os/kernel/image.h       2009-10-14 12:51:19 UTC (rev 
33586)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007, Haiku, Inc. All Rights Reserved.
+ * Copyright 2007-2009, Haiku, Inc. All Rights Reserved.
  * Distributed under the terms of the MIT license.
  */
 #ifndef _IMAGE_H
@@ -87,8 +87,8 @@
                                _get_next_image_info((team), (cookie), (info), 
sizeof(*(info)))
 
 /* private, use the macros above */
-status_t _get_image_info (image_id image, image_info *info, size_t size);
-status_t _get_next_image_info (team_id team, int32 *cookie, image_info *info,
+status_t _get_image_info(image_id image, image_info *info, size_t size);
+status_t _get_next_image_info(team_id team, int32 *cookie, image_info *info,
                                size_t size);
 
 #ifdef __cplusplus


Other related posts:

  • » [haiku-commits] r33586 - haiku/trunk/headers/os/kernel - axeld