blob: aeacc1441497be6ffec37cce3a62e538e586fa33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*-------------------------------------------------------------------------
*
* aio_init.c
* AIO - Subsystem Initialization
*
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* src/backend/storage/aio/aio_init.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "storage/aio_subsys.h"
Size
AioShmemSize(void)
{
Size sz = 0;
return sz;
}
void
AioShmemInit(void)
{
}
void
pgaio_init_backend(void)
{
}
|