File tree 5 files changed +0
-215
lines changed 5 files changed +0
-215
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ OBJS = \
21
21
shm_mq.o \
22
22
shm_toc.o \
23
23
shmem.o \
24
- shmqueue.o \
25
24
signalfuncs.o \
26
25
sinval.o \
27
26
sinvaladt.o \
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ backend_sources += files(
13
13
' shm_mq.c' ,
14
14
' shm_toc.c' ,
15
15
' shmem.c' ,
16
- ' shmqueue.c' ,
17
16
' signalfuncs.c' ,
18
17
' sinval.c' ,
19
18
' sinvaladt.c' ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 24
24
#include "utils/hsearch.h"
25
25
26
26
27
- /* shmqueue.c */
28
- typedef struct SHM_QUEUE
29
- {
30
- struct SHM_QUEUE * prev ;
31
- struct SHM_QUEUE * next ;
32
- } SHM_QUEUE ;
33
-
34
27
/* shmem.c */
35
28
extern void InitShmemAccess (void * seghdr );
36
29
extern void InitShmemAllocation (void );
@@ -63,19 +56,4 @@ typedef struct
63
56
Size allocated_size ; /* # bytes actually allocated */
64
57
} ShmemIndexEnt ;
65
58
66
- /*
67
- * prototypes for functions in shmqueue.c
68
- */
69
- extern void SHMQueueInit (SHM_QUEUE * queue );
70
- extern void SHMQueueElemInit (SHM_QUEUE * queue );
71
- extern void SHMQueueDelete (SHM_QUEUE * queue );
72
- extern void SHMQueueInsertBefore (SHM_QUEUE * queue , SHM_QUEUE * elem );
73
- extern void SHMQueueInsertAfter (SHM_QUEUE * queue , SHM_QUEUE * elem );
74
- extern Pointer SHMQueueNext (const SHM_QUEUE * queue , const SHM_QUEUE * curElem ,
75
- Size linkOffset );
76
- extern Pointer SHMQueuePrev (const SHM_QUEUE * queue , const SHM_QUEUE * curElem ,
77
- Size linkOffset );
78
- extern bool SHMQueueEmpty (const SHM_QUEUE * queue );
79
- extern bool SHMQueueIsDetached (const SHM_QUEUE * queue );
80
-
81
59
#endif /* SHMEM_H */
Original file line number Diff line number Diff line change @@ -2377,7 +2377,6 @@ SERIALIZABLEXIDTAG
2377
2377
SERVICE_STATUS
2378
2378
SERVICE_STATUS_HANDLE
2379
2379
SERVICE_TABLE_ENTRY
2380
- SHM_QUEUE
2381
2380
SID_AND_ATTRIBUTES
2382
2381
SID_IDENTIFIER_AUTHORITY
2383
2382
SID_NAME_USE
You can’t perform that action at this time.
0 commit comments