1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
<!--
SPDX-FileCopyrightText: 2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
SPDX-License-Identifier: CC-BY-4.0
-->
# LTTng-UST Coding Style
The coding style used for this project follows the Linux kernel
guide lines. Please refer to:
- Linux kernel [Documentation/process/coding-style][1] document for details,
- Linux kernel [scripts/checkpatch.pl][2] for a script which verifies the patch
coding style.
Mathieu Desnoyers, May 30, 2012
[1]: https://docs.kernel.org/process/coding-style.html
[2]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/checkpatch.pl
|