summaryrefslogtreecommitdiff
path: root/gcc/gthr-dce.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-12 13:10:33 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-12 13:10:33 +0000
commit5a54c45ed5c603e6fc35b444d37d52b6f076d5d2 (patch)
treea1d7f27ef543bf7ddeb79c9da064d112557b3ead /gcc/gthr-dce.h
parentb2975779eb358805eab47e6ea2ad56b43769fcd8 (diff)
downloadgcc-5a54c45ed5c603e6fc35b444d37d52b6f076d5d2.tar.gz
* gthr-dce.h: Fix comment formatting.
* gthr-posix.h: Likewise. * gthr-single.h: Likewise. * gthr-solaris.h: Likewise. * gthr-vxworks.h: Likewise. * gthr-win32.h: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46229 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gthr-dce.h')
-rw-r--r--gcc/gthr-dce.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/gcc/gthr-dce.h b/gcc/gthr-dce.h
index 5f960b5175c..25eab0e5693 100644
--- a/gcc/gthr-dce.h
+++ b/gcc/gthr-dce.h
@@ -31,7 +31,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
/* DCE threads interface.
DCE threads are based on POSIX threads draft 4, and many things
- have changed since then. */
+ have changed since then. */
#define __GTHREADS 1
@@ -68,7 +68,7 @@ typedef pthread_mutex_t __gthread_mutex_t;
#pragma weak pthread_mutex_unlock
#ifdef _LIBOBJC
-/* Objective C. */
+/* Objective C. */
#pragma weak pthread_cond_broadcast
#pragma weak pthread_cond_destroy
#pragma weak pthread_cond_init
@@ -109,7 +109,7 @@ static void *thread_local_storage = NULL;
/* Backend initialization functions */
-/* Initialize the threads subsystem. */
+/* Initialize the threads subsystem. */
static inline int
__gthread_objc_init_thread_system(void)
{
@@ -120,7 +120,7 @@ __gthread_objc_init_thread_system(void)
return -1;
}
-/* Close the threads subsystem. */
+/* Close the threads subsystem. */
static inline int
__gthread_objc_close_thread_system(void)
{
@@ -132,7 +132,7 @@ __gthread_objc_close_thread_system(void)
/* Backend thread functions */
-/* Create a new thread of execution. */
+/* Create a new thread of execution. */
static inline objc_thread_t
__gthread_objc_thread_detach(void (*func)(void *), void *arg)
{
@@ -147,7 +147,7 @@ __gthread_objc_thread_detach(void (*func)(void *), void *arg)
{
/* ??? May not work! (64bit) */
thread_id = *(objc_thread_t *)&new_thread_handle;
- pthread_detach(&new_thread_handle); /* Fully detach thread. */
+ pthread_detach(&new_thread_handle); /* Fully detach thread. */
}
else
thread_id = NULL;
@@ -155,7 +155,7 @@ __gthread_objc_thread_detach(void (*func)(void *), void *arg)
return thread_id;
}
-/* Set the current thread's priority. */
+/* Set the current thread's priority. */
static inline int
__gthread_objc_thread_set_priority(int priority)
{
@@ -178,7 +178,7 @@ __gthread_objc_thread_set_priority(int priority)
break;
}
- /* Change the priority. */
+ /* Change the priority. */
if (pthread_setprio(pthread_self(), sys_priority) >= 0)
return 0;
else
@@ -186,7 +186,7 @@ __gthread_objc_thread_set_priority(int priority)
return -1;
}
-/* Return the current thread's priority. */
+/* Return the current thread's priority. */
static inline int
__gthread_objc_thread_get_priority(void)
{
@@ -212,7 +212,7 @@ __gthread_objc_thread_get_priority(void)
return OBJC_THREAD_INTERACTIVE_PRIORITY;
}
-/* Yield our process time to another thread. */
+/* Yield our process time to another thread. */
static inline void
__gthread_objc_thread_yield(void)
{
@@ -220,7 +220,7 @@ __gthread_objc_thread_yield(void)
pthread_yield();
}
-/* Terminate the current thread. */
+/* Terminate the current thread. */
static inline int
__gthread_objc_thread_exit(void)
{
@@ -232,7 +232,7 @@ __gthread_objc_thread_exit(void)
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
__gthread_objc_thread_id(void)
{
@@ -246,7 +246,7 @@ __gthread_objc_thread_id(void)
return (objc_thread_t)1;
}
-/* Sets the thread's local storage pointer. */
+/* Sets the thread's local storage pointer. */
static inline int
__gthread_objc_thread_set_data(void *value)
{
@@ -259,7 +259,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 *
__gthread_objc_thread_get_data(void)
{
@@ -278,7 +278,7 @@ __gthread_objc_thread_get_data(void)
/* Backend mutex functions */
-/* Allocate a mutex. */
+/* Allocate a mutex. */
static inline int
__gthread_objc_mutex_allocate(objc_mutex_t mutex)
{
@@ -298,7 +298,7 @@ __gthread_objc_mutex_allocate(objc_mutex_t mutex)
return 0;
}
-/* Deallocate a mutex. */
+/* Deallocate a mutex. */
static inline int
__gthread_objc_mutex_deallocate(objc_mutex_t mutex)
{
@@ -314,7 +314,7 @@ __gthread_objc_mutex_deallocate(objc_mutex_t mutex)
return 0;
}
-/* Grab a lock on a mutex. */
+/* Grab a lock on a mutex. */
static inline int
__gthread_objc_mutex_lock(objc_mutex_t mutex)
{
@@ -324,7 +324,7 @@ __gthread_objc_mutex_lock(objc_mutex_t mutex)
return 0;
}
-/* Try to grab a lock on a mutex. */
+/* Try to grab a lock on a mutex. */
static inline int
__gthread_objc_mutex_trylock(objc_mutex_t mutex)
{
@@ -347,23 +347,23 @@ __gthread_objc_mutex_unlock(objc_mutex_t mutex)
/* Backend condition mutex functions */
-/* Allocate a condition. */
+/* Allocate a condition. */
static inline int
__gthread_objc_condition_allocate(objc_condition_t condition)
{
if (__gthread_active_p ())
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
else
return 0;
}
-/* Deallocate a condition. */
+/* Deallocate a condition. */
static inline int
__gthread_objc_condition_deallocate(objc_condition_t condition)
{
if (__gthread_active_p ())
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
else
return 0;
@@ -374,29 +374,29 @@ static inline int
__gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
{
if (__gthread_active_p ())
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
else
return 0;
}
-/* Wake up all threads waiting on this condition. */
+/* Wake up all threads waiting on this condition. */
static inline int
__gthread_objc_condition_broadcast(objc_condition_t condition)
{
if (__gthread_active_p ())
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
else
return 0;
}
-/* Wake up one thread waiting on this condition. */
+/* Wake up one thread waiting on this condition. */
static inline int
__gthread_objc_condition_signal(objc_condition_t condition)
{
if (__gthread_active_p ())
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
else
return 0;
@@ -422,7 +422,7 @@ __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
static inline int
__gthread_key_dtor (UNUSED (__gthread_key_t key), UNUSED (void *ptr))
{
- /* Nothing needed. */
+ /* Nothing needed. */
return 0;
}