1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/ctdb/server/ctdb_uptime.c
Rusty Russell f93440c4b7 event: Update events to latest Samba version 0.9.8
In Samba this is now called "tevent", and while we use the backwards
compatibility wrappers they don't offer EVENT_FD_AUTOCLOSE: that is now
a separate tevent_fd_set_auto_close() function.

This is based on Samba version 7f29f817fa.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>


(This used to be ctdb commit 85e5e760cc91eb3157d3a88996ce474491646726)
2010-08-18 09:16:31 +09:30

47 lines
1.4 KiB
C

/*
ctdb uptime code
Copyright (C) Ronnie Sahlberg 2008
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "lib/tevent/tevent.h"
#include "../include/ctdb_private.h"
#include "system/syslog.h"
#include "system/time.h"
#include "system/filesys.h"
/*
returns the ctdb uptime
*/
int32_t ctdb_control_uptime(struct ctdb_context *ctdb, TDB_DATA *outdata)
{
struct ctdb_uptime *uptime;
uptime = talloc_zero(outdata, struct ctdb_uptime);
CTDB_NO_MEMORY(ctdb, uptime);
gettimeofday(&uptime->current_time, NULL);
uptime->ctdbd_start_time = ctdb->ctdbd_start_time;
uptime->last_recovery_started = ctdb->last_recovery_started;
uptime->last_recovery_finished = ctdb->last_recovery_finished;
outdata->dsize = sizeof(struct ctdb_uptime);
outdata->dptr = (uint8_t *)uptime;
return 0;
}