blob: 2f733cdc8dbbe2946c923804fc3902a141e99a1f (
plain)
1
2
3
4
5
6
7
8
|
// SPDX-License-Identifier: GPL-2.0
#include <stdio.h>
#include "util/evsel.h"
void arch_evsel__set_sample_weight(struct evsel *evsel)
{
evsel__set_sample_bit(evsel, WEIGHT_STRUCT);
}
|