Re: [HACKERS] [PATCHES] fork/exec patch

From: "Magnus Hagander" <mha(at)sollentuna(dot)net>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>, "PostgreSQL-development" <pgsql-hackers(at)postgresql(dot)org>, "pgsql-hackers-win32" <pgsql-hackers-win32(at)postgresql(dot)org>
Subject: Re: [HACKERS] [PATCHES] fork/exec patch
Date: 2003-12-16 15:53:07
Message-ID: 6BCB9D8A16AC4241919521715F4D8BCE171571@algol.sollentuna.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-hackers-win32

> > If you need a response once it has actually run, then the
> main thread
> > needs to do signal polling now and then. This has the bad
> sideeffect
> > that the main thread will block completely until the signal is
> > delivered, which might be a while.
> >
> > I don't know what the semantics are for kill() on unix
> there? And if
> > it is sync, does postgresql actually need that property?
> >
>
> kill() should return success upon the signal being queued, as I
> understand it - i.e. no sync.

Ok. That makes things a lot easier. THen it's just the question of how
fast we need to react.

> All this kind of answers my original question, by pointing
> out the need
> to poll one way or another, which is why I suggested that signal
> emulation might be messy, and more complicated than the
> fork/exec case.

That definitly makes it more complicated. However, IIRC the thread will
enter an "alerable state" at least for network I/O, and probably for
disk I/O. Can't seem to find a reference to this, though. If you use
queued user APCs (using QueueUserAPC()), from a separate signal-handling
thread, this should dispatch the signal handlers *fairly* fast. The
question is if "fairly fast" is good enough, or if "really fast" is
needed?

In that case, you might have to work either with poll-really-often
(ickk), or using manual thread exceptions (raelly messy).

It shouldn't need to be *too* messy, if you can live with possible
slowdowns (assuming the thread does go alertable on blocking I/O).
Possibly add a WaitForSingleObject() at some place in a loop to force it
there in some cases.

Looking some more on the os-fix2.cpp file (I read the thing as OS2 fix,
and thus ignored it), it seems they fire all signal handlers on a thread
of their own. Is the backend threadsafe enough that that is safe? If so,
that would do away with the nede to use QueueUserAPC() to make the call
execute on the main thread.

//Magnus

Browse pgsql-hackers by date

  From Date Subject
Next Message Jan Wieck 2003-12-16 18:25:29 Re: Resurrecting pg_upgrade
Previous Message Peter Eisentraut 2003-12-16 15:32:37 Re: Double Backslash example patch

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Steve Tibbett 2003-12-16 15:59:58 Re: [HACKERS] [PATCHES] fork/exec patch
Previous Message Magnus Hagander 2003-12-16 15:43:46 Re: [HACKERS] [PATCHES] fork/exec patch