blob: 52ebe3619f52235b16c84a066a2376260e679d46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* Copyright 2014 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Trace dump module */
#ifndef __CROS_EC_STACK_TRACE_H
#define __CROS_EC_STACK_TRACE_H
#ifdef EMU_BUILD
/*
* Register trace dump handler for emulator. Trace dump is printed to stderr
* when SIGUSR2 is received.
*/
void task_register_tracedump(void);
/* Dump current stack trace */
void task_dump_trace(void);
#else
static inline void task_register_tracedump(void) { }
static inline void task_dump_trace(void) { }
#endif
#endif /* __CROS_EC_STACK_TRACE_H */
|