Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
5bc512aa
Commit
5bc512aa
authored
Mar 29, 1999
by
Martin Mareš
Browse files
Clarify resource dumps and include them in the main debugging dump.
parent
3f2a21fd
Changes
4
Hide whitespace changes
Inline
Side-by-side
lib/mempool.c
View file @
5bc512aa
...
...
@@ -150,13 +150,17 @@ lp_dump(resource *r)
{
linpool
*
m
=
(
linpool
*
)
r
;
struct
lp_chunk
*
c
;
int
cnt
;
int
cnt
,
cntl
;
for
(
cnt
=
0
,
c
=
m
->
first
;
c
;
c
=
c
->
next
,
cnt
++
)
;
debug
(
"(chunk=%d threshold=%d count=%d total=%d)
\n
"
,
for
(
cntl
=
0
,
c
=
m
->
first_large
;
c
;
c
=
c
->
next
,
cntl
++
)
;
debug
(
"(chunk=%d threshold=%d count=%d+%d total=%d+%d)
\n
"
,
m
->
chunk_size
,
m
->
threshold
,
cnt
,
m
->
total
);
cntl
,
m
->
total
,
m
->
total_large
);
}
lib/resource.c
View file @
5bc512aa
...
...
@@ -37,6 +37,7 @@ pool *
rp_new
(
pool
*
p
,
char
*
name
)
{
pool
*
z
=
ralloc
(
p
,
&
pool_class
);
z
->
name
=
name
;
init_list
(
&
z
->
inside
);
return
z
;
}
...
...
@@ -62,7 +63,7 @@ pool_dump(resource *P)
pool
*
p
=
(
pool
*
)
P
;
resource
*
r
;
debug
(
"
%s
\n
"
,
p
->
name
);
debug
(
"%s
\n
"
,
p
->
name
);
indent
+=
3
;
WALK_LIST
(
r
,
p
->
inside
)
rdump
(
r
);
...
...
@@ -93,7 +94,7 @@ rdump(void *res)
debug
(
x
,
""
,
(
int
)
r
);
if
(
r
)
{
debug
(
"%
-6
s"
,
r
->
class
->
name
);
debug
(
"%s
"
,
r
->
class
->
name
);
r
->
class
->
dump
(
r
);
}
else
...
...
nest/proto.c
View file @
5bc512aa
...
...
@@ -95,9 +95,8 @@ proto_new(struct proto_config *c, unsigned size)
static
void
proto_init_instance
(
struct
proto
*
p
)
{
struct
proto_config
*
c
=
p
->
cf
;
p
->
pool
=
rp_new
(
proto_pool
,
c
->
name
);
/* Here we cannot use p->cf->name since it won't survive reconfiguration */
p
->
pool
=
rp_new
(
proto_pool
,
p
->
proto
->
name
);
p
->
attn
=
ev_new
(
p
->
pool
);
p
->
attn
->
data
=
p
;
}
...
...
sysdep/unix/main.c
View file @
5bc512aa
...
...
@@ -38,6 +38,7 @@ async_dump(void)
{
debug
(
"INTERNAL STATE DUMP
\n\n
"
);
rdump
(
&
root_pool
);
sk_dump_all
();
tm_dump_all
();
if_dump_all
();
...
...
Write
Preview
Supports
Markdown
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