Skip to content

Commit 107b2d0

Browse files
author
Mikhail Litsarev
committed
[PGPRO-7424] Remove _PG_fini
tags: ptrack
1 parent 3e7c702 commit 107b2d0

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

ptrack.c

-15
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ static mdextend_hook_type prev_mdextend_hook = NULL;
6666
static ProcessSyncRequests_hook_type prev_ProcessSyncRequests_hook = NULL;
6767

6868
void _PG_init(void);
69-
void _PG_fini(void);
7069

7170
static void ptrack_shmem_startup_hook(void);
7271
static void ptrack_copydir_hook(const char *path);
@@ -155,20 +154,6 @@ ptrack_shmem_request(void)
155154
}
156155
#endif
157156

158-
/*
159-
* Module unload callback
160-
*/
161-
void
162-
_PG_fini(void)
163-
{
164-
/* Uninstall hooks */
165-
shmem_startup_hook = prev_shmem_startup_hook;
166-
copydir_hook = prev_copydir_hook;
167-
mdwrite_hook = prev_mdwrite_hook;
168-
mdextend_hook = prev_mdextend_hook;
169-
ProcessSyncRequests_hook = prev_ProcessSyncRequests_hook;
170-
}
171-
172157
/*
173158
* ptrack_shmem_startup hook: allocate or attach to shared memory.
174159
*/

0 commit comments

Comments
 (0)