Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
trackrdrd
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
trackrdrd
Commits
d0d80c39
Commit
d0d80c39
authored
Feb 18, 2013
by
Geoff Simmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trackrdrd: minor cleanup
parent
c9c717d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
13 deletions
+7
-13
child.c
trackrdrd/src/child.c
+7
-13
No files found.
trackrdrd/src/child.c
View file @
d0d80c39
...
...
@@ -475,7 +475,7 @@ submit(hashentry *he)
hash_free
(
he
);
}
/* like Submit, but for rec
ro
ds in HASH_OPEN */
/* like Submit, but for rec
or
ds in HASH_OPEN */
static
void
hash_evacuate
(
hashentry
*
he
)
{
...
...
@@ -577,21 +577,15 @@ static hashentry
return
(
he
);
}
static
void
hash_dump1
(
hashentry
*
entry
,
int
i
)
{
if
(
entry
->
state
==
HASH_EMPTY
)
return
;
LOG_Log
(
LOG_INFO
,
"Hash entry %d: XID=%d"
,
i
,
entry
->
xid
);
DATA_Dump1
(
entry
->
de
,
0
);
}
static
void
hash_dump
(
void
)
{
for
(
int
i
=
0
;
i
<
htbl
.
len
;
i
++
)
hash_dump1
(
&
htbl
.
entry
[
i
],
i
);
for
(
int
i
=
0
;
i
<
htbl
.
len
;
i
++
)
{
if
(
htbl
.
entry
[
i
].
state
==
HASH_EMPTY
)
continue
;
LOG_Log
(
LOG_INFO
,
"Hash entry %d: XID=%d"
,
i
,
htbl
.
entry
[
i
].
xid
);
DATA_Dump1
(
htbl
.
entry
[
i
].
de
,
0
);
}
}
/*--------------------------------------------------------------------*/
...
...
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