Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
ffcfbac3
Commit
ffcfbac3
authored
Mar 14, 2002
by
Niels Möller
Browse files
(lsh_oop_register_callout, lsh_oop_cancel_callout):
Added trace call. Rev: src/io.c:1.159
parent
2cfc7442
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/io.c
View file @
ffcfbac3
...
...
@@ -279,6 +279,9 @@ static void
lsh_oop_register_callout
(
struct
lsh_callout
*
callout
)
{
assert
(
source
);
trace
(
"lsh_oop_register_callout: action: %t
\n
"
,
callout
->
action
);
if
(
callout
->
super
.
alive
)
source
->
on_time
(
source
,
callout
->
when
,
lsh_oop_time_callback
,
callout
);
}
...
...
@@ -287,6 +290,8 @@ static void
lsh_oop_cancel_callout
(
struct
lsh_callout
*
callout
)
{
assert
(
source
);
trace
(
"lsh_oop_cancel_callout: action: %t
\n
"
,
callout
->
action
);
if
(
callout
->
super
.
alive
)
source
->
cancel_time
(
source
,
callout
->
when
,
lsh_oop_time_callback
,
callout
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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