File: trace.h

package info (click to toggle)
erofs-utils 1.9-3
  • links: PTS
  • area: main
  • in suites: sid
  • size: 1,484 kB
  • sloc: ansic: 28,409; makefile: 203; sh: 33
file content (20 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0+ OR Apache-2.0 */
/*
 * Copyright (C) 2020 Gao Xiang <hsiangkao@aol.com>
 */
#ifndef __EROFS_TRACE_H
#define __EROFS_TRACE_H

#ifdef __cplusplus
extern "C"
{
#endif

#define trace_erofs_map_blocks_flatmode_enter(inode, map, flags) ((void)0)
#define trace_erofs_map_blocks_flatmode_exit(inode, map, flags, ret) ((void)0)

#ifdef __cplusplus
}
#endif

#endif