19 lines
467 B
C
19 lines
467 B
C
|
/*
|
||
|
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms of the GNU General Public License version 2
|
||
|
* as published by the Free Software Foundation.
|
||
|
*/
|
||
|
|
||
|
#ifndef __DEFEX_DEBUG_H
|
||
|
#define __DEFEX_DEBUG_H
|
||
|
|
||
|
#define DBG_SETUID 0
|
||
|
#define DBG_SET_FSUID 1
|
||
|
#define DBG_SETGID 2
|
||
|
|
||
|
int defex_create_debug(struct kset *defex_kset);
|
||
|
|
||
|
#endif /* __DEFEX_DEBUG_H */
|