Re: libpq thread-locking

Поиск
Список
Период
Сортировка
От Magnus Hagander
Тема Re: libpq thread-locking
Дата
Msg-id 20080516163520.03248ec0@mha-laptop.hagander.net
обсуждение исходный текст
Ответ на Re: libpq thread-locking  (Andrew Chernow <ac@esilo.com>)
Список pgsql-patches
Andrew Chernow wrote:
> ! int
>    pthread_mutex_init(pthread_mutex_t *mp, void *attr)
>    {
>        *mp = CreateMutex(0, 0, 0);
> +     if (*mp == NULL)
> +         return 1;
> +     return 0;
>    }
>
> Maybe it would be better to emulate what pthreads does.  Instead of
> returing 1 to indicate an error, return an errno.  In the above case,
> ENOMEM seems like a good fit.
>
> Also, maybe you should check the passed in mutex pointer.  If its
> NULL, you could return EINVAL.

Given that we only call this stuff internally, I don't think it's a big
issue. But either way - that part of the code will be replaced with the
critical_section code later anyway - I just want to get the "generic"
changes through first.

//Magnus

В списке pgsql-patches по дате отправления:

Предыдущее
От: Andrew Chernow
Дата:
Сообщение: Re: libpq thread-locking
Следующее
От: Tom Lane
Дата:
Сообщение: Re: libpq object hooks