mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Implement error checking for pthreads calls in thread-safe mode. They really
should always succeed, but in the likely event of a failure we would previously fall through *without locking* - the new code will exit(1). Printing the error message on stderr will not work for all applications, but it's better than nothing at all - and our API doesn't provide a way to return the error to the caller.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.357 2008/03/31 02:43:14 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.358 2008/05/16 18:30:53 mha Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -3835,14 +3835,23 @@ default_threadlock(int acquire)
|
||||
while (InterlockedExchange(&mutex_initlock, 1) == 1)
|
||||
/* loop, another thread own the lock */ ;
|
||||
if (singlethread_lock == NULL)
|
||||
pthread_mutex_init(&singlethread_lock, NULL);
|
||||
{
|
||||
if (pthread_mutex_init(&singlethread_lock, NULL))
|
||||
PGTHREAD_ERROR("failed to initialize mutex");
|
||||
}
|
||||
InterlockedExchange(&mutex_initlock, 0);
|
||||
}
|
||||
#endif
|
||||
if (acquire)
|
||||
pthread_mutex_lock(&singlethread_lock);
|
||||
{
|
||||
if (pthread_mutex_lock(&singlethread_lock))
|
||||
PGTHREAD_ERROR("failed to lock mutex");
|
||||
}
|
||||
else
|
||||
pthread_mutex_unlock(&singlethread_lock);
|
||||
{
|
||||
if (pthread_mutex_unlock(&singlethread_lock))
|
||||
PGTHREAD_ERROR("failed to unlock mutex");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user