* pthread.cc (pthread_create): Very minor formatting change.

* timer.cc (timer_thread): Ensure that any created thread defaults to detached
state.
This commit is contained in:
Christopher Faylor
2008-10-07 23:28:30 +00:00
parent f241db6f60
commit c4cb50b3a8
3 changed files with 18 additions and 2 deletions

View File

@ -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);