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
emulab
emulab-devel
Commits
96bd33a4
Commit
96bd33a4
authored
Sep 12, 2002
by
Mike Hibler
Browse files
log a message when the daemon quits due to a signal
parent
acbd1169
Changes
1
Hide whitespace changes
Inline
Side-by-side
event/sched/event-sched.c
View file @
96bd33a4
...
...
@@ -197,7 +197,8 @@ main(int argc, char **argv)
fatal
(
"could not unregister with event system"
);
}
return
0
;
info
(
"Scheduler for %s/%s exiting
\n
"
,
pid
,
eid
);
return
0
;
}
/* Enqueue event notifications as they arrive. */
...
...
@@ -525,6 +526,8 @@ cleanup(void)
static
void
quit
(
int
sig
)
{
info
(
"Got sig %d, exiting
\n
"
,
sig
);
/* cleanup() will be called from atexit() */
exit
(
0
);
}
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