Commit 24985beb by Kazu Hirata Committed by Kazu Hirata

* gthr-single.h: Fix formatting.

From-SVN: r59116
parent 8b54424d
2002-11-14 Kazu Hirata <kazu@cs.umass.edu>
* gthr-single.h: Fix formatting.
2002-11-14 Zack Weinberg <zack@codesourcery.com> 2002-11-14 Zack Weinberg <zack@codesourcery.com>
* tree.c (tree_vec_elt_check_failed): New function. * tree.c (tree_vec_elt_check_failed): New function.
......
...@@ -50,7 +50,7 @@ static void *thread_local_storage = NULL; ...@@ -50,7 +50,7 @@ static void *thread_local_storage = NULL;
/* Initialize the threads subsystem. */ /* Initialize the threads subsystem. */
static inline int static inline int
__gthread_objc_init_thread_system(void) __gthread_objc_init_thread_system (void)
{ {
/* No thread support available */ /* No thread support available */
return -1; return -1;
...@@ -58,7 +58,7 @@ __gthread_objc_init_thread_system(void) ...@@ -58,7 +58,7 @@ __gthread_objc_init_thread_system(void)
/* Close the threads subsystem. */ /* Close the threads subsystem. */
static inline int static inline int
__gthread_objc_close_thread_system(void) __gthread_objc_close_thread_system (void)
{ {
/* No thread support available */ /* No thread support available */
return -1; return -1;
...@@ -68,7 +68,7 @@ __gthread_objc_close_thread_system(void) ...@@ -68,7 +68,7 @@ __gthread_objc_close_thread_system(void)
/* Create a new thread of execution. */ /* Create a new thread of execution. */
static inline objc_thread_t static inline objc_thread_t
__gthread_objc_thread_detach(void (* func)(void *), void * UNUSED(arg)) __gthread_objc_thread_detach (void (* func)(void *), void * UNUSED(arg))
{ {
/* No thread support available */ /* No thread support available */
return NULL; return NULL;
...@@ -76,7 +76,7 @@ __gthread_objc_thread_detach(void (* func)(void *), void * UNUSED(arg)) ...@@ -76,7 +76,7 @@ __gthread_objc_thread_detach(void (* func)(void *), void * UNUSED(arg))
/* Set the current thread's priority. */ /* Set the current thread's priority. */
static inline int static inline int
__gthread_objc_thread_set_priority(int UNUSED(priority)) __gthread_objc_thread_set_priority (int UNUSED(priority))
{ {
/* No thread support available */ /* No thread support available */
return -1; return -1;
...@@ -84,39 +84,39 @@ __gthread_objc_thread_set_priority(int UNUSED(priority)) ...@@ -84,39 +84,39 @@ __gthread_objc_thread_set_priority(int UNUSED(priority))
/* Return the current thread's priority. */ /* Return the current thread's priority. */
static inline int static inline int
__gthread_objc_thread_get_priority(void) __gthread_objc_thread_get_priority (void)
{ {
return OBJC_THREAD_INTERACTIVE_PRIORITY; return OBJC_THREAD_INTERACTIVE_PRIORITY;
} }
/* Yield our process time to another thread. */ /* Yield our process time to another thread. */
static inline void static inline void
__gthread_objc_thread_yield(void) __gthread_objc_thread_yield (void)
{ {
return; return;
} }
/* Terminate the current thread. */ /* Terminate the current thread. */
static inline int static inline int
__gthread_objc_thread_exit(void) __gthread_objc_thread_exit (void)
{ {
/* No thread support available */ /* No thread support available */
/* Should we really exit the program */ /* Should we really exit the program */
/* exit(&__objc_thread_exit_status); */ /* exit (&__objc_thread_exit_status); */
return -1; return -1;
} }
/* Returns an integer value which uniquely describes a thread. */ /* Returns an integer value which uniquely describes a thread. */
static inline objc_thread_t static inline objc_thread_t
__gthread_objc_thread_id(void) __gthread_objc_thread_id (void)
{ {
/* No thread support, use 1. */ /* No thread support, use 1. */
return (objc_thread_t)1; return (objc_thread_t) 1;
} }
/* Sets the thread's local storage pointer. */ /* Sets the thread's local storage pointer. */
static inline int static inline int
__gthread_objc_thread_set_data(void *value) __gthread_objc_thread_set_data (void *value)
{ {
thread_local_storage = value; thread_local_storage = value;
return 0; return 0;
...@@ -124,7 +124,7 @@ __gthread_objc_thread_set_data(void *value) ...@@ -124,7 +124,7 @@ __gthread_objc_thread_set_data(void *value)
/* Returns the thread's local storage pointer. */ /* Returns the thread's local storage pointer. */
static inline void * static inline void *
__gthread_objc_thread_get_data(void) __gthread_objc_thread_get_data (void)
{ {
return thread_local_storage; return thread_local_storage;
} }
...@@ -133,21 +133,21 @@ __gthread_objc_thread_get_data(void) ...@@ -133,21 +133,21 @@ __gthread_objc_thread_get_data(void)
/* Allocate a mutex. */ /* Allocate a mutex. */
static inline int static inline int
__gthread_objc_mutex_allocate(objc_mutex_t UNUSED(mutex)) __gthread_objc_mutex_allocate (objc_mutex_t UNUSED(mutex))
{ {
return 0; return 0;
} }
/* Deallocate a mutex. */ /* Deallocate a mutex. */
static inline int static inline int
__gthread_objc_mutex_deallocate(objc_mutex_t UNUSED(mutex)) __gthread_objc_mutex_deallocate (objc_mutex_t UNUSED(mutex))
{ {
return 0; return 0;
} }
/* Grab a lock on a mutex. */ /* Grab a lock on a mutex. */
static inline int static inline int
__gthread_objc_mutex_lock(objc_mutex_t UNUSED(mutex)) __gthread_objc_mutex_lock (objc_mutex_t UNUSED(mutex))
{ {
/* There can only be one thread, so we always get the lock */ /* There can only be one thread, so we always get the lock */
return 0; return 0;
...@@ -155,7 +155,7 @@ __gthread_objc_mutex_lock(objc_mutex_t UNUSED(mutex)) ...@@ -155,7 +155,7 @@ __gthread_objc_mutex_lock(objc_mutex_t UNUSED(mutex))
/* Try to grab a lock on a mutex. */ /* Try to grab a lock on a mutex. */
static inline int static inline int
__gthread_objc_mutex_trylock(objc_mutex_t UNUSED(mutex)) __gthread_objc_mutex_trylock (objc_mutex_t UNUSED(mutex))
{ {
/* There can only be one thread, so we always get the lock */ /* There can only be one thread, so we always get the lock */
return 0; return 0;
...@@ -163,7 +163,7 @@ __gthread_objc_mutex_trylock(objc_mutex_t UNUSED(mutex)) ...@@ -163,7 +163,7 @@ __gthread_objc_mutex_trylock(objc_mutex_t UNUSED(mutex))
/* Unlock the mutex */ /* Unlock the mutex */
static inline int static inline int
__gthread_objc_mutex_unlock(objc_mutex_t UNUSED(mutex)) __gthread_objc_mutex_unlock (objc_mutex_t UNUSED(mutex))
{ {
return 0; return 0;
} }
...@@ -172,36 +172,36 @@ __gthread_objc_mutex_unlock(objc_mutex_t UNUSED(mutex)) ...@@ -172,36 +172,36 @@ __gthread_objc_mutex_unlock(objc_mutex_t UNUSED(mutex))
/* Allocate a condition. */ /* Allocate a condition. */
static inline int static inline int
__gthread_objc_condition_allocate(objc_condition_t UNUSED(condition)) __gthread_objc_condition_allocate (objc_condition_t UNUSED(condition))
{ {
return 0; return 0;
} }
/* Deallocate a condition. */ /* Deallocate a condition. */
static inline int static inline int
__gthread_objc_condition_deallocate(objc_condition_t UNUSED(condition)) __gthread_objc_condition_deallocate (objc_condition_t UNUSED(condition))
{ {
return 0; return 0;
} }
/* Wait on the condition */ /* Wait on the condition */
static inline int static inline int
__gthread_objc_condition_wait(objc_condition_t UNUSED(condition), __gthread_objc_condition_wait (objc_condition_t UNUSED(condition),
objc_mutex_t UNUSED(mutex)) objc_mutex_t UNUSED(mutex))
{ {
return 0; return 0;
} }
/* Wake up all threads waiting on this condition. */ /* Wake up all threads waiting on this condition. */
static inline int static inline int
__gthread_objc_condition_broadcast(objc_condition_t UNUSED(condition)) __gthread_objc_condition_broadcast (objc_condition_t UNUSED(condition))
{ {
return 0; return 0;
} }
/* Wake up one thread waiting on this condition. */ /* Wake up one thread waiting on this condition. */
static inline int static inline int
__gthread_objc_condition_signal(objc_condition_t UNUSED(condition)) __gthread_objc_condition_signal (objc_condition_t UNUSED(condition))
{ {
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment