mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-09 09:24:24 +01:00
It allows to support syscall variations between host OSes. Signed-off-by: Samuel Ortiz <s.ortiz@apple.com>
15 lines
166 B
Go
15 lines
166 B
Go
// Copyright (c) 2022 Apple Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package syscall
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Gettid() int {
|
|
return syscall.Gettid()
|
|
}
|