* testsuite/tls_test_main.cc: Use semaphores instead of mutexes.
This commit is contained in:
parent
0641104b2e
commit
732e31de7d
2 changed files with 41 additions and 39 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2011-05-16 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
|
* testsuite/tls_test_main.cc: Use semaphores instead of mutexes.
|
||||||
|
|
||||||
2011-05-10 Cary Coutant <ccoutant@google.com>
|
2011-05-10 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
* object.cc (Sized_relobj::do_count_local_symbols): Check for
|
* object.cc (Sized_relobj::do_count_local_symbols): Check for
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// tls_test.cc -- test TLS variables for gold, main function
|
// tls_test.cc -- test TLS variables for gold, main function
|
||||||
|
|
||||||
// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
|
// Copyright 2006, 2007, 2008, 2011 Free Software Foundation, Inc.
|
||||||
// Written by Ian Lance Taylor <iant@google.com>.
|
// Written by Ian Lance Taylor <iant@google.com>.
|
||||||
|
|
||||||
// This file is part of gold.
|
// This file is part of gold.
|
||||||
|
@ -26,40 +26,36 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
#include <semaphore.h>
|
||||||
|
|
||||||
#include "tls_test.h"
|
#include "tls_test.h"
|
||||||
|
|
||||||
// We make these macros so the assert() will give useful line-numbers.
|
// We make these macros so the assert() will give useful line-numbers.
|
||||||
#define safe_lock(muptr) \
|
#define safe_lock(semptr) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
int err = pthread_mutex_lock(muptr); \
|
int err = sem_wait(semptr); \
|
||||||
assert(err == 0); \
|
assert(err == 0); \
|
||||||
} \
|
} \
|
||||||
while (0)
|
while (0)
|
||||||
|
|
||||||
#define safe_unlock(muptr) \
|
#define safe_unlock(semptr) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
int err = pthread_mutex_unlock(muptr); \
|
int err = sem_post(semptr); \
|
||||||
assert(err == 0); \
|
assert(err == 0); \
|
||||||
} \
|
} \
|
||||||
while (0)
|
while (0)
|
||||||
|
|
||||||
struct Mutex_set
|
struct Sem_set
|
||||||
{
|
{
|
||||||
pthread_mutex_t mutex1;
|
sem_t sem1;
|
||||||
pthread_mutex_t mutex2;
|
sem_t sem2;
|
||||||
pthread_mutex_t mutex3;
|
sem_t sem3;
|
||||||
};
|
};
|
||||||
|
|
||||||
Mutex_set mutexes1 = { PTHREAD_MUTEX_INITIALIZER,
|
Sem_set sems1;
|
||||||
PTHREAD_MUTEX_INITIALIZER,
|
Sem_set sems2;
|
||||||
PTHREAD_MUTEX_INITIALIZER };
|
|
||||||
|
|
||||||
Mutex_set mutexes2 = { PTHREAD_MUTEX_INITIALIZER,
|
|
||||||
PTHREAD_MUTEX_INITIALIZER,
|
|
||||||
PTHREAD_MUTEX_INITIALIZER } ;
|
|
||||||
|
|
||||||
bool failed = false;
|
bool failed = false;
|
||||||
|
|
||||||
|
@ -73,18 +69,19 @@ check(const char* name, bool val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// The body of the thread function. This gets a lock on the first
|
// The body of the thread function. This acquires the first
|
||||||
// mutex, runs the tests, and then unlocks the second mutex. Then it
|
// semaphore, runs the tests, and then releases the second semaphore.
|
||||||
// locks the third mutex, and the runs the verification test again.
|
// Then it acquires the third semaphore, and the runs the verification
|
||||||
|
// test again.
|
||||||
|
|
||||||
void*
|
void*
|
||||||
thread_routine(void* arg)
|
thread_routine(void* arg)
|
||||||
{
|
{
|
||||||
Mutex_set* pms = static_cast<Mutex_set*>(arg);
|
Sem_set* pms = static_cast<Sem_set*>(arg);
|
||||||
|
|
||||||
// Lock the first mutex.
|
// Acquire the first semaphore.
|
||||||
if (pms)
|
if (pms)
|
||||||
safe_lock(&pms->mutex1);
|
safe_lock(&pms->sem1);
|
||||||
|
|
||||||
// Run the tests.
|
// Run the tests.
|
||||||
check("t1", t1());
|
check("t1", t1());
|
||||||
|
@ -103,13 +100,13 @@ thread_routine(void* arg)
|
||||||
check("t12", t12());
|
check("t12", t12());
|
||||||
check("t_last", t_last());
|
check("t_last", t_last());
|
||||||
|
|
||||||
// Unlock the second mutex.
|
// Release the second semaphore.
|
||||||
if (pms)
|
if (pms)
|
||||||
safe_unlock(&pms->mutex2);
|
safe_unlock(&pms->sem2);
|
||||||
|
|
||||||
// Lock the third mutex.
|
// Acquire the third semaphore.
|
||||||
if (pms)
|
if (pms)
|
||||||
safe_lock(&pms->mutex3);
|
safe_lock(&pms->sem3);
|
||||||
|
|
||||||
check("t_last", t_last());
|
check("t_last", t_last());
|
||||||
|
|
||||||
|
@ -124,37 +121,38 @@ main()
|
||||||
// First, as a sanity check, run through the tests in the "main" thread.
|
// First, as a sanity check, run through the tests in the "main" thread.
|
||||||
thread_routine(0);
|
thread_routine(0);
|
||||||
|
|
||||||
// Set up the mutex locks. We want the first thread to start right
|
// Set up the semaphores. We want the first thread to start right
|
||||||
// away, tell us when it is done with the first part, and wait for
|
// away, tell us when it is done with the first part, and wait for
|
||||||
// us to release it. We want the second thread to wait to start,
|
// us to release it. We want the second thread to wait to start,
|
||||||
// tell us when it is done with the first part, and wait for us to
|
// tell us when it is done with the first part, and wait for us to
|
||||||
// release it.
|
// release it.
|
||||||
safe_lock(&mutexes1.mutex2);
|
sem_init(&sems1.sem1, 0, 1);
|
||||||
safe_lock(&mutexes1.mutex3);
|
sem_init(&sems1.sem2, 0, 0);
|
||||||
|
sem_init(&sems1.sem3, 0, 0);
|
||||||
|
|
||||||
safe_lock(&mutexes2.mutex1);
|
sem_init(&sems2.sem1, 0, 0);
|
||||||
safe_lock(&mutexes2.mutex2);
|
sem_init(&sems2.sem2, 0, 0);
|
||||||
safe_lock(&mutexes2.mutex3);
|
sem_init(&sems2.sem3, 0, 0);
|
||||||
|
|
||||||
pthread_t thread1;
|
pthread_t thread1;
|
||||||
int err = pthread_create(&thread1, NULL, thread_routine, &mutexes1);
|
int err = pthread_create(&thread1, NULL, thread_routine, &sems1);
|
||||||
assert(err == 0);
|
assert(err == 0);
|
||||||
|
|
||||||
pthread_t thread2;
|
pthread_t thread2;
|
||||||
err = pthread_create(&thread2, NULL, thread_routine, &mutexes2);
|
err = pthread_create(&thread2, NULL, thread_routine, &sems2);
|
||||||
assert(err == 0);
|
assert(err == 0);
|
||||||
|
|
||||||
// Wait for the first thread to complete the first part.
|
// Wait for the first thread to complete the first part.
|
||||||
safe_lock(&mutexes1.mutex2);
|
safe_lock(&sems1.sem2);
|
||||||
|
|
||||||
// Tell the second thread to start.
|
// Tell the second thread to start.
|
||||||
safe_unlock(&mutexes2.mutex1);
|
safe_unlock(&sems2.sem1);
|
||||||
|
|
||||||
// Wait for the second thread to complete the first part.
|
// Wait for the second thread to complete the first part.
|
||||||
safe_lock(&mutexes2.mutex2);
|
safe_lock(&sems2.sem2);
|
||||||
|
|
||||||
// Tell the first thread to continue and finish.
|
// Tell the first thread to continue and finish.
|
||||||
safe_unlock(&mutexes1.mutex3);
|
safe_unlock(&sems1.sem3);
|
||||||
|
|
||||||
// Wait for the first thread to finish.
|
// Wait for the first thread to finish.
|
||||||
void* thread_val;
|
void* thread_val;
|
||||||
|
@ -163,7 +161,7 @@ main()
|
||||||
assert(thread_val == 0);
|
assert(thread_val == 0);
|
||||||
|
|
||||||
// Tell the second thread to continue and finish.
|
// Tell the second thread to continue and finish.
|
||||||
safe_unlock(&mutexes2.mutex3);
|
safe_unlock(&sems2.sem3);
|
||||||
|
|
||||||
// Wait for the second thread to finish.
|
// Wait for the second thread to finish.
|
||||||
err = pthread_join(thread2, &thread_val);
|
err = pthread_join(thread2, &thread_val);
|
||||||
|
|
Loading…
Reference in a new issue