summaryrefslogtreecommitdiff
path: root/gcc/gthr-win32.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-10-12 13:10:33 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-10-12 13:10:33 +0000
commit71287280a2fa7b4535665502f226189b8f7b7d56 (patch)
treea1d7f27ef543bf7ddeb79c9da064d112557b3ead /gcc/gthr-win32.h
parent8554d9a464c544fbe1f2cf7df84b33dd8ab79347 (diff)
downloadgcc-71287280a2fa7b4535665502f226189b8f7b7d56.tar.gz
gthr-dce.h: Fix comment formatting.
* 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. From-SVN: r46229
Diffstat (limited to 'gcc/gthr-win32.h')
-rw-r--r--gcc/gthr-win32.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/gcc/gthr-win32.h b/gcc/gthr-win32.h
index 63d8b83e87e..97a50dab0bb 100644
--- a/gcc/gthr-win32.h
+++ b/gcc/gthr-win32.h
@@ -77,7 +77,7 @@ static DWORD __gthread_objc_data_tls = (DWORD)-1;
/* Backend initialization functions */
-/* Initialize the threads subsystem. */
+/* Initialize the threads subsystem. */
int
__gthread_objc_init_thread_system(void)
{
@@ -88,7 +88,7 @@ __gthread_objc_init_thread_system(void)
return -1;
}
-/* Close the threads subsystem. */
+/* Close the threads subsystem. */
int
__gthread_objc_close_thread_system(void)
{
@@ -99,7 +99,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)
{
@@ -113,7 +113,7 @@ __gthread_objc_thread_detach(void (*func)(void *arg), void *arg)
return (objc_thread_t)thread_id;
}
-/* Set the current thread's priority. */
+/* Set the current thread's priority. */
int
__gthread_objc_thread_set_priority(int priority)
{
@@ -140,7 +140,7 @@ __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)
{
@@ -165,18 +165,18 @@ __gthread_objc_thread_get_priority(void)
return OBJC_THREAD_LOW_PRIORITY;
}
- /* Couldn't get priority. */
+ /* Couldn't get priority. */
return -1;
}
-/* Yield our process time to another thread. */
+/* Yield our process time to another thread. */
void
__gthread_objc_thread_yield(void)
{
Sleep(0);
}
-/* Terminate the current thread. */
+/* Terminate the current thread. */
int
__gthread_objc_thread_exit(void)
{
@@ -187,14 +187,14 @@ __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)
{
return (objc_thread_t)GetCurrentThreadId();
}
-/* Sets the thread's local storage pointer. */
+/* Sets the thread's local storage pointer. */
int
__gthread_objc_thread_set_data(void *value)
{
@@ -204,7 +204,7 @@ __gthread_objc_thread_set_data(void *value)
return -1;
}
-/* Returns the thread's local storage pointer. */
+/* Returns the thread's local storage pointer. */
void *
__gthread_objc_thread_get_data(void)
{
@@ -222,7 +222,7 @@ __gthread_objc_thread_get_data(void)
/* Backend mutex functions */
-/* Allocate a mutex. */
+/* Allocate a mutex. */
int
__gthread_objc_mutex_allocate(objc_mutex_t mutex)
{
@@ -232,7 +232,7 @@ __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)
{
@@ -240,7 +240,7 @@ __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)
{
@@ -253,7 +253,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)
{
@@ -278,19 +278,19 @@ __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)
{
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
}
-/* Deallocate a condition. */
+/* Deallocate a condition. */
int
__gthread_objc_condition_deallocate(objc_condition_t condition)
{
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
}
@@ -298,23 +298,23 @@ __gthread_objc_condition_deallocate(objc_condition_t condition)
int
__gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex)
{
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
}
-/* 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)
{
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
}
-/* 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)
{
- /* Unimplemented. */
+ /* Unimplemented. */
return -1;
}
@@ -413,7 +413,7 @@ __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *))
static inline int
__gthread_key_dtor (__gthread_key_t key, void *ptr)
{
- /* Nothing needed. */
+ /* Nothing needed. */
return 0;
}