summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/headers
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 19:28:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 19:28:01 +0000
commitece8c9abd35c4da1386f68a7726360cb1dd9a158 (patch)
tree36dad78bc9349475fb5fe44db94ea75242655cd7 /c/src/exec/posix/headers
parentaddressed minimum stack size attribute. (diff)
downloadrtems-ece8c9abd35c4da1386f68a7726360cb1dd9a158.tar.bz2
first cut at pthread_create
Diffstat (limited to 'c/src/exec/posix/headers')
-rw-r--r--c/src/exec/posix/headers/pthread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/exec/posix/headers/pthread.h b/c/src/exec/posix/headers/pthread.h
index 9dca4705b7..9c682c8dcf 100644
--- a/c/src/exec/posix/headers/pthread.h
+++ b/c/src/exec/posix/headers/pthread.h
@@ -80,7 +80,7 @@ STATIC INLINE POSIX_Threads_Control *_POSIX_Threads_Allocate( void );
* inactive chain of free pthread control blocks.
*/
-STATIC INLINE void _POSIX_Threads_Free (
+STATIC INLINE void _POSIX_Threads_Free(
POSIX_Threads_Control *the_pthread
);
@@ -98,7 +98,7 @@ STATIC INLINE void _POSIX_Threads_Free (
* to OBJECTS_ERROR and the_pthread is undefined.
*/
-STATIC INLINE POSIX_Threads_Control *_POSIX_Threads_Get (
+STATIC INLINE POSIX_Threads_Control *_POSIX_Threads_Get(
Objects_Id *id,
Objects_Locations *location
);
@@ -111,7 +111,7 @@ STATIC INLINE POSIX_Threads_Control *_POSIX_Threads_Get (
* This function returns TRUE if the_pthread is NULL and FALSE otherwise.
*/
-STATIC INLINE boolean _POSIX_Threads_Is_null (
+STATIC INLINE boolean _POSIX_Threads_Is_null(
POSIX_Threads_Control *the_pthread
);