Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-02-24 06:53:22 +0300
committerChristopher Faylor <me@cgf.cx>2000-02-24 06:53:22 +0300
commit65b959847034190d9af9bb66dac4ba3fa0aed844 (patch)
treee39f1d88fbf5fc74572e00326b9d3e4cdeefe7a2 /winsup/cygwin/thread.cc
parent2528588a759447dfd1e383ace086dc8628eb40db (diff)
Fix final round of gcc warnings relating to unused parameters.
Diffstat (limited to 'winsup/cygwin/thread.cc')
-rw-r--r--winsup/cygwin/thread.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc
index 0ed42e7d8..b0d046897 100644
--- a/winsup/cygwin/thread.cc
+++ b/winsup/cygwin/thread.cc
@@ -573,7 +573,7 @@ __pthread_attr_getstacksize (pthread_attr_t * attr, size_t * size)
};
int
-__pthread_attr_destroy (pthread_attr_t * attr)
+__pthread_attr_destroy (pthread_attr_t * /*attr*/)
{
return 0;
};
@@ -673,23 +673,23 @@ __pthread_getsequence_np (pthread_t * thread)
/* Thread SpecificData */
int
-__pthread_key_create (pthread_key_t * key)
+__pthread_key_create (pthread_key_t */*key*/)
{
NOT_IMP ("_p_key_create\n");
};
int
-__pthread_key_delete (pthread_key_t * key)
+__pthread_key_delete (pthread_key_t */*key*/)
{
NOT_IMP ("_p_key_delete\n");
};
int
-__pthread_setspecific (pthread_key_t * key, const void *value)
+__pthread_setspecific (pthread_key_t */*key*/, const void */*value*/)
{
NOT_IMP ("_p_key_setsp\n");
};
void *
-__pthread_getspecific (pthread_key_t * key)
+__pthread_getspecific (pthread_key_t */*key*/)
{
NOT_IMP ("_p_key_getsp\n");
};
@@ -754,7 +754,7 @@ __pthread_equal (pthread_t * t1, pthread_t * t2)
/* Mutexes */
int
-__pthread_mutex_init (pthread_mutex_t * mutex, const pthread_mutexattr_t * _attr)
+__pthread_mutex_init (pthread_mutex_t * mutex, const pthread_mutexattr_t */*_attr*/)
{
SetResourceLock (LOCK_MUTEX_LIST, WRITE_LOCK | READ_LOCK, "__pthread_mutex_init");