Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
1f5299bc
Commit
1f5299bc
authored
Jan 18, 2005
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace the use of "0" with "NULL" where appropriate in dllist.c, for
good style and to satisfy sparse. From Alvaro Herrera.
parent
b4e7e9ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
31 deletions
+31
-31
src/backend/lib/dllist.c
src/backend/lib/dllist.c
+31
-31
No files found.
src/backend/lib/dllist.c
View file @
1f5299bc
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/lib/dllist.c,v 1.3
0 2004/12/31 21:59:48 pgsql
Exp $
* $PostgreSQL: pgsql/src/backend/lib/dllist.c,v 1.3
1 2005/01/18 22:59:32 neilc
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -43,8 +43,8 @@ DLNewList(void)
errmsg
(
"out of memory"
)));
#endif
}
l
->
dll_head
=
0
;
l
->
dll_tail
=
0
;
l
->
dll_head
=
NULL
;
l
->
dll_tail
=
NULL
;
return
l
;
}
...
...
@@ -52,8 +52,8 @@ DLNewList(void)
void
DLInitList
(
Dllist
*
list
)
{
list
->
dll_head
=
0
;
list
->
dll_tail
=
0
;
list
->
dll_head
=
NULL
;
list
->
dll_tail
=
NULL
;
}
/*
...
...
@@ -65,7 +65,7 @@ DLFreeList(Dllist *list)
{
Dlelem
*
curr
;
while
((
curr
=
DLRemHead
(
list
))
!=
0
)
while
((
curr
=
DLRemHead
(
list
))
!=
NULL
)
free
(
curr
);
free
(
list
);
...
...
@@ -88,20 +88,20 @@ DLNewElem(void *val)
errmsg
(
"out of memory"
)));
#endif
}
e
->
dle_next
=
0
;
e
->
dle_prev
=
0
;
e
->
dle_next
=
NULL
;
e
->
dle_prev
=
NULL
;
e
->
dle_val
=
val
;
e
->
dle_list
=
0
;
e
->
dle_list
=
NULL
;
return
e
;
}
void
DLInitElem
(
Dlelem
*
e
,
void
*
val
)
{
e
->
dle_next
=
0
;
e
->
dle_prev
=
0
;
e
->
dle_next
=
NULL
;
e
->
dle_prev
=
NULL
;
e
->
dle_val
=
val
;
e
->
dle_list
=
0
;
e
->
dle_list
=
NULL
;
}
void
...
...
@@ -132,9 +132,9 @@ DLRemove(Dlelem *e)
l
->
dll_tail
=
e
->
dle_prev
;
}
e
->
dle_next
=
0
;
e
->
dle_prev
=
0
;
e
->
dle_list
=
0
;
e
->
dle_next
=
NULL
;
e
->
dle_prev
=
NULL
;
e
->
dle_list
=
NULL
;
}
void
...
...
@@ -145,10 +145,10 @@ DLAddHead(Dllist *l, Dlelem *e)
if
(
l
->
dll_head
)
l
->
dll_head
->
dle_prev
=
e
;
e
->
dle_next
=
l
->
dll_head
;
e
->
dle_prev
=
0
;
e
->
dle_prev
=
NULL
;
l
->
dll_head
=
e
;
if
(
l
->
dll_tail
==
0
)
/* if this is first element added */
if
(
l
->
dll_tail
==
NULL
)
/* if this is first element added */
l
->
dll_tail
=
e
;
}
...
...
@@ -160,10 +160,10 @@ DLAddTail(Dllist *l, Dlelem *e)
if
(
l
->
dll_tail
)
l
->
dll_tail
->
dle_next
=
e
;
e
->
dle_prev
=
l
->
dll_tail
;
e
->
dle_next
=
0
;
e
->
dle_next
=
NULL
;
l
->
dll_tail
=
e
;
if
(
l
->
dll_head
==
0
)
/* if this is first element added */
if
(
l
->
dll_head
==
NULL
)
/* if this is first element added */
l
->
dll_head
=
e
;
}
...
...
@@ -173,19 +173,19 @@ DLRemHead(Dllist *l)
/* remove and return the head */
Dlelem
*
result
=
l
->
dll_head
;
if
(
result
==
0
)
if
(
result
==
NULL
)
return
result
;
if
(
result
->
dle_next
)
result
->
dle_next
->
dle_prev
=
0
;
result
->
dle_next
->
dle_prev
=
NULL
;
l
->
dll_head
=
result
->
dle_next
;
if
(
result
==
l
->
dll_tail
)
/* if the head is also the tail */
l
->
dll_tail
=
0
;
l
->
dll_tail
=
NULL
;
result
->
dle_next
=
0
;
result
->
dle_list
=
0
;
result
->
dle_next
=
NULL
;
result
->
dle_list
=
NULL
;
return
result
;
}
...
...
@@ -196,19 +196,19 @@ DLRemTail(Dllist *l)
/* remove and return the tail */
Dlelem
*
result
=
l
->
dll_tail
;
if
(
result
==
0
)
if
(
result
==
NULL
)
return
result
;
if
(
result
->
dle_prev
)
result
->
dle_prev
->
dle_next
=
0
;
result
->
dle_prev
->
dle_next
=
NULL
;
l
->
dll_tail
=
result
->
dle_prev
;
if
(
result
==
l
->
dll_head
)
/* if the tail is also the head */
l
->
dll_head
=
0
;
l
->
dll_head
=
NULL
;
result
->
dle_prev
=
0
;
result
->
dle_list
=
0
;
result
->
dle_prev
=
NULL
;
result
->
dle_list
=
NULL
;
return
result
;
}
...
...
@@ -222,7 +222,7 @@ DLMoveToFront(Dlelem *e)
if
(
l
->
dll_head
==
e
)
return
;
/* Fast path if already at front */
Assert
(
e
->
dle_prev
!=
0
);
/* since it's not the head */
Assert
(
e
->
dle_prev
!=
NULL
);
/* since it's not the head */
e
->
dle_prev
->
dle_next
=
e
->
dle_next
;
if
(
e
->
dle_next
)
...
...
@@ -236,7 +236,7 @@ DLMoveToFront(Dlelem *e)
l
->
dll_head
->
dle_prev
=
e
;
e
->
dle_next
=
l
->
dll_head
;
e
->
dle_prev
=
0
;
e
->
dle_prev
=
NULL
;
l
->
dll_head
=
e
;
/* We need not check dll_tail, since there must have been > 1 entry */
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment