Move to kernel style SPDX license identifiers
[lttng-ust.git] / doc / examples / cmake-multiple-shared-libraries / aligner-lib.cpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2016 Sebastien Boisvert <sboisvert@gydle.com>
5 */
6
7 #define TRACEPOINT_DEFINE
8
9 #include "aligner-lib.h"
10 #include "tracepoint-provider.h"
11
12 void align_query(const std::string &query_name)
13 {
14 tracepoint(gydle_om, align_query, query_name.c_str());
15
16 /* Do the actual alignment */
17 /* ... */
18 }
This page took 0.028788 seconds and 4 git commands to generate.