diff options
| author | Heikki Linnakangas | 2025-03-05 23:26:16 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2025-03-05 23:26:16 +0000 |
| commit | 393e0d2314050576c9c039853fdabe7f685a4f47 (patch) | |
| tree | 8b31883e6b9f197b1767476af16b432ac2128812 /src/backend/postmaster | |
| parent | 84e5b2f07a5e8ba983ff0f6e71b063b27f45f346 (diff) | |
Split WaitEventSet functions to separate source file
latch.c now only contains the Latch related functions, which build on
the WaitEventSet abstraction. Most of the platform-dependent stuff is
now in waiteventset.c.
Reviewed-by: Andres Freund <[email protected]>
Discussion: https://www.postgresql.org/message-id/[email protected]
Diffstat (limited to 'src/backend/postmaster')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 5dd3b6a4fd4..d2a7a7add6f 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -548,7 +548,7 @@ PostmasterMain(int argc, char *argv[]) pqsignal(SIGCHLD, handle_pm_child_exit_signal); /* This may configure SIGURG, depending on platform. */ - InitializeLatchSupport(); + InitializeWaitEventSupport(); InitProcessLocalLatch(); /* |
