blob: e9ba4c263593315854b0eb16b945acb9d5c1b34a [file] [log] [blame]
/*
* Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <autoconf.h>
#include <sel4debug/gen_config.h>
#include <sel4debug/debug.h>
#include <sel4/sel4.h>
#include <stdio.h>
void debug_cap_identify(seL4_CPtr cap)
{
#ifdef CONFIG_DEBUG_BUILD
int type = seL4_DebugCapIdentify(cap);
printf("Cap type number is %d\n", type);
#endif /* CONFIG_DEBUG_BUILD */
}