summaryrefslogblamecommitdiffstats
path: root/libmount/src/init.c
blob: d3aef7fa0d71aba1d75ad9a144e7bae4fb73ca1a (plain) (tree)
1
2
3
4
5
6
7
8
9
10






                                                        


                                 
                                           

   
                   


                   
                               
 

                  
                                                      
  

                                                           
  

                                                                 
   

                             
                                                                    
 
                                                    


                                                  







                                                                      
 
/*
 * Copyright (C) 2008 Karel Zak <kzak@redhat.com>
 *
 * This file may be redistributed under the terms of the
 * GNU Lesser General Public License.
 */

/**
 * SECTION: init
 * @title: Library initialization
 * @short_description: initialize debugging
 */

#include <stdarg.h>

#include "mountP.h"

UL_DEBUG_DEFINE_MASK(libmount);

/**
 * mnt_init_debug:
 * @mask: debug mask (0xffff to enable full debugging)
 *
 * If the @mask is not specified, then this function reads
 * the LIBMOUNT_DEBUG environment variable to get the mask.
 *
 * Already initialized debugging stuff cannot be changed. Calling
 * this function twice has no effect.
 */
void mnt_init_debug(int mask)
{
	__UL_INIT_DEBUG(libmount, MNT_DEBUG_, mask, LIBMOUNT_DEBUG);

	if (libmount_debug_mask != MNT_DEBUG_INIT) {
		const char *ver = NULL;
		const char **features = NULL, **p;

		mnt_get_library_version(&ver);
		mnt_get_library_features(&features);

		DBG(INIT, mnt_debug("library version: %s", ver));
		p = features;
		while (p && *p)
			DBG(INIT, mnt_debug("    feature: %s", *p++));
	}
}