1// Copyright 2017 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5//go:build !linux 6// +build !linux 7 8package main 9 10func gettid() int { 11 return 0 12} 13 14func tidExists(tid int) (exists, supported bool, err error) { 15 return false, false, nil 16} 17 18func getcwd() (string, error) { 19 return "", nil 20} 21 22func unshareFs() error { 23 return nil 24} 25 26func chdir(path string) error { 27 return nil 28} 29