summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/kgdb.h
blob: 86dee85a2f0dbc293894b761fb96f1d57b8e466b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Public domain. */

#ifndef _LINUX_KGDB_H
#define _LINUX_KGDB_H

#include <sys/types.h>
#include <sys/systm.h>

static inline int
in_dbg_master(void)
{
#ifdef DDB
	return (db_active);
#endif
	return (0);
}

#endif