blob: af6034eea2c7fa50b9f0ae868705a65854ae4c8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2011 New Dream Network
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_COMMON_GLOBAL_INIT_H
#define CEPH_COMMON_GLOBAL_INIT_H
#include <deque>
#include <stdint.h>
#include <string>
#include <vector>
#include "common/code_environment.h"
#include "common/common_init.h"
class CephContext;
/*
* global_init is the first initialization function that
* daemons and utility programs need to call. It takes care of a lot of
* initialization, including setting up g_ceph_context.
*/
void global_init(std::vector < const char* >& args,
uint32_t module_type, code_environment_t code_env, int flags);
/*
* global_init_daemonize handles daemonizing a process.
*
* If this is called, it *must* be called before common_init_finish
*/
void global_init_daemonize(CephContext *cct, int flags);
/*
* global_init_chdir changes the process directory.
*
* If this is called, it *must* be called before common_init_finish
*/
void global_init_chdir(const CephContext *cct);
/*
* Explicitly shut down stderr. Usually, you don't need to do
* this, because global_init_daemonize will do it for you. However, in some
* rare cases you need to call this explicitly.
*
* If this is called, it *must* be called before common_init_finish
*/
int global_init_shutdown_stderr(CephContext *cct);
#endif
|