diff options
author | Christopher Faylor <me@cgf.cx> | 2008-10-07 23:28:30 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-10-07 23:28:30 +0000 |
commit | c4cb50b3a8f5c9da2a0d2ff40620756d0b6e7a5c (patch) | |
tree | 5bb40c1944bafef5ef3774614dcbf2302213fa28 /winsup/cygwin/pthread.cc | |
parent | f241db6f60c8f4867507c0b8abe5a584e7969aca (diff) | |
download | cygnal-c4cb50b3a8f5c9da2a0d2ff40620756d0b6e7a5c.tar.gz cygnal-c4cb50b3a8f5c9da2a0d2ff40620756d0b6e7a5c.tar.bz2 cygnal-c4cb50b3a8f5c9da2a0d2ff40620756d0b6e7a5c.zip |
* 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.cc | 2 |
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); |