Re: WaitForMultipleObjects in C Extension

Поиск
Список
Период
Сортировка
От George Neuner
Тема Re: WaitForMultipleObjects in C Extension
Дата
Msg-id f5sr1fpb0tatl1mepbptkj6dhu9ej28m03@4ax.com
обсуждение исходный текст
Ответ на WaitForMultipleObjects in C Extension  (İlyas Derse <ilyasderse@gmail.com>)
Список pgsql-general
On Tue, 14 Jan 2020 10:35:09 +0300, ?lyas Derse <ilyasderse@gmail.com>
wrote:

> Hi guys I need your experiences. I made an Extension in C. When I stop the
>query on PostgreSQL,I want to control my extension's result with use cases
>in C.So I think , I should use WaitForMultipleObjects.

Not really understanding this.


>Is there a like a SignalObjectHandle() ? By the way I'm using Windows.

Not exactly.  Windows does has some signaling objects like Unix/Linux,
but they exist only in the filesystem and network stack, and they are
signaled only by events within those subsystems.  IOW, they can't be
signaled manually.

For general communication/synchronization purposes Windows uses an
event based notification system.  See:
https://docs.microsoft.com/en-us/windows/win32/sync/using-synchronization
https://docs.microsoft.com/en-us/windows/win32/sync/using-event-objects

George




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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Error retrieving PostgreSQL DB information with Coturn
Следующее
От: Israel Brewster
Дата:
Сообщение: Re: Worse performance with higher work_mem?