diff options
author | Thomas Munro | 2023-11-24 21:39:32 +0000 |
---|---|---|
committer | Thomas Munro | 2023-11-24 21:43:39 +0000 |
commit | 6631363a5992a81d7bbcecaba68886564ad701ba (patch) | |
tree | f61a3186e4d74987f92425eddcce222fb338732f | |
parent | 262454be9a62d69d7523c0c88c7d07d5971a0fa0 (diff) |
Fix whitespace.
Use tabs instead of spaces for new paragraph, like existing paragraphs.
-rw-r--r-- | src/port/pqsignal.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/port/pqsignal.c b/src/port/pqsignal.c index 4ea2dea77e0..23e7f685c14 100644 --- a/src/port/pqsignal.c +++ b/src/port/pqsignal.c @@ -30,15 +30,15 @@ * this relies on pqsigaction() in src/backend/port/win32/signal.c, which * provides limited emulation of reliable signals. * - * Frontend programs can use this version of pqsignal() to forward to the - * native Windows signal() call if they wish, but beware that Windows signals - * behave quite differently. Only the 6 signals required by C are supported. - * SIGINT handlers run in another thread instead of interrupting an existing - * thread, and the others don't interrupt system calls either, so SA_RESTART - * is moot. All except SIGFPE have SA_RESETHAND semantics, meaning the - * handler is reset to SIG_DFL each time it runs. The set of things you are - * allowed to do in a handler is also much more restricted than on Unix, - * according to the documentation. + * Frontend programs can use this version of pqsignal() to forward to the + * native Windows signal() call if they wish, but beware that Windows signals + * behave quite differently. Only the 6 signals required by C are supported. + * SIGINT handlers run in another thread instead of interrupting an existing + * thread, and the others don't interrupt system calls either, so SA_RESTART + * is moot. All except SIGFPE have SA_RESETHAND semantics, meaning the + * handler is reset to SIG_DFL each time it runs. The set of things you are + * allowed to do in a handler is also much more restricted than on Unix, + * according to the documentation. * * ------------------------------------------------------------------------ */ |