~ubuntu-branches/ubuntu/trusty/ceph/trusty-updates

« back to all changes in this revision

Viewing changes to src/global/global_init.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-04-09 11:14:03 UTC
  • mfrom: (1.1.33)
  • Revision ID: package-import@ubuntu.com-20140409111403-jlql95pa8kg1nk9a
Tags: 0.79-0ubuntu1
* New upstream release (LP: #1278466):
  - d/p/modules.patch: Refreshed.
  - d/ceph.install: Install all jerasure modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 * daemons and utility programs need to call. It takes care of a lot of
31
31
 * initialization, including setting up g_ceph_context.
32
32
 */
33
 
void global_init(std::vector < const char * > *alt_def_args, std::vector < const char* >& args,
34
 
               uint32_t module_type, code_environment_t code_env, int flags);
 
33
void global_init(std::vector < const char * > *alt_def_args,
 
34
                 std::vector < const char* >& args,
 
35
                 uint32_t module_type, code_environment_t code_env, int flags);
 
36
 
 
37
// just the first half; enough to get config parsed but doesn't start up the
 
38
// cct or log.
 
39
void global_pre_init(std::vector < const char * > *alt_def_args,
 
40
                     std::vector < const char* >& args,
 
41
                     uint32_t module_type, code_environment_t code_env,
 
42
                     int flags);
35
43
 
36
44
/*
37
45
 * perform all of the steps that global_init_daemonize performs just prior