Snitch Runtime
Loading...
Searching...
No Matches
cls.h
1// Copyright 2023 ETH Zurich and University of Bologna.
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5#pragma once
6
7extern __thread cls_t* _cls_ptr;
8
9inline cls_t* cls() { return _cls_ptr; }
Definition cls_decls.h:11