1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

Add timestamp when running with --maximum-runtime

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Sat Nov 27 11:51:12 CET 2010 on sn-devel-104
This commit is contained in:
Matthieu Patou
2010-11-27 13:00:57 +03:00
committed by Matthieu Patou
parent d237698850
commit 6a781b5286

View File

@ -178,7 +178,13 @@ _NORETURN_ static void max_runtime_handler(struct tevent_context *ev,
struct timeval t, void *private_data)
{
const char *binary_name = (const char *)private_data;
DEBUG(0,("%s: maximum runtime exceeded - terminating\n", binary_name));
struct timeval tv;
struct timezone tz;
if (gettimeofday(&tv, &tz) == 0) {
DEBUG(0,("%s: maximum runtime exceeded - terminating, current ts: %d\n", binary_name, (int)tv.tv_sec));
} else {
DEBUG(0,("%s: maximum runtime exceeded - terminating\n", binary_name));
}
exit(0);
}
@ -438,6 +444,14 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[
discard_const(binary_name));
if (max_runtime) {
struct timeval tv;
struct timezone tz;
if (gettimeofday(&tv, &tz) == 0) {
DEBUG(0,("Called with maxruntime %d - current ts %d\n", max_runtime, (int)tv.tv_sec));
} else {
DEBUG(0,("Called with maxruntime %d\n", max_runtime));
}
tevent_add_timer(event_ctx, event_ctx,
timeval_current_ofs(max_runtime, 0),
max_runtime_handler,