summaryrefslogtreecommitdiff
path: root/gcc/gthr-vxworks.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-vxworks.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-vxworks.h')
-rw-r--r--gcc/gthr-vxworks.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/gcc/gthr-vxworks.h b/gcc/gthr-vxworks.h
index 8e63102780f..1474853edb3 100644
--- a/gcc/gthr-vxworks.h
+++ b/gcc/gthr-vxworks.h
@@ -37,7 +37,7 @@ static void *thread_local_storage = NULL;
/* Backend initialization functions */
-/* Initialize the threads subsystem. */
+/* Initialize the threads subsystem. */
int
__gthread_objc_init_thread_system(void)
{
@@ -45,7 +45,7 @@ __gthread_objc_init_thread_system(void)
return -1;
}
-/* Close the threads subsystem. */
+/* Close the threads subsystem. */
int
__gthread_objc_close_thread_system(void)
{
@@ -55,7 +55,7 @@ __gthread_objc_close_thread_system(void)
/* Backend thread functions */
-/* Create a new thread of execution. */
+/* Create a new thread of execution. */
objc_thread_t
__gthread_objc_thread_detach(void (*func)(void *arg), void *arg)
{
@@ -63,7 +63,7 @@ __gthread_objc_thread_detach(void (*func)(void *arg), void *arg)
return NULL;
}
-/* Set the current thread's priority. */
+/* Set the current thread's priority. */
int
__gthread_objc_thread_set_priority(int priority)
{
@@ -71,21 +71,21 @@ __gthread_objc_thread_set_priority(int priority)
return -1;
}
-/* Return the current thread's priority. */
+/* Return the current thread's priority. */
int
__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. */
void
__gthread_objc_thread_yield(void)
{
return;
}
-/* Terminate the current thread. */
+/* Terminate the current thread. */
int
__gthread_objc_thread_exit(void)
{
@@ -95,15 +95,15 @@ __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. */
objc_thread_t
__gthread_objc_thread_id(void)
{
- /* No thread support, use 1. */
+ /* No thread support, use 1. */
return (objc_thread_t)1;
}
-/* Sets the thread's local storage pointer. */
+/* Sets the thread's local storage pointer. */
int
__gthread_objc_thread_set_data(void *value)
{
@@ -111,7 +111,7 @@ __gthread_objc_thread_set_data(void *value)
return 0;
}
-/* Returns the thread's local storage pointer. */
+/* Returns the thread's local storage pointer. */
void *
__gthread_objc_thread_get_data(void)
{
@@ -120,21 +120,21 @@ __gthread_objc_thread_get_data(void)
/* Backend mutex functions */
-/* Allocate a mutex. */
+/* Allocate a mutex. */
int
__gthread_objc_mutex_allocate(objc_mutex_t mutex)
{
return 0;
}
-/* Deallocate a mutex. */
+/* Deallocate a mutex. */
int
__gthread_objc_mutex_deallocate(objc_mutex_t mutex)
{
return 0;
}
-/* Grab a lock on a mutex. */
+/* Grab a lock on a mutex. */
int
__gthread_objc_mutex_lock(objc_mutex_t mutex)
{
@@ -142,7 +142,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. */
int
__gthread_objc_mutex_trylock(objc_mutex_t mutex)
{
@@ -159,14 +159,14 @@ __gthread_objc_mutex_unlock(objc_mutex_t mutex)
/* Backend condition mutex functions */
-/* Allocate a condition. */
+/* Allocate a condition. */
int
__gthread_objc_condition_allocate(objc_condition_t condition)
{
return 0;
}
-/* Deallocate a condition. */
+/* Deallocate a condition. */
int
__gthread_objc_condition_deallocate(objc_condition_t condition)
{
@@ -180,14 +180,14 @@ __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
return 0;
}
-/* Wake up all threads waiting on this condition. */
+/* Wake up all threads waiting on this condition. */
int
__gthread_objc_condition_broadcast(objc_condition_t condition)
{
return 0;
}
-/* Wake up one thread waiting on this condition. */
+/* Wake up one thread waiting on this condition. */
int
__gthread_objc_condition_signal(objc_condition_t condition)
{
@@ -197,7 +197,7 @@ __gthread_objc_condition_signal(objc_condition_t condition)
#else /* _LIBOBJC */
/* POSIX threads specific definitions.
- Easy, since the interface is just one-to-one mapping. */
+ Easy, since the interface is just one-to-one mapping. */
#define __GTHREADS 1
@@ -264,7 +264,7 @@ __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
static inline int
__gthread_key_dtor (__gthread_key_t key, void *ptr)
{
- /* Just reset the key value to zero. */
+ /* Just reset the key value to zero. */
if (ptr)
return __gthread_setspecific (key, 0);
else