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>2008-10-08 03:28:30 +0400
committerChristopher Faylor <me@cgf.cx>2008-10-08 03:28:30 +0400
commitc4cb50b3a8f5c9da2a0d2ff40620756d0b6e7a5c (patch)
tree5bb40c1944bafef5ef3774614dcbf2302213fa28 /winsup/cygwin/pthread.cc
parentf241db6f60c8f4867507c0b8abe5a584e7969aca (diff)
* pthread.cc (pthread_create): Very minor formatting change.
* timer.cc (timer_thread): Ensure that any created thread defaults to detached state.
Diffstat (limited to 'winsup/cygwin/pthread.cc')
-rw-r--r--winsup/cygwin/pthread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pthread.cc b/winsup/cygwin/pthread.cc
index f2869c294..b110b831b 100644
--- a/winsup/cygwin/pthread.cc
+++ b/winsup/cygwin/pthread.cc
@@ -17,7 +17,7 @@ extern "C"
{
/* ThreadCreation */
int
-pthread_create (pthread_t * thread, const pthread_attr_t * attr,
+pthread_create (pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void *arg)
{
return pthread::create (thread, attr, start_routine, arg);