4 Copyright (C) Ronnie Sahlberg 2008
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "../include/ctdb_private.h"
22 #include "system/syslog.h"
23 #include "system/time.h"
24 #include "system/filesys.h"
27 returns the ctdb uptime
29 int32_t ctdb_control_uptime(struct ctdb_context
*ctdb
, TDB_DATA
*outdata
)
31 struct ctdb_uptime
*uptime
;
33 uptime
= talloc_zero(outdata
, struct ctdb_uptime
);
34 CTDB_NO_MEMORY(ctdb
, uptime
);
36 gettimeofday(&uptime
->current_time
, NULL
);
37 uptime
->ctdbd_start_time
= ctdb
->ctdbd_start_time
;
38 uptime
->last_recovery_started
= ctdb
->last_recovery_started
;
39 uptime
->last_recovery_finished
= ctdb
->last_recovery_finished
;
41 outdata
->dsize
= sizeof(struct ctdb_uptime
);
42 outdata
->dptr
= (uint8_t *)uptime
;