1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00
Files
postgres/src/backend/storage/ipc/meson.build
Heikki Linnakangas 393e0d2314 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 <andres@anarazel.de>
Discussion: https://www.postgresql.org/message-id/8a507fb6-df28-49d3-81a5-ede180d7f0fb@iki.fi
2025-03-06 01:26:16 +02:00

24 lines
369 B
Meson

# Copyright (c) 2022-2025, PostgreSQL Global Development Group
backend_sources += files(
'barrier.c',
'dsm.c',
'dsm_impl.c',
'dsm_registry.c',
'ipc.c',
'ipci.c',
'latch.c',
'pmsignal.c',
'procarray.c',
'procsignal.c',
'shm_mq.c',
'shm_toc.c',
'shmem.c',
'signalfuncs.c',
'sinval.c',
'sinvaladt.c',
'standby.c',
'waiteventset.c',
)