mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 19:49:56 -04:00
adafc22688
Signed-off-by: staralien <chengxin@servicecenter-harmonytsc.com>
17 lines
393 B
C
17 lines
393 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2026 Huawei Device Co., Ltd.
|
|
*/
|
|
|
|
#ifndef _DEC_TOKEN_SETPROC_H
|
|
#define _DEC_TOKEN_SETPROC_H
|
|
|
|
#include <stdint.h>
|
|
#include "setproc_common.h"
|
|
|
|
uint64_t GetSelfTokenID(void);
|
|
int SetSelfTokenID(uint64_t tokenID);
|
|
uint64_t GetFirstCallerTokenID(void);
|
|
int SetFirstCallerTokenID(uint64_t tokenID);
|
|
|
|
#endif /* _DEC_TOKEN_SETPROC_H */ |